소스 검색

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.
SjB 8 년 전
부모
커밋
9111cc00f5
3개의 변경된 파일28개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      keyboards/infinity60/keymaps/default/keymap.c
  2. 9 0
      keyboards/infinity60/keymaps/depariel/keymap.c
  3. 10 0
      keyboards/infinity60/keymaps/hasu/keymap.c

+ 9 - 0
keyboards/infinity60/keymaps/default/keymap.c

@@ -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) {
+
+};

+ 9 - 0
keyboards/infinity60/keymaps/depariel/keymap.c

@@ -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) {
+
+};

+ 10 - 0
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) {
+
+};