summaryrefslogtreecommitdiffstats
path: root/keyboards/jj40/jj40.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/jj40/jj40.c')
-rw-r--r--keyboards/jj40/jj40.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/keyboards/jj40/jj40.c b/keyboards/jj40/jj40.c
index 136e023fa..d5add2a6b 100644
--- a/keyboards/jj40/jj40.c
+++ b/keyboards/jj40/jj40.c
@@ -26,3 +26,15 @@ __attribute__ ((weak))
void matrix_scan_user(void) {
/* Nothing to do here... yet */
}
+
+void matrix_init_kb(void) {
+
+ // Call the keymap level matrix init.
+ matrix_init_user();
+
+ // Set our LED pins as output
+ DDRB |= (1<<6);
+}
+
+void matrix_init_user(void) {
+} \ No newline at end of file