diff options
author | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2018-06-28 12:40:40 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-06-28 12:40:40 -0700 |
commit | e448ef0b1aa55da0d35d38d7f440978579466bf6 (patch) | |
tree | 172d98e2dc58c03e9d97e6be7ec16f38b6ce9984 /keyboards/kitten_paw/kitten_paw.c | |
parent | ded51136cea8886807714784f3e46b2acc55f701 (diff) | |
download | qmk_firmware-e448ef0b1aa55da0d35d38d7f440978579466bf6.tar.gz |
Kitten Paw refactor and Configurator update (#3248)
* Matrix refactor
* Keymap refactor
* Add fullsize_ansi layout to rules.mk
* Configurator support
* Readme cleanup
* Add matrix_init_user and matrix_scan_user functions to kitten_paw.c
Diffstat (limited to 'keyboards/kitten_paw/kitten_paw.c')
-rw-r--r-- | keyboards/kitten_paw/kitten_paw.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/kitten_paw/kitten_paw.c b/keyboards/kitten_paw/kitten_paw.c index 92f64b06b..26cb533f2 100644 --- a/keyboards/kitten_paw/kitten_paw.c +++ b/keyboards/kitten_paw/kitten_paw.c @@ -14,6 +14,14 @@ void matrix_scan_kb(void) { matrix_scan_user(); } +__attribute__ ((weak)) +void matrix_init_user(void) { +} + +__attribute__ ((weak)) +void matrix_scan_user(void) { +} + bool process_record_kb(uint16_t keycode, keyrecord_t *record) { // put your per-action keyboard code here // runs for every action, just before processing by the firmware |