diff options
| author | Ryan <fauxpark@gmail.com> | 2021-09-06 06:36:31 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-05 21:36:31 +0100 |
| commit | fe6d6cf76dc827adb2f46d55217dc189eae21b02 (patch) | |
| tree | e97fc05d0efb3064a0c89f719cc5df865959d651 /keyboards/helix | |
| parent | 8a8fdd9a728a4cdc0ddce54fab9bf3b4ff8bf942 (diff) | |
| download | qmk_firmware-fe6d6cf76dc827adb2f46d55217dc189eae21b02.tar.gz qmk_firmware-fe6d6cf76dc827adb2f46d55217dc189eae21b02.zip | |
Remove empty override functions (#14312)
* Remove empty override functions, 0-9
* Remove empty override functions, A-D
* Remove empty override functions, E-H
* Remove empty override functions, handwired
* Remove empty override functions, I-L
* Remove empty override functions, M-P
* Remove empty override functions, Q-T
* Remove empty override functions, U-Z
Diffstat (limited to 'keyboards/helix')
| -rw-r--r-- | keyboards/helix/pico/pico.c | 5 | ||||
| -rw-r--r-- | keyboards/helix/rev1/rev1.c | 18 | ||||
| -rw-r--r-- | keyboards/helix/rev2/rev2.c | 5 | ||||
| -rw-r--r-- | keyboards/helix/rev3_4rows/keymaps/default/keymap.c | 14 | ||||
| -rw-r--r-- | keyboards/helix/rev3_4rows/keymaps/via/keymap.c | 14 | ||||
| -rw-r--r-- | keyboards/helix/rev3_5rows/keymaps/default/keymap.c | 14 | ||||
| -rw-r--r-- | keyboards/helix/rev3_5rows/keymaps/via/keymap.c | 14 |
7 files changed, 0 insertions, 84 deletions
diff --git a/keyboards/helix/pico/pico.c b/keyboards/helix/pico/pico.c index 12b8ae9ef..315b35a7a 100644 --- a/keyboards/helix/pico/pico.c +++ b/keyboards/helix/pico/pico.c | |||
| @@ -11,11 +11,6 @@ uint8_t is_master = false; | |||
| 11 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | 11 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { |
| 12 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); | 12 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); |
| 13 | } | 13 | } |
| 14 | |||
| 15 | void led_set_kb(uint8_t usb_led) { | ||
| 16 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 17 | //led_set_user(usb_led); | ||
| 18 | } | ||
| 19 | #endif | 14 | #endif |
| 20 | 15 | ||
| 21 | void matrix_init_kb(void) { | 16 | void matrix_init_kb(void) { |
diff --git a/keyboards/helix/rev1/rev1.c b/keyboards/helix/rev1/rev1.c index 309cca010..d053f0de1 100644 --- a/keyboards/helix/rev1/rev1.c +++ b/keyboards/helix/rev1/rev1.c | |||
| @@ -7,22 +7,4 @@ | |||
| 7 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | 7 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { |
| 8 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); | 8 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); |
| 9 | } | 9 | } |
| 10 | |||
| 11 | void led_set_kb(uint8_t usb_led) { | ||
| 12 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 13 | led_set_user(usb_led); | ||
| 14 | } | ||
| 15 | #endif | 10 | #endif |
| 16 | |||
| 17 | void matrix_init_kb(void) { | ||
| 18 | |||
| 19 | // // green led on | ||
| 20 | // DDRD |= (1<<5); | ||
| 21 | // PORTD &= ~(1<<5); | ||
| 22 | |||
| 23 | // // orange led on | ||
| 24 | // DDRB |= (1<<0); | ||
| 25 | // PORTB &= ~(1<<0); | ||
| 26 | |||
| 27 | matrix_init_user(); | ||
| 28 | }; | ||
diff --git a/keyboards/helix/rev2/rev2.c b/keyboards/helix/rev2/rev2.c index d2b3143d8..b92580f9f 100644 --- a/keyboards/helix/rev2/rev2.c +++ b/keyboards/helix/rev2/rev2.c | |||
| @@ -11,11 +11,6 @@ uint8_t is_master = false; | |||
| 11 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | 11 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { |
| 12 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); | 12 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); |
| 13 | } | 13 | } |
| 14 | |||
| 15 | void led_set_kb(uint8_t usb_led) { | ||
| 16 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 17 | //led_set_user(usb_led); | ||
| 18 | } | ||
| 19 | #endif | 14 | #endif |
| 20 | 15 | ||
| 21 | bool is_mac_mode(void) { | 16 | bool is_mac_mode(void) { |
diff --git a/keyboards/helix/rev3_4rows/keymaps/default/keymap.c b/keyboards/helix/rev3_4rows/keymaps/default/keymap.c index 1544a4fff..408e7125c 100644 --- a/keyboards/helix/rev3_4rows/keymaps/default/keymap.c +++ b/keyboards/helix/rev3_4rows/keymaps/default/keymap.c | |||
| @@ -178,17 +178,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 178 | } | 178 | } |
| 179 | return true; | 179 | return true; |
| 180 | } | 180 | } |
| 181 | |||
| 182 | /* | ||
| 183 | void matrix_init_user(void) { | ||
| 184 | |||
| 185 | } | ||
| 186 | |||
| 187 | void matrix_scan_user(void) { | ||
| 188 | |||
| 189 | } | ||
| 190 | |||
| 191 | bool led_update_user(led_t led_state) { | ||
| 192 | return true; | ||
| 193 | } | ||
| 194 | */ | ||
diff --git a/keyboards/helix/rev3_4rows/keymaps/via/keymap.c b/keyboards/helix/rev3_4rows/keymaps/via/keymap.c index 2cfb1152c..6cc9aedb0 100644 --- a/keyboards/helix/rev3_4rows/keymaps/via/keymap.c +++ b/keyboards/helix/rev3_4rows/keymaps/via/keymap.c | |||
| @@ -165,17 +165,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 165 | } | 165 | } |
| 166 | return true; | 166 | return true; |
| 167 | } | 167 | } |
| 168 | |||
| 169 | /* | ||
| 170 | void matrix_init_user(void) { | ||
| 171 | |||
| 172 | } | ||
| 173 | |||
| 174 | void matrix_scan_user(void) { | ||
| 175 | |||
| 176 | } | ||
| 177 | |||
| 178 | bool led_update_user(led_t led_state) { | ||
| 179 | return true; | ||
| 180 | } | ||
| 181 | */ | ||
diff --git a/keyboards/helix/rev3_5rows/keymaps/default/keymap.c b/keyboards/helix/rev3_5rows/keymaps/default/keymap.c index 6dde7fed5..09132f75e 100644 --- a/keyboards/helix/rev3_5rows/keymaps/default/keymap.c +++ b/keyboards/helix/rev3_5rows/keymaps/default/keymap.c | |||
| @@ -188,17 +188,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 188 | } | 188 | } |
| 189 | return true; | 189 | return true; |
| 190 | } | 190 | } |
| 191 | |||
| 192 | /* | ||
| 193 | void matrix_init_user(void) { | ||
| 194 | |||
| 195 | } | ||
| 196 | |||
| 197 | void matrix_scan_user(void) { | ||
| 198 | |||
| 199 | } | ||
| 200 | |||
| 201 | bool led_update_user(led_t led_state) { | ||
| 202 | return true; | ||
| 203 | } | ||
| 204 | */ | ||
diff --git a/keyboards/helix/rev3_5rows/keymaps/via/keymap.c b/keyboards/helix/rev3_5rows/keymaps/via/keymap.c index 8097141dd..b1d17c50f 100644 --- a/keyboards/helix/rev3_5rows/keymaps/via/keymap.c +++ b/keyboards/helix/rev3_5rows/keymaps/via/keymap.c | |||
| @@ -175,17 +175,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 175 | } | 175 | } |
| 176 | return true; | 176 | return true; |
| 177 | } | 177 | } |
| 178 | |||
| 179 | /* | ||
| 180 | void matrix_init_user(void) { | ||
| 181 | |||
| 182 | } | ||
| 183 | |||
| 184 | void matrix_scan_user(void) { | ||
| 185 | |||
| 186 | } | ||
| 187 | |||
| 188 | bool led_update_user(led_t led_state) { | ||
| 189 | return true; | ||
| 190 | } | ||
| 191 | */ | ||
