diff options
author | SjB <steve@sagacity.ca> | 2017-01-24 00:24:01 -0500 |
---|---|---|
committer | SjB <steve@sagacity.ca> | 2017-01-24 00:24:01 -0500 |
commit | 9111cc00f587188c68d3ed0379aae6675ad8d377 (patch) | |
tree | d67db36590b0cd6a3bd0d7d7b1ffd2863910bf56 /keyboards/infinity60/keymaps/hasu | |
parent | a777495683128fc56aa2d0081f27ff4c5c86d219 (diff) |
updated all the other keymaps to support the new changes.
qmk firmware requires the matrix_init_user and matrix_scan_user
function to be implementated. Added these function to all the existing
keymaps.
Diffstat (limited to 'keyboards/infinity60/keymaps/hasu')
-rw-r--r-- | keyboards/infinity60/keymaps/hasu/keymap.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/infinity60/keymaps/hasu/keymap.c b/keyboards/infinity60/keymaps/hasu/keymap.c index d3728869ab..9982078c19 100644 --- a/keyboards/infinity60/keymaps/hasu/keymap.c +++ b/keyboards/infinity60/keymaps/hasu/keymap.c @@ -111,3 +111,13 @@ const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS] = { const uint16_t fn_actions[] = { }; + +// Runs just one time when the keyboard initializes. +void matrix_init_user(void) { + +}; + +// Runs constantly in the background, in a loop. +void matrix_scan_user(void) { + +}; |