diff options
Diffstat (limited to 'keyboards/sixkeyboard/sixkeyboard.c')
-rw-r--r-- | keyboards/sixkeyboard/sixkeyboard.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/keyboards/sixkeyboard/sixkeyboard.c b/keyboards/sixkeyboard/sixkeyboard.c index 7c15e6499..85190f616 100644 --- a/keyboards/sixkeyboard/sixkeyboard.c +++ b/keyboards/sixkeyboard/sixkeyboard.c | |||
@@ -1,20 +1,5 @@ | |||
1 | #include "sixkeyboard.h" | 1 | #include "sixkeyboard.h" |
2 | 2 | ||
3 | __attribute__ ((weak)) | ||
4 | void matrix_init_user(void) { | ||
5 | // leave this function blank - it can be defined in a keymap file | ||
6 | }; | ||
7 | |||
8 | __attribute__ ((weak)) | ||
9 | void matrix_scan_user(void) { | ||
10 | // leave this function blank - it can be defined in a keymap file | ||
11 | }; | ||
12 | |||
13 | __attribute__ ((weak)) | ||
14 | void led_set_user(uint8_t usb_led) { | ||
15 | // leave this function blank - it can be defined in a keymap file | ||
16 | }; | ||
17 | |||
18 | void matrix_init_kb(void) { | 3 | void matrix_init_kb(void) { |
19 | // put your keyboard start-up code here | 4 | // put your keyboard start-up code here |
20 | // runs once when the firmware starts up | 5 | // runs once when the firmware starts up |
@@ -42,11 +27,4 @@ void matrix_init_kb(void) { | |||
42 | PORTD &= ~(1<<3); | 27 | PORTD &= ~(1<<3); |
43 | 28 | ||
44 | matrix_init_user(); | 29 | matrix_init_user(); |
45 | }; | ||
46 | |||
47 | void matrix_scan_kb(void) { | ||
48 | // put your looping keyboard code here | ||
49 | // runs every cycle (a lot) | ||
50 | |||
51 | matrix_scan_user(); | ||
52 | }; \ No newline at end of file | 30 | }; \ No newline at end of file |