summaryrefslogtreecommitdiff
path: root/keyboards/minivan44/minivan44.c
diff options
context:
space:
mode:
authorIan Sterling <xyverz@gmail.com>2016-08-13 10:44:42 -0700
committerIan Sterling <xyverz@gmail.com>2016-08-13 10:44:42 -0700
commite87506767cec6410d1a93c15d68452815c9c3553 (patch)
tree2108f1019e8a5473fdd4bf2dae809e2c4960fb9b /keyboards/minivan44/minivan44.c
parent2d0f585e426084b13fecc642cdda77506e2bfbf9 (diff)
Removal of old minivan44 folder.
Diffstat (limited to 'keyboards/minivan44/minivan44.c')
-rw-r--r--keyboards/minivan44/minivan44.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/keyboards/minivan44/minivan44.c b/keyboards/minivan44/minivan44.c
deleted file mode 100644
index be8214fd5d..0000000000
--- a/keyboards/minivan44/minivan44.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "minivan44.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) {
- // put your looping keyboard code here
- // runs every cycle (a lot)
-
- matrix_scan_user();
-}
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
-
- return process_record_user(keycode, record);
-}
-
-void led_set_kb(uint8_t usb_led) {
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
-
- led_set_user(usb_led);
-}