diff options
| author | Erez Zukerman <bulk@ezuk.org> | 2016-03-22 21:30:25 +0200 |
|---|---|---|
| committer | Erez Zukerman <bulk@ezuk.org> | 2016-03-22 21:30:25 +0200 |
| commit | 403d756ad56de18488e3d048e849c55e77a20b32 (patch) | |
| tree | b02cd9a378a29d9b8cde07a7d97b46c24e74a3b1 /quantum/template/template.c | |
| parent | 7f0d77e08c6b5d75a1f912051e6d2928d66e7c3b (diff) | |
| parent | baeffd99da5603cd5156bbcf0cd45ae62711858f (diff) | |
| download | qmk_firmware-403d756ad56de18488e3d048e849c55e77a20b32.tar.gz qmk_firmware-403d756ad56de18488e3d048e849c55e77a20b32.zip | |
Merge pull request #190 from yoyoerx/function_pointers
Addressing void* return warning & coding style
Diffstat (limited to 'quantum/template/template.c')
| -rw-r--r-- | quantum/template/template.c | 26 |
1 files changed, 10 insertions, 16 deletions
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 | ||
