summaryrefslogtreecommitdiffstats
path: root/keyboard/atreus/atreus.c
diff options
context:
space:
mode:
authorStephan Bösebeck <sb@caluga.de>2016-01-31 00:17:25 +0100
committerStephan Bösebeck <sb@caluga.de>2016-01-31 00:17:25 +0100
commit1531350125b5a8e7eefc5f04ed4c372262ec6743 (patch)
treebf53db1493c0ed6e1719da553d7ac9f32374a8d6 /keyboard/atreus/atreus.c
parentbf64046a044987ebcccfa286a88dc8a981d5508b (diff)
parent3008c6c6f7aef6c5129e9301a3e96c71ac018ea0 (diff)
downloadqmk_firmware-1531350125b5a8e7eefc5f04ed4c372262ec6743.tar.gz
qmk_firmware-1531350125b5a8e7eefc5f04ed4c372262ec6743.tar.xz
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
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 000000000..bfc893084
--- /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)();
+ }
+};