From 6aaf3e84e9ba2863d72cf539fdf1bb15ae484a25 Mon Sep 17 00:00:00 2001 From: Nick Brassel Date: Fri, 6 Aug 2021 08:14:43 +1000 Subject: Rework as per 9824 (#13898) --- keyboards/coarse/vinta/vinta.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 keyboards/coarse/vinta/vinta.c (limited to 'keyboards/coarse/vinta/vinta.c') 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); +} -- cgit v1.2.3