aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/frosty_flake/frosty_flake.c
diff options
context:
space:
mode:
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