diff options
Diffstat (limited to 'keyboards/handwired/space_oddity/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/handwired/space_oddity/keymaps/default/keymap.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/keyboards/handwired/space_oddity/keymaps/default/keymap.c b/keyboards/handwired/space_oddity/keymaps/default/keymap.c index 8adb15cfd..8a6f24587 100644 --- a/keyboards/handwired/space_oddity/keymaps/default/keymap.c +++ b/keyboards/handwired/space_oddity/keymaps/default/keymap.c | |||
@@ -143,12 +143,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
143 | ) | 143 | ) |
144 | }; | 144 | }; |
145 | 145 | ||
146 | void matrix_init_user(void) { | ||
147 | } | ||
148 | |||
149 | void matrix_scan_user(void) { | ||
150 | } | ||
151 | |||
152 | // Simple macro ideas follow. Each of them is designed to give you a quick way to create pairs of | 146 | // Simple macro ideas follow. Each of them is designed to give you a quick way to create pairs of |
153 | // delimiters and then position the cursor between them, much like Emacs' ParEdit does. This way, | 147 | // delimiters and then position the cursor between them, much like Emacs' ParEdit does. This way, |
154 | // you can have some convenient coding "helpers" even when not using Emacs. It is also nice for | 148 | // you can have some convenient coding "helpers" even when not using Emacs. It is also nice for |
@@ -186,37 +180,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
186 | 180 | ||
187 | return true; | 181 | return true; |
188 | } | 182 | } |
189 | |||
190 | void led_set_user(uint8_t usb_led) { | ||
191 | |||
192 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { | ||
193 | |||
194 | } else { | ||
195 | |||
196 | } | ||
197 | |||
198 | if (usb_led & (1 << USB_LED_CAPS_LOCK)) { | ||
199 | |||
200 | } else { | ||
201 | |||
202 | } | ||
203 | |||
204 | if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { | ||
205 | |||
206 | } else { | ||
207 | |||
208 | } | ||
209 | |||
210 | if (usb_led & (1 << USB_LED_COMPOSE)) { | ||
211 | |||
212 | } else { | ||
213 | |||
214 | } | ||
215 | |||
216 | if (usb_led & (1 << USB_LED_KANA)) { | ||
217 | |||
218 | } else { | ||
219 | |||
220 | } | ||
221 | |||
222 | } | ||