diff options
author | Nick Brassel <nick@tzarc.org> | 2021-08-06 08:14:43 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-06 08:14:43 +1000 |
commit | 6aaf3e84e9ba2863d72cf539fdf1bb15ae484a25 (patch) | |
tree | a18d5098db27a582619a84b940f478fef018b6a2 /keyboards/coarse/vinta/vinta.c | |
parent | bcb6e23387290afb64712314bfb095f8d96c1a4e (diff) | |
download | qmk_firmware-6aaf3e84e9ba2863d72cf539fdf1bb15ae484a25.tar.gz qmk_firmware-6aaf3e84e9ba2863d72cf539fdf1bb15ae484a25.zip |
Rework as per 9824 (#13898)
Diffstat (limited to 'keyboards/coarse/vinta/vinta.c')
-rw-r--r-- | keyboards/coarse/vinta/vinta.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/coarse/vinta/vinta.c b/keyboards/coarse/vinta/vinta.c new file mode 100644 index 0000000000..112e44fb8e --- /dev/null +++ b/keyboards/coarse/vinta/vinta.c @@ -0,0 +1,18 @@ +#include "vinta.h" + +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) { + + matrix_scan_user(); +} + +bool process_record_kb(uint16_t keycode, keyrecord_t *record) { + + return process_record_user(keycode, record); +} |