summaryrefslogtreecommitdiffstats
path: root/keyboards/jj40/jj40.c
diff options
context:
space:
mode:
authorRandTrawick <RandTrawick@gmail.com>2017-11-27 22:08:53 +0100
committerJack Humbert <jack.humb@gmail.com>2017-11-27 22:08:53 +0100
commit9113f3387a670373919fe62899b0ab27e9d89eba (patch)
tree45580652db3c2ef761b2c29ffc2b7f5c322e7877 /keyboards/jj40/jj40.c
parent0bd453b5276714b9a33c6a2060851ea5184c52b2 (diff)
downloadqmk_firmware-9113f3387a670373919fe62899b0ab27e9d89eba.tar.gz
qmk_firmware-9113f3387a670373919fe62899b0ab27e9d89eba.tar.xz
JJ40 updates (#2056)
* my bits * fixed safdb * readme * readme * better name, fixed compile error * fixed matrix user * cleanup
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