aboutsummaryrefslogtreecommitdiff
path: root/keyboards/spacetime/rev2/rev2.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/spacetime/rev2/rev2.c')
-rw-r--r--keyboards/spacetime/rev2/rev2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/keyboards/spacetime/rev2/rev2.c b/keyboards/spacetime/rev2/rev2.c
index 6b62c071e..3ecef1c1d 100644
--- a/keyboards/spacetime/rev2/rev2.c
+++ b/keyboards/spacetime/rev2/rev2.c
@@ -22,23 +22,3 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
22 return process_record_user(keycode, record); 22 return process_record_user(keycode, record);
23#endif 23#endif
24} 24}
25
26void matrix_init_kb(void) {
27 // put your keyboard start-up code here
28 // runs once when the firmware starts up
29
30 matrix_init_user();
31}
32
33void matrix_scan_kb(void) {
34 // put your looping keyboard code here
35 // runs every cycle (a lot)
36
37 matrix_scan_user();
38}
39
40void led_set_kb(uint8_t usb_led) {
41 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
42
43 led_set_user(usb_led);
44}