diff options
author | Gabriel Young <gabeplaysdrums@live.com> | 2017-03-19 21:11:17 -0700 |
---|---|---|
committer | Gabriel Young <gabeplaysdrums@live.com> | 2017-03-19 21:11:17 -0700 |
commit | a3a304db9ae09c3c5532c43e553cc24d3f9b29a2 (patch) | |
tree | 104ce7a7b186f0b46f591cb89e5e45d9d5fc9ed7 /keyboards/frosty_flake/frosty_flake.c | |
parent | db2da37561e836cd55f1ae279be4c8d1adbb648c (diff) |
clean up docs and provide defaults for keymap
Diffstat (limited to 'keyboards/frosty_flake/frosty_flake.c')
-rw-r--r-- | keyboards/frosty_flake/frosty_flake.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/frosty_flake/frosty_flake.c b/keyboards/frosty_flake/frosty_flake.c index ed17361840..1cd4760389 100644 --- a/keyboards/frosty_flake/frosty_flake.c +++ b/keyboards/frosty_flake/frosty_flake.c @@ -44,3 +44,20 @@ void led_set_kb(uint8_t usb_led) { led_set_user(usb_led); } + +__attribute__ ((weak)) +void matrix_init_user(void) { +} + +__attribute__ ((weak)) +void matrix_scan_user(void) { +} + +__attribute__ ((weak)) +bool process_record_user(uint16_t keycode, keyrecord_t *record) { + return true; +} + +__attribute__ ((weak)) +void led_set_user(uint8_t usb_led) { +}
\ No newline at end of file |