summaryrefslogtreecommitdiffstats
path: root/keyboards/lets_split_eh/eh/eh.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/lets_split_eh/eh/eh.c')
-rw-r--r--keyboards/lets_split_eh/eh/eh.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/lets_split_eh/eh/eh.c b/keyboards/lets_split_eh/eh/eh.c
new file mode 100644
index 000000000..e748d3ae0
--- /dev/null
+++ b/keyboards/lets_split_eh/eh/eh.c
@@ -0,0 +1,14 @@
+#include "lets_split_eh.h"
+
+void matrix_init_kb(void) {
+
+ // JTAG disable for PORT F. write JTD bit twice within four cycles.
+ MCUCR |= (1<<JTD);
+ MCUCR |= (1<<JTD);
+
+ // Undo init of RX LED, we use that port currently
+ // DDRB &= ~(1<<0);
+
+ matrix_init_user();
+};
+