summaryrefslogtreecommitdiff
path: root/keyboards/frosty_flake/frosty_flake.c
diff options
context:
space:
mode:
authorGabriel Young2017-03-19 21:11:17 -0700
committerGabriel Young2017-03-19 21:11:17 -0700
commita3a304db9ae09c3c5532c43e553cc24d3f9b29a2 (patch)
tree104ce7a7b186f0b46f591cb89e5e45d9d5fc9ed7 /keyboards/frosty_flake/frosty_flake.c
parentdb2da37561e836cd55f1ae279be4c8d1adbb648c (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.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/frosty_flake/frosty_flake.c b/keyboards/frosty_flake/frosty_flake.c
index ed1736184..1cd476038 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