diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-07-09 07:47:29 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-07-09 07:47:29 -0700 |
commit | 5ef50256d85569cf404cc1b5aea534832bc89089 (patch) | |
tree | ac3e1e280e28796072e1a99e9bf41235fe7ed780 /keyboards/al1/keymaps | |
parent | 56b5e9f23d2e363404fa68af4fd73f8dd21beea1 (diff) |
AL1 Unable to Compile on Configurator (#3339)
* use QMK_KEYBOARD_H
* init_kb and scan_kb need to be in matrix.c to make use of the matrix.h include
* Make the routines weak as suggested by Drashna
Diffstat (limited to 'keyboards/al1/keymaps')
-rw-r--r-- | keyboards/al1/keymaps/splitbs/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/al1/keymaps/splitbs/keymap.c b/keyboards/al1/keymaps/splitbs/keymap.c index da1ba3b8e2..1d752aef57 100644 --- a/keyboards/al1/keymaps/splitbs/keymap.c +++ b/keyboards/al1/keymaps/splitbs/keymap.c @@ -1,4 +1,4 @@ -#include "al1.h" +#include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [0] = LAYOUT_split_bs(\ @@ -49,4 +49,4 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { void led_set_user(uint8_t usb_led) { -}
\ No newline at end of file +} |