]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - tmk_core/common/keyboard.c
Add support for storing, restoring and clearing modifiers in macros
[max/tmk_keyboard.git] / tmk_core / common / keyboard.c
index b03b124d76a98af7bc41e32aa4a09b055c8bf392..eb7b096bed501e32b65702c98f9da27c3e912791 100644 (file)
@@ -62,6 +62,12 @@ static bool has_ghost_in_row(uint8_t row)
 #endif
 
 
+__attribute__ ((weak)) void matrix_setup(void) {}
+void keyboard_setup(void)
+{
+    matrix_setup();
+}
+
 void keyboard_init(void)
 {
     timer_init();