]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
updated all the other keymaps to support the new changes.
authorSjB <steve@sagacity.ca>
Tue, 24 Jan 2017 05:24:01 +0000 (00:24 -0500)
committerSjB <steve@sagacity.ca>
Tue, 24 Jan 2017 05:24:01 +0000 (00:24 -0500)
qmk firmware requires the matrix_init_user and matrix_scan_user
function to be implementated. Added these function to all the existing
keymaps.

keyboards/infinity60/keymaps/default/keymap.c
keyboards/infinity60/keymaps/depariel/keymap.c
keyboards/infinity60/keymaps/hasu/keymap.c

index 4434128579c8be556a00ba8a359f584407011c88..8347c94b4850dca377f7bd336a6da0ac617301f5 100644 (file)
@@ -46,3 +46,12 @@ 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) {
+
+};
index 7412b9b9dde2188d1938ca28803675bb8c2f7737..57f9487f22104e18068fc6fc609efb5b3e1f96cd 100755 (executable)
@@ -80,3 +80,12 @@ const uint16_t PROGMEM 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) {
+
+};
index d3728869ab5a4b053ae50cef6ca13e3aba8e4f25..9982078c19dae2ae7f76ad5736bf31bcd4eea113 100644 (file)
@@ -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) {
+
+};