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 | |
| parent | a777495683128fc56aa2d0081f27ff4c5c86d219 (diff) | |
| download | qmk_firmware-9111cc00f587188c68d3ed0379aae6675ad8d377.tar.gz qmk_firmware-9111cc00f587188c68d3ed0379aae6675ad8d377.zip | |
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')
| -rw-r--r-- | keyboards/infinity60/keymaps/default/keymap.c | 9 | ||||
| -rwxr-xr-x | keyboards/infinity60/keymaps/depariel/keymap.c | 9 | ||||
| -rw-r--r-- | keyboards/infinity60/keymaps/hasu/keymap.c | 10 |
3 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/infinity60/keymaps/default/keymap.c b/keyboards/infinity60/keymaps/default/keymap.c index 443412857..8347c94b4 100644 --- a/keyboards/infinity60/keymaps/default/keymap.c +++ b/keyboards/infinity60/keymaps/default/keymap.c | |||
| @@ -46,3 +46,12 @@ const uint16_t fn_actions[] = { | |||
| 46 | 46 | ||
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | // Runs just one time when the keyboard initializes. | ||
| 50 | void matrix_init_user(void) { | ||
| 51 | |||
| 52 | }; | ||
| 53 | |||
| 54 | // Runs constantly in the background, in a loop. | ||
| 55 | void matrix_scan_user(void) { | ||
| 56 | |||
| 57 | }; | ||
diff --git a/keyboards/infinity60/keymaps/depariel/keymap.c b/keyboards/infinity60/keymaps/depariel/keymap.c index 7412b9b9d..57f9487f2 100755 --- a/keyboards/infinity60/keymaps/depariel/keymap.c +++ b/keyboards/infinity60/keymaps/depariel/keymap.c | |||
| @@ -80,3 +80,12 @@ const uint16_t PROGMEM fn_actions[] = { | |||
| 80 | 80 | ||
| 81 | }; | 81 | }; |
| 82 | 82 | ||
| 83 | // Runs just one time when the keyboard initializes. | ||
| 84 | void matrix_init_user(void) { | ||
| 85 | |||
| 86 | }; | ||
| 87 | |||
| 88 | // Runs constantly in the background, in a loop. | ||
| 89 | void matrix_scan_user(void) { | ||
| 90 | |||
| 91 | }; | ||
diff --git a/keyboards/infinity60/keymaps/hasu/keymap.c b/keyboards/infinity60/keymaps/hasu/keymap.c index d3728869a..9982078c1 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] = { | |||
| 111 | const uint16_t fn_actions[] = { | 111 | const uint16_t fn_actions[] = { |
| 112 | 112 | ||
| 113 | }; | 113 | }; |
| 114 | |||
| 115 | // Runs just one time when the keyboard initializes. | ||
| 116 | void matrix_init_user(void) { | ||
| 117 | |||
| 118 | }; | ||
| 119 | |||
| 120 | // Runs constantly in the background, in a loop. | ||
| 121 | void matrix_scan_user(void) { | ||
| 122 | |||
| 123 | }; | ||
