aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordbroqua <dbroqua@mousur.org>2016-12-22 08:26:55 +0100
committerdbroqua <dbroqua@mousur.org>2016-12-22 08:26:55 +0100
commit46ff5f3b9007e9fd4714ed7e34c7a8b77cf052ae (patch)
treeb8d0db2792dbf291e6ed33788abafa38aac34cb8
parent5ee136a36f6fd8cb697f97baf0d72192615b857d (diff)
downloadqmk_firmware-46ff5f3b9007e9fd4714ed7e34c7a8b77cf052ae.tar.gz
qmk_firmware-46ff5f3b9007e9fd4714ed7e34c7a8b77cf052ae.zip
- Fixed bad typo in dbroqua layout for gh60
- Removed unused function in dbroqua layout for gh60
-rw-r--r--keyboards/gh60/keymaps/dbroqua/keymap.c21
1 files changed, 2 insertions, 19 deletions
diff --git a/keyboards/gh60/keymaps/dbroqua/keymap.c b/keyboards/gh60/keymaps/dbroqua/keymap.c
index 0c2e980d2..3c16baa22 100644
--- a/keyboards/gh60/keymaps/dbroqua/keymap.c
+++ b/keyboards/gh60/keymaps/dbroqua/keymap.c
@@ -57,7 +57,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
57 ______, ______, ______, KC_FN1, KC_MSTP, ______, ______, ______ \ 57 ______, ______, ______, KC_FN1, KC_MSTP, ______, ______, ______ \
58 ), 58 ),
59 59
60/* FN Layer 60/* WASD Layer
61 * ,-----------------------------------------------------------------------------------------. 61 * ,-----------------------------------------------------------------------------------------.
62 * | | | | | | | | | | | | | | | | 62 * | | | | | | | | | | | | | | | |
63 * |-----------------------------------------------------------------------------------------+ 63 * |-----------------------------------------------------------------------------------------+
@@ -70,7 +70,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
70 * | | | | | | 70 * | | | | | |
71 * `-----------------------------------------------------------------' 71 * `-----------------------------------------------------------------'
72 */ 72 */
73 [_WASD] = KEYMAP_HHKB( /* Layer 1 */ 73 [_WASD] = KEYMAP_HHKB( /* Layer 2 */
74 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \ 74 ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
75 ______, ______, KC_UP, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \ 75 ______, ______, KC_UP, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
76 ______, KC_LEFT, KC_DOWN, KC_RGHT, ______, ______, ______, ______, ______, ______, ______, ______, ______, \ 76 ______, KC_LEFT, KC_DOWN, KC_RGHT, ______, ______, ______, ______, ______, ______, ______, ______, ______, \
@@ -90,23 +90,6 @@ const uint16_t PROGMEM fn_actions[] = {
90 [1] = ACTION_LAYER_TOGGLE(2), // toggle wasd overlay 90 [1] = ACTION_LAYER_TOGGLE(2), // toggle wasd overlay
91}; 91};
92 92
93//bool process_record_user(uint16_t keycode, keyrecord_t *record) {
94// switch (keycode) {
95// case ESC_LED:
96// if (record->event.pressed) {
97// if (esc_led_on == true ){
98// gh60_esc_led_off();
99// }else{
100// gh60_esc_led_on();
101// }
102// esc_led_on = !esc_led_on;
103// }
104// return false;
105// break;
106// }
107// return true;
108//}
109
110void matrix_scan_user(void) { 93void matrix_scan_user(void) {
111 uint32_t layer = layer_state; 94 uint32_t layer = layer_state;
112 95