aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/rgbkb/zygomorph/keymaps
diff options
context:
space:
mode:
authorXScorpion2 <rcalt2vt@gmail.com>2019-06-01 16:39:31 -0500
committerDrashna Jaelre <drashna@live.com>2019-06-01 14:39:31 -0700
commit4f788c2ae90583f64e0cec6545a3da75a5aff0f8 (patch)
treefa7f8583fca9839d2c5f3f8b6c5822569c649929 /keyboards/rgbkb/zygomorph/keymaps
parent02b3fadbac6c68940e1bf141397d5d7cb87a6928 (diff)
downloadfirmware-4f788c2ae90583f64e0cec6545a3da75a5aff0f8.tar.gz
firmware-4f788c2ae90583f64e0cec6545a3da75a5aff0f8.tar.bz2
firmware-4f788c2ae90583f64e0cec6545a3da75a5aff0f8.zip
[Keymap] Xulkal user changes (#6044)
* Xulkal user changes Xulkal user changes * Reduce code duplication * Massive user code refactor
Diffstat (limited to 'keyboards/rgbkb/zygomorph/keymaps')
-rw-r--r--keyboards/rgbkb/zygomorph/keymaps/xulkal/config.h25
-rw-r--r--keyboards/rgbkb/zygomorph/keymaps/xulkal/keymap.c18
2 files changed, 0 insertions, 43 deletions
diff --git a/keyboards/rgbkb/zygomorph/keymaps/xulkal/config.h b/keyboards/rgbkb/zygomorph/keymaps/xulkal/config.h
deleted file mode 100644
index 452cdda82..000000000
--- a/keyboards/rgbkb/zygomorph/keymaps/xulkal/config.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
-This is the c configuration file for the keymap
-
-Copyright 2012 Jun Wako <wakojun@gmail.com>
-Copyright 2015 Jack Humbert
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#pragma once
-
-
-// place overrides here
-
diff --git a/keyboards/rgbkb/zygomorph/keymaps/xulkal/keymap.c b/keyboards/rgbkb/zygomorph/keymaps/xulkal/keymap.c
index f886cb454..70155e1cd 100644
--- a/keyboards/rgbkb/zygomorph/keymaps/xulkal/keymap.c
+++ b/keyboards/rgbkb/zygomorph/keymaps/xulkal/keymap.c
@@ -67,21 +67,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
),
#endif
};
-
-#ifdef ENCODER_ENABLE
-void encoder_update_user(uint8_t index, bool clockwise) {
- if (index == 0) { /* First encoder */
- if (clockwise) {
- tap_code(KC_PGDN);
- } else {
- tap_code(KC_PGUP);
- }
- } else if (index == 1) { /* Second encoder from slave */
- if (clockwise) {
- tap_code(KC_UP);
- } else {
- tap_code(KC_DOWN);
- }
- }
-}
-#endif