diff options
author | IBNobody <protospherex@gmail.com> | 2016-03-25 09:51:16 -0500 |
---|---|---|
committer | IBNobody <protospherex@gmail.com> | 2016-03-25 09:51:16 -0500 |
commit | 987ee1115e118c654d67a5ca1faea05beec5c6f2 (patch) | |
tree | 591a465b57d1e0e75de501b3801aed8b61734d6f /keyboard/Bantam44/Bantam44.c | |
parent | 3d56ec052ed485d4b717da930c4024b4a3f792e0 (diff) | |
parent | ba058f8b81132bf64b1aa263779629b8a6c18c23 (diff) |
Merge remote-tracking branch 'refs/remotes/jackhumbert/master'
Diffstat (limited to 'keyboard/Bantam44/Bantam44.c')
-rw-r--r-- | keyboard/Bantam44/Bantam44.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboard/Bantam44/Bantam44.c b/keyboard/Bantam44/Bantam44.c new file mode 100644 index 0000000000..ad91401eeb --- /dev/null +++ b/keyboard/Bantam44/Bantam44.c @@ -0,0 +1,25 @@ +#include "Bantam44.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 + + matrix_init_user(); +} + +void matrix_scan_kb(void) { + // put your looping keyboard code here + // runs every cycle (a lot) + + matrix_scan_user(); +}
\ No newline at end of file |