summaryrefslogtreecommitdiff
path: root/keyboards/clueboard1/clueboard1.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/clueboard1/clueboard1.c')
-rw-r--r--keyboards/clueboard1/clueboard1.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/clueboard1/clueboard1.c b/keyboards/clueboard1/clueboard1.c
new file mode 100644
index 0000000000..136ddf15b5
--- /dev/null
+++ b/keyboards/clueboard1/clueboard1.c
@@ -0,0 +1,19 @@
+#include "clueboard1.h"
+
+__attribute__ ((weak))
+void matrix_init_user(void) {
+ // leave these blank
+}
+
+__attribute__ ((weak))
+void matrix_scan_user(void) {
+ // leave these blank
+}
+
+void matrix_init_kb(void) {
+ matrix_init_user();
+}
+
+void matrix_scan_kb(void) {
+ matrix_scan_user();
+}