summaryrefslogtreecommitdiff
path: root/keyboard/atreus/atreus.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-02-07 10:39:01 -0500
committerJack Humbert <jack.humb@gmail.com>2016-02-07 10:39:01 -0500
commit623666888fd0235476c1024fb937399c2185431f (patch)
tree5b4c060902c5b43c53e4c66ea3237e7315ed3b64 /keyboard/atreus/atreus.c
parent5dc0d1dc20ecb36ac0295a409769c3e4c3f1e815 (diff)
parent8d785de796539ff54fa6c16d34c348d1c647b1f3 (diff)
Merge branch 'master' of https://github.com/jackhumbert/tmk_keyboard
Diffstat (limited to 'keyboard/atreus/atreus.c')
-rw-r--r--keyboard/atreus/atreus.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/keyboard/atreus/atreus.c b/keyboard/atreus/atreus.c
new file mode 100644
index 0000000000..bfc893084f
--- /dev/null
+++ b/keyboard/atreus/atreus.c
@@ -0,0 +1,29 @@
+#include "atreus.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) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+
+ if (matrix_init_user) {
+ (*matrix_init_user)();
+ }
+};
+
+void * matrix_scan_kb(void) {
+ // put your looping keyboard code here
+ // runs every cycle (a lot)
+
+ if (matrix_scan_user) {
+ (*matrix_scan_user)();
+ }
+};