diff options
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/matrix.c | 16 | ||||
| -rw-r--r-- | quantum/template/template.c | 26 | ||||
| -rw-r--r-- | quantum/template/template.h | 4 |
3 files changed, 18 insertions, 28 deletions
diff --git a/quantum/matrix.c b/quantum/matrix.c index 95bf4c097..2dab6ae94 100644 --- a/quantum/matrix.c +++ b/quantum/matrix.c | |||
| @@ -48,14 +48,14 @@ static void unselect_rows(void); | |||
| 48 | static void select_row(uint8_t row); | 48 | static void select_row(uint8_t row); |
| 49 | 49 | ||
| 50 | __attribute__ ((weak)) | 50 | __attribute__ ((weak)) |
| 51 | void * matrix_init_kb(void) { | 51 | void matrix_init_kb(void) { |
| 52 | 52 | ||
| 53 | }; | 53 | } |
| 54 | 54 | ||
| 55 | __attribute__ ((weak)) | 55 | __attribute__ ((weak)) |
| 56 | void * matrix_scan_kb(void) { | 56 | void matrix_scan_kb(void) { |
| 57 | 57 | ||
| 58 | }; | 58 | } |
| 59 | 59 | ||
| 60 | inline | 60 | inline |
| 61 | uint8_t matrix_rows(void) | 61 | uint8_t matrix_rows(void) |
| @@ -86,9 +86,7 @@ void matrix_init(void) | |||
| 86 | matrix_debouncing[i] = 0; | 86 | matrix_debouncing[i] = 0; |
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | if (matrix_init_kb) { | 89 | matrix_init_kb(); |
| 90 | (*matrix_init_kb)(); | ||
| 91 | } | ||
| 92 | } | 90 | } |
| 93 | 91 | ||
| 94 | 92 | ||
| @@ -152,9 +150,7 @@ uint8_t matrix_scan(void) | |||
| 152 | } | 150 | } |
| 153 | #endif | 151 | #endif |
| 154 | 152 | ||
| 155 | if (matrix_scan_kb) { | 153 | matrix_scan_kb(); |
| 156 | (*matrix_scan_kb)(); | ||
| 157 | } | ||
| 158 | 154 | ||
| 159 | return 1; | 155 | return 1; |
| 160 | } | 156 | } |
diff --git a/quantum/template/template.c b/quantum/template/template.c index 7be7dfc3d..7dcd67cfc 100644 --- a/quantum/template/template.c +++ b/quantum/template/template.c | |||
| @@ -1,29 +1,23 @@ | |||
| 1 | #include "%KEYBOARD%.h" | 1 | #include "%KEYBOARD%.h" |
| 2 | 2 | ||
| 3 | __attribute__ ((weak)) | 3 | __attribute__ ((weak)) |
| 4 | void * matrix_init_user(void) { | 4 | void matrix_init_user(void) { |
| 5 | // leave these blank | 5 | // leave these blank |
| 6 | }; | 6 | } |
| 7 | 7 | ||
| 8 | __attribute__ ((weak)) | 8 | __attribute__ ((weak)) |
| 9 | void * matrix_scan_user(void) { | 9 | void matrix_scan_user(void) { |
| 10 | // leave these blank | 10 | // leave these blank |
| 11 | }; | 11 | } |
| 12 | 12 | ||
| 13 | void * matrix_init_kb(void) { | 13 | void matrix_init_kb(void) { |
| 14 | // put your keyboard start-up code here | 14 | // put your keyboard start-up code here |
| 15 | // runs once when the firmware starts up | 15 | // runs once when the firmware starts up |
| 16 | matrix_init_user(); | ||
| 17 | } | ||
| 16 | 18 | ||
| 17 | if (matrix_init_user) { | 19 | void matrix_scan_kb(void) { |
| 18 | (*matrix_init_user)(); | ||
| 19 | } | ||
| 20 | }; | ||
| 21 | |||
| 22 | void * matrix_scan_kb(void) { | ||
| 23 | // put your looping keyboard code here | 20 | // put your looping keyboard code here |
| 24 | // runs every cycle (a lot) | 21 | // runs every cycle (a lot) |
| 25 | 22 | matrix_scan_user(); | |
| 26 | if (matrix_scan_user) { | 23 | } \ No newline at end of file |
| 27 | (*matrix_scan_user)(); | ||
| 28 | } | ||
| 29 | }; \ No newline at end of file | ||
diff --git a/quantum/template/template.h b/quantum/template/template.h index a15061b26..1171dc8e0 100644 --- a/quantum/template/template.h +++ b/quantum/template/template.h | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | { k10, KC_NO, k11 }, \ | 19 | { k10, KC_NO, k11 }, \ |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | void * matrix_init_user(void); | 22 | void matrix_init_user(void); |
| 23 | void * matrix_scan_user(void); | 23 | void matrix_scan_user(void); |
| 24 | 24 | ||
| 25 | #endif \ No newline at end of file | 25 | #endif \ No newline at end of file |
