diff options
author | 2016-02-07 10:39:01 -0500 | |
---|---|---|
committer | 2016-02-07 10:39:01 -0500 | |
commit | 623666888fd0235476c1024fb937399c2185431f (patch) | |
tree | 5b4c060902c5b43c53e4c66ea3237e7315ed3b64 /keyboard/atreus/atreus.c | |
parent | 5dc0d1dc20ecb36ac0295a409769c3e4c3f1e815 (diff) | |
parent | 8d785de796539ff54fa6c16d34c348d1c647b1f3 (diff) | |
download | qmk_firmware-623666888fd0235476c1024fb937399c2185431f.tar.gz |
Merge branch 'master' of https://github.com/jackhumbert/tmk_keyboard
Diffstat (limited to 'keyboard/atreus/atreus.c')
-rw-r--r-- | keyboard/atreus/atreus.c | 29 |
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)(); + } +}; |