summaryrefslogtreecommitdiff
path: root/keyboards/s60-x/default/default.c
diff options
context:
space:
mode:
authorDamien <Dbroqua@users.noreply.github.com>2017-05-26 15:57:08 +0200
committerGitHub <noreply@github.com>2017-05-26 15:57:08 +0200
commit0a4a966c6648e66a1129ae3af36639054d3e0ed3 (patch)
treeec50b19b9031b1f3f24e003879f95cf9690d61af /keyboards/s60-x/default/default.c
parent7180e195e84aabf252fcadb2852644417ac1d663 (diff)
parent7a4ec3bd926865e490fbf7c5ec68d762e998683f (diff)
Merge pull request #22 from qmk/master
Merge from QMK
Diffstat (limited to 'keyboards/s60-x/default/default.c')
-rw-r--r--keyboards/s60-x/default/default.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/keyboards/s60-x/default/default.c b/keyboards/s60-x/default/default.c
deleted file mode 100644
index 253f5495c2..0000000000
--- a/keyboards/s60-x/default/default.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "default.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);
-}