diff options
-rw-r--r-- | keyboards/dz60/keymaps/LEdiodes/keymap.c | 15 | ||||
-rw-r--r-- | keyboards/dz60/keymaps/LEdiodes/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/knops/mini/keymaps/knops/keymap.c | 3 | ||||
-rw-r--r-- | keyboards/planck/keymaps/piemod/rules.mk | 10 | ||||
-rw-r--r-- | keyboards/s60_x/keymaps/amnesia0287/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/tv44/keymaps/budi/config.h | 3 | ||||
-rw-r--r-- | layouts/community/ergodox/berfarah/keymap.c | 6 | ||||
-rw-r--r-- | layouts/community/ergodox/berfarah/rules.mk | 3 | ||||
-rw-r--r-- | quantum/process_keycode/process_combo.c | 2 | ||||
-rw-r--r-- | users/dudeofawesome/dudeofawesome.h | 3 |
10 files changed, 37 insertions, 13 deletions
diff --git a/keyboards/dz60/keymaps/LEdiodes/keymap.c b/keyboards/dz60/keymaps/LEdiodes/keymap.c index dbf2a75f5..4405b20d3 100644 --- a/keyboards/dz60/keymaps/LEdiodes/keymap.c +++ b/keyboards/dz60/keymaps/LEdiodes/keymap.c | |||
@@ -9,6 +9,12 @@ | |||
9 | 9 | ||
10 | #define _______ KC_TRNS | 10 | #define _______ KC_TRNS |
11 | 11 | ||
12 | enum { | ||
13 | TD_SPC_ENT = 0, | ||
14 | TD_KC_LSFT_CAPS, | ||
15 | TD_KC_RSFT_CAPS | ||
16 | }; | ||
17 | |||
12 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
13 | 19 | ||
14 | /* | 20 | /* |
@@ -49,7 +55,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
49 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, \ | 55 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, \ |
50 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \ | 56 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \ |
51 | KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, TO(_L1), \ | 57 | KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, TO(_L1), \ |
52 | KC_LCTL, KC_LGUI, KC_LALT, TD(LT(_L3,KC_SPACE)),BL_TOGG,TD(TD_SPC_ENT), KC_RGUI, TO(_L2), KC_LEFT, KC_DOWN, KC_RIGHT), | 58 | KC_LCTL, KC_LGUI, KC_LALT, LT(_L3,KC_SPACE),BL_TOGG,TD(TD_SPC_ENT), KC_RGUI, TO(_L2), KC_LEFT, KC_DOWN, KC_RIGHT), |
53 | 59 | ||
54 | /* Keymap _L1: (Layer 1) This is function layer 1 | 60 | /* Keymap _L1: (Layer 1) This is function layer 1 |
55 | * This layer is activated while the Fn key is being held down. | 61 | * This layer is activated while the Fn key is being held down. |
@@ -121,13 +127,6 @@ void matrix_scan_user(void) { | |||
121 | // Empty | 127 | // Empty |
122 | }; | 128 | }; |
123 | 129 | ||
124 | //Tap Dance Declarations | ||
125 | enum { | ||
126 | TD_SPC_ENT = 0, | ||
127 | TD_KC_LSFT_CAPS = 0, | ||
128 | TD_KC_RSFT_CAPS = 0 | ||
129 | }; | ||
130 | |||
131 | //Tap Dance Definitions | 130 | //Tap Dance Definitions |
132 | qk_tap_dance_action_t tap_dance_actions[] = { | 131 | qk_tap_dance_action_t tap_dance_actions[] = { |
133 | 132 | ||
diff --git a/keyboards/dz60/keymaps/LEdiodes/rules.mk b/keyboards/dz60/keymaps/LEdiodes/rules.mk index f54d9500f..08adc989d 100644 --- a/keyboards/dz60/keymaps/LEdiodes/rules.mk +++ b/keyboards/dz60/keymaps/LEdiodes/rules.mk | |||
@@ -54,4 +54,5 @@ NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https:/ | |||
54 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 54 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
55 | AUDIO_ENABLE = no | 55 | AUDIO_ENABLE = no |
56 | RGBLIGHT_ENABLE = yes | 56 | RGBLIGHT_ENABLE = yes |
57 | AUTO_SHIFT_ENABLE = yes # If the time depressed is greater than or equal to the AUTO_SHIFT_TIMEOUT, then a shifted version of the key is emitted. If the time is less than the AUTO_SHIFT_TIMEOUT time, then the normal state is emitted \ No newline at end of file | 57 | AUTO_SHIFT_ENABLE = yes # If the time depressed is greater than or equal to the AUTO_SHIFT_TIMEOUT, then a shifted version of the key is emitted. If the time is less than the AUTO_SHIFT_TIMEOUT time, then the normal state is emitted |
58 | TAP_DANCE_ENABLE = yes \ No newline at end of file | ||
diff --git a/keyboards/knops/mini/keymaps/knops/keymap.c b/keyboards/knops/mini/keymaps/knops/keymap.c index 34e560600..7bc7fbe43 100644 --- a/keyboards/knops/mini/keymaps/knops/keymap.c +++ b/keyboards/knops/mini/keymaps/knops/keymap.c | |||
@@ -117,6 +117,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { | |||
117 | //keyevent_t event = record->event; | 117 | //keyevent_t event = record->event; |
118 | 118 | ||
119 | /*KNOPS_MACRO*/ | 119 | /*KNOPS_MACRO*/ |
120 | return NULL; | ||
120 | } | 121 | } |
121 | 122 | ||
122 | 123 | ||
@@ -133,6 +134,8 @@ void led_set_user(uint8_t usb_led) { | |||
133 | bool process_record_user (uint16_t keycode, keyrecord_t *record) { | 134 | bool process_record_user (uint16_t keycode, keyrecord_t *record) { |
134 | 135 | ||
135 | /*KNOPS_PROCESS_STATE*/ | 136 | /*KNOPS_PROCESS_STATE*/ |
137 | |||
138 | return NULL; | ||
136 | 139 | ||
137 | } | 140 | } |
138 | 141 | ||
diff --git a/keyboards/planck/keymaps/piemod/rules.mk b/keyboards/planck/keymaps/piemod/rules.mk index 1e48872e3..84cb02bd7 100644 --- a/keyboards/planck/keymaps/piemod/rules.mk +++ b/keyboards/planck/keymaps/piemod/rules.mk | |||
@@ -1,10 +1,18 @@ | |||
1 | SUBPROJECT_DEFAULT = rev4 | 1 | SUBPROJECT_DEFAULT = rev4 |
2 | 2 | ||
3 | MOUSEKEY_ENABLE = yes | 3 | MOUSEKEY_ENABLE = yes |
4 | BLUETOOTH_ENABLE = yes | ||
5 | EXTRAKEY_ENABLE = yes | 4 | EXTRAKEY_ENABLE = yes |
6 | AUDIO_ENABLE = yes | 5 | AUDIO_ENABLE = yes |
7 | 6 | ||
7 | ifeq ($(MCU),at90usb1286) | ||
8 | BOOTMAGIC_ENABLE = no | ||
9 | CONSOLE_ENABLE = no | ||
10 | COMMAND_ENABLE = no | ||
11 | BLUETOOTH_ENABLE = no | ||
12 | else | ||
13 | BLUETOOTH_ENABLE = yes | ||
14 | endif | ||
15 | |||
8 | ifndef QUANTUM_DIR | 16 | ifndef QUANTUM_DIR |
9 | include ../../../../Makefile | 17 | include ../../../../Makefile |
10 | endif | 18 | endif |
diff --git a/keyboards/s60_x/keymaps/amnesia0287/keymap.c b/keyboards/s60_x/keymaps/amnesia0287/keymap.c index f9ca3f15a..42f82e1d9 100644 --- a/keyboards/s60_x/keymaps/amnesia0287/keymap.c +++ b/keyboards/s60_x/keymaps/amnesia0287/keymap.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include "rgb.h" | 1 | #include "s60_x.h" |
2 | 2 | ||
3 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | 3 | // Each layer gets a name for readability, which is then used in the keymap matrix below. |
4 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | 4 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. |
diff --git a/keyboards/tv44/keymaps/budi/config.h b/keyboards/tv44/keymaps/budi/config.h index e6f23c936..67bcf3546 100644 --- a/keyboards/tv44/keymaps/budi/config.h +++ b/keyboards/tv44/keymaps/budi/config.h | |||
@@ -4,6 +4,9 @@ | |||
4 | #include "../../config.h" | 4 | #include "../../config.h" |
5 | 5 | ||
6 | // place overrides here | 6 | // place overrides here |
7 | #ifdef DEBOUNCING_DELAY | ||
8 | #undef DEBOUNCING_DELAY | ||
9 | #endif | ||
7 | #define DEBOUNCING_DELAY 2 | 10 | #define DEBOUNCING_DELAY 2 |
8 | #define MOUSEKEY_INTERVAL 10 | 11 | #define MOUSEKEY_INTERVAL 10 |
9 | #define MOUSEKEY_DELAY 0 | 12 | #define MOUSEKEY_DELAY 0 |
diff --git a/layouts/community/ergodox/berfarah/keymap.c b/layouts/community/ergodox/berfarah/keymap.c index bc639b189..a0a107785 100644 --- a/layouts/community/ergodox/berfarah/keymap.c +++ b/layouts/community/ergodox/berfarah/keymap.c | |||
@@ -183,6 +183,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
183 | ), | 183 | ), |
184 | }; | 184 | }; |
185 | 185 | ||
186 | #ifdef RGBLIGHT_ENABLE | ||
186 | /* | 187 | /* |
187 | * Led Configuration | 188 | * Led Configuration |
188 | */ | 189 | */ |
@@ -222,6 +223,7 @@ static inline void mod_layer_with_rgb(keyrecord_t *record, uint8_t layer) { | |||
222 | bf_set_led(currentLayer); | 223 | bf_set_led(currentLayer); |
223 | }; | 224 | }; |
224 | }; | 225 | }; |
226 | #endif | ||
225 | 227 | ||
226 | /* | 228 | /* |
227 | * Custom keycodes | 229 | * Custom keycodes |
@@ -240,12 +242,14 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
240 | SEND_STRING(" "); | 242 | SEND_STRING(" "); |
241 | } | 243 | } |
242 | return false; break; | 244 | return false; break; |
245 | #ifdef RGBLIGHT_ENABLE | ||
243 | case BF_NUMS: | 246 | case BF_NUMS: |
244 | mod_layer_with_rgb(record, NUMS); | 247 | mod_layer_with_rgb(record, NUMS); |
245 | return false; break; | 248 | return false; break; |
246 | case BF_MOVE: | 249 | case BF_MOVE: |
247 | mod_layer_with_rgb(record, MOVE); | 250 | mod_layer_with_rgb(record, MOVE); |
248 | return false; break; | 251 | return false; break; |
252 | #endif | ||
249 | } | 253 | } |
250 | 254 | ||
251 | return true; | 255 | return true; |
@@ -255,7 +259,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
255 | * Active Routines | 259 | * Active Routines |
256 | */ | 260 | */ |
257 | void matrix_init_user(void) { | 261 | void matrix_init_user(void) { |
262 | #ifdef RGBLIGHT_ENABLE | ||
258 | bf_set_led(QWERTY); | 263 | bf_set_led(QWERTY); |
264 | #endif | ||
259 | }; | 265 | }; |
260 | 266 | ||
261 | // Runs constantly in the background, in a loop. | 267 | // Runs constantly in the background, in a loop. |
diff --git a/layouts/community/ergodox/berfarah/rules.mk b/layouts/community/ergodox/berfarah/rules.mk index 7153c6ad0..a87325037 100644 --- a/layouts/community/ergodox/berfarah/rules.mk +++ b/layouts/community/ergodox/berfarah/rules.mk | |||
@@ -6,8 +6,9 @@ DEBUG_ENABLE = no | |||
6 | CONSOLE_ENABLE = no | 6 | CONSOLE_ENABLE = no |
7 | TAP_DANCE_ENABLE = no | 7 | TAP_DANCE_ENABLE = no |
8 | MOUSEKEY_ENABLE = no | 8 | MOUSEKEY_ENABLE = no |
9 | RGBLIGHT_ENABLE = yes | 9 | ifdef RGBLIGHT_ENABLE |
10 | RGBLIGHT_ANIMATION = yes | 10 | RGBLIGHT_ANIMATION = yes |
11 | endif | ||
11 | 12 | ||
12 | ifeq (${FORCE_NKRO},yes) | 13 | ifeq (${FORCE_NKRO},yes) |
13 | OPT_DEFS += -DFORCE_NKRO | 14 | OPT_DEFS += -DFORCE_NKRO |
diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c index 1addd72e5..6e9c28e4f 100644 --- a/quantum/process_keycode/process_combo.c +++ b/quantum/process_keycode/process_combo.c | |||
@@ -22,7 +22,7 @@ | |||
22 | 22 | ||
23 | 23 | ||
24 | __attribute__ ((weak)) | 24 | __attribute__ ((weak)) |
25 | combo_t key_combos[] = { | 25 | combo_t key_combos[COMBO_COUNT] = { |
26 | 26 | ||
27 | }; | 27 | }; |
28 | 28 | ||
diff --git a/users/dudeofawesome/dudeofawesome.h b/users/dudeofawesome/dudeofawesome.h index b0387f2ad..12b581b4d 100644 --- a/users/dudeofawesome/dudeofawesome.h +++ b/users/dudeofawesome/dudeofawesome.h | |||
@@ -1,6 +1,9 @@ | |||
1 | #ifndef USERSPACE | 1 | #ifndef USERSPACE |
2 | #define USERSPACE | 2 | #define USERSPACE |
3 | 3 | ||
4 | #ifdef TAPPING_TOGGLE | ||
5 | #undef TAPPING_TOGGLE | ||
6 | #endif | ||
4 | #define TAPPING_TOGGLE 2 | 7 | #define TAPPING_TOGGLE 2 |
5 | 8 | ||
6 | #ifdef AUDIO_ENABLE | 9 | #ifdef AUDIO_ENABLE |