diff options
Diffstat (limited to 'keyboards/ai03/orbit/orbit.c')
-rw-r--r-- | keyboards/ai03/orbit/orbit.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/ai03/orbit/orbit.c b/keyboards/ai03/orbit/orbit.c index b51ddbc6e..97553e318 100644 --- a/keyboards/ai03/orbit/orbit.c +++ b/keyboards/ai03/orbit/orbit.c | |||
@@ -172,20 +172,6 @@ void matrix_init_kb(void) { | |||
172 | matrix_init_user(); | 172 | matrix_init_user(); |
173 | } | 173 | } |
174 | 174 | ||
175 | void matrix_scan_kb(void) { | ||
176 | // put your looping keyboard code here | ||
177 | // runs every cycle (a lot) | ||
178 | |||
179 | matrix_scan_user(); | ||
180 | } | ||
181 | |||
182 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
183 | // put your per-action keyboard code here | ||
184 | // runs for every action, just before processing by the firmware | ||
185 | |||
186 | return process_record_user(keycode, record); | ||
187 | } | ||
188 | |||
189 | void led_set_kb(uint8_t usb_led) { | 175 | void led_set_kb(uint8_t usb_led) { |
190 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | 176 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here |
191 | 177 | ||
@@ -222,5 +208,3 @@ uint32_t layer_state_set_kb(uint32_t state) { | |||
222 | 208 | ||
223 | return layer_state_set_user(state); | 209 | return layer_state_set_user(state); |
224 | } | 210 | } |
225 | |||
226 | |||