diff options
Diffstat (limited to 'quantum/template/keymaps/default/keymap.c')
-rw-r--r-- | quantum/template/keymaps/default/keymap.c | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/quantum/template/keymaps/default/keymap.c b/quantum/template/keymaps/default/keymap.c index 4121fd860..e28a4723e 100644 --- a/quantum/template/keymaps/default/keymap.c +++ b/quantum/template/keymaps/default/keymap.c | |||
@@ -1,6 +1,3 @@ | |||
1 | // This is the canonical layout file for the Quantum project. If you want to add another keyboard, | ||
2 | // this is the style you want to emulate. | ||
3 | |||
4 | #include "%KEYBOARD%.h" | 1 | #include "%KEYBOARD%.h" |
5 | 2 | ||
6 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
@@ -28,3 +25,20 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | |||
28 | } | 25 | } |
29 | return MACRO_NONE; | 26 | return MACRO_NONE; |
30 | }; | 27 | }; |
28 | |||
29 | |||
30 | void matrix_init_user(void) { | ||
31 | |||
32 | } | ||
33 | |||
34 | void matrix_scan_user(void) { | ||
35 | |||
36 | } | ||
37 | |||
38 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
39 | return true; | ||
40 | } | ||
41 | |||
42 | void led_set_user(uint8_t usb_led) { | ||
43 | |||
44 | } \ No newline at end of file | ||