diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-04-05 09:44:01 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-04-05 09:44:01 -0400 |
commit | 931b0a79fc071498c229b0051be0ebadd934a549 (patch) | |
tree | 29a2fca3e86217958292286a91e2cc7fcf33070a /keyboard/preonic/preonic.c | |
parent | e1020672ac42a423a16747d2272cd2203bd3f988 (diff) |
updates to noise
Diffstat (limited to 'keyboard/preonic/preonic.c')
-rw-r--r-- | keyboard/preonic/preonic.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboard/preonic/preonic.c b/keyboard/preonic/preonic.c index e9ececb6d8..f639f247a5 100644 --- a/keyboard/preonic/preonic.c +++ b/keyboard/preonic/preonic.c @@ -10,6 +10,11 @@ void matrix_scan_user(void) { }; +__attribute__ ((weak)) +void process_action_user(keyrecord_t *record) { + +}; + void matrix_init_kb(void) { #ifdef BACKLIGHT_ENABLE backlight_init_ports(); @@ -30,3 +35,7 @@ void matrix_init_kb(void) { void matrix_scan_kb(void) { matrix_scan_user(); }; + +void process_action_kb(keyrecord_t *record) { + process_action_user(record); +}
\ No newline at end of file |