Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

keymap.c 10.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. Copyright 2011 Jun Wako <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. /*
  15. * Keymap for HID Liberator controller
  16. */
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. #include <avr/pgmspace.h>
  20. #include "keycode.h"
  21. #include "action.h"
  22. #include "action_macro.h"
  23. #include "report.h"
  24. #include "host.h"
  25. #include "print.h"
  26. #include "debug.h"
  27. #include "keymap.h"
  28. // Convert physical keyboard layout to matrix array.
  29. // This is a macro to define keymap easily in keyboard layout form.
  30. #define KEYMAP( \
  31. KG1, KH7, KJ7, KJ6, KJ1, KO5, KL1, KA6, KA7, KD7, KD5, KD1, KD2, KB5, KB3, KO3, \
  32. KG7, KG5, KH5, KJ5, KI5, KI7, KK7, KK5, KL5, KA5, KC5, KC7, KL7, KD6, KQ7, KN7, KM7, \
  33. KG6, KG3, KH3, KJ3, KI3, KI6, KK6, KK3, KL3, KA3, KC3, KC6, KL6, KD4, KP7, KN5, KM5, \
  34. KH6, KG4, KH4, KJ4, KI4, KI1, KK1, KK4, KL4, KA4, KC4, KC1, KD0, \
  35. KF6, KH1, KG0, KH0, KJ0, KI0, KI2, KK2, KK0, KL0, KA0, KC2, KF4, KN1, \
  36. KO7, KE6, KB1, KP1, KB2, KR4, KA2, KO0, KN2, KP2, KQ2 \
  37. ) { \
  38. /* 0 1 2 3 4 5 6 7 */ \
  39. /* A */ { KC_##KA0, KC_NO , KC_##KA2, KC_##KA3, KC_##KA4, KC_##KA5, KC_##KA6, KC_##KA7 }, \
  40. /* B */ { KC_NO , KC_##KB1, KC_##KB2, KC_##KB3, KC_NO , KC_##KB5, KC_NO , KC_NO }, \
  41. /* C */ { KC_NO , KC_##KC1, KC_##KC2, KC_##KC3, KC_##KC4, KC_##KC5, KC_##KC6, KC_##KC7 }, \
  42. /* D */ { KC_##KD0, KC_##KD1, KC_##KD2, KC_NO , KC_##KD4, KC_##KD5, KC_##KD6, KC_##KD7 }, \
  43. /* E */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_NO , KC_NO , KC_##KE6, KC_NO }, \
  44. /* F */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_##KF4, KC_NO , KC_##KF6, KC_NO }, \
  45. /* G */ { KC_##KG0, KC_##KG1, KC_NO , KC_##KG3, KC_##KG4, KC_##KG5, KC_##KG6, KC_##KG7 }, \
  46. /* H */ { KC_##KH0, KC_##KH1, KC_NO , KC_##KH3, KC_##KH4, KC_##KH5, KC_##KH6, KC_##KH7 }, \
  47. /* I */ { KC_##KI0, KC_##KI1, KC_##KI2, KC_##KI3, KC_##KI4, KC_##KI5, KC_##KI6, KC_##KI7 }, \
  48. /* J */ { KC_##KJ0, KC_##KJ1, KC_NO , KC_##KJ3, KC_##KJ4, KC_##KJ5, KC_##KJ6, KC_##KJ7 }, \
  49. /* K */ { KC_##KK0, KC_##KK1, KC_##KK2, KC_##KK3, KC_##KK4, KC_##KK5, KC_##KK6, KC_##KK7 }, \
  50. /* L */ { KC_##KL0, KC_##KL1, KC_NO , KC_##KL3, KC_##KL4, KC_##KL5, KC_##KL6, KC_##KL7 }, \
  51. /* M */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_NO , KC_##KM5, KC_NO , KC_##KM7 }, \
  52. /* N */ { KC_NO , KC_##KN1, KC_##KN2, KC_NO , KC_NO , KC_##KN5, KC_NO , KC_##KN7 }, \
  53. /* O */ { KC_##KO0, KC_NO , KC_NO , KC_##KO3, KC_NO , KC_##KO5, KC_NO , KC_##KO7 }, \
  54. /* P */ { KC_NO , KC_##KP1, KC_##KP2, KC_NO , KC_NO , KC_NO , KC_NO , KC_##KP7 }, \
  55. /* Q */ { KC_NO , KC_NO , KC_##KQ2, KC_NO , KC_NO , KC_NO , KC_NO , KC_##KQ7 }, \
  56. /* R */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_##KR4, KC_NO , KC_NO , KC_NO } \
  57. }
  58. /*
  59. * Add custom layouts. If no custom layout is defined the default layout is used.
  60. */
  61. #if defined(KEYMAP_CUSTOM)
  62. #include "keymap_custom.h"
  63. #else
  64. /*
  65. * Tenkeyless keyboard default layout, ISO & ANSI (ISO is between Left Shift
  66. * and Z, and the ANSI \ key above Return/Enter is used for the additional ISO
  67. * switch in the ASD row next to enter. Use NUBS as keycode for the first and
  68. * NUHS as the keycode for the second.
  69. *
  70. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  71. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  72. * `---' `---------------' `---------------' `---------------' `-----------'
  73. * ,-----------------------------------------------------------. ,-----------.
  74. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  75. * |-----------------------------------------------------------| |-----------|
  76. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  77. * |-----------------------------------------------------------| `-----------'
  78. * |Caps | A| S| D| F| G| H| J| K| L| ;| '|Return |
  79. * |-----------------------------------------------------------| ,---.
  80. * |Shft|ISO| Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  81. * |-----------------------------------------------------------| ,-----------.
  82. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  83. * `-----------------------------------------------------------' `-----------'
  84. */
  85. static const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  86. /* Layer 0: Default Layer
  87. *
  88. * ANSI:
  89. *
  90. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  91. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  92. * `---' `---------------' `---------------' `---------------' `-----------'
  93. * ,-----------------------------------------------------------. ,-----------.
  94. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  95. * |-----------------------------------------------------------| |-----------|
  96. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  97. * |-----------------------------------------------------------| `-----------'
  98. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  99. * |-----------------------------------------------------------| ,---.
  100. * |Shft|iso| Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  101. * |-----------------------------------------------------------| ,-----------.
  102. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  103. * `-----------------------------------------------------------' `-----------'
  104. */
  105. KEYMAP(\
  106. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, BRK, \
  107. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, BSPC, INS, HOME, PGUP, \
  108. TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, BSLS, DEL, END, PGDN, \
  109. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  110. LSFT, NUBS, Z, X, C, V, B, N, M, COMM, DOT, SLSH, RSFT, UP, \
  111. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  112. /* EXAMPLE ISO keymap, see the NUBS and NUHS keycodes
  113. * KEYMAP(\
  114. * ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, BRK, \
  115. * GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, BSPC, INS, HOME, PGUP, \
  116. * TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, NUHS, DEL, END, PGDN, \
  117. * CAPS, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  118. * LSFT, NUBS, Z, X, C, V, B, N, M, COMM, DOT, SLSH, RSFT, UP, \
  119. * LCTL, FN1, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  120. */
  121. /*
  122. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  123. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Slp|
  124. * `---' `---------------' `---------------' `---------------' `-----------'
  125. * ,-----------------------------------------------------------. ,-----------.
  126. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9|Mut|V- |V+ |Backsp | |Ins|Hom|PgU|
  127. * |-----------------------------------------------------------| |-----------|
  128. * |Tab | Q| W| E| R| T| Y| U| I|MSt|Ply|Prv|Nxt|Media| |Del|End|PgD|
  129. * |-----------------------------------------------------------| `-----------'
  130. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  131. * |-----------------------------------------------------------| ,---.
  132. * |Shft|iso| Z| X|Clc| V| B| N| M| ,| .| /|Caps | |Up |
  133. * |-----------------------------------------------------------| ,-----------.
  134. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  135. * `-----------------------------------------------------------' `-----------'
  136. */
  137. KEYMAP(\
  138. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, SLEP, \
  139. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9,MUTE, VOLD, VOLU, BSPC, INS, HOME, PGUP, \
  140. TAB, Q, W, E, R, T, Y, U, I,MSTP,MPLY, MPRV, MNXT, MSEL, DEL, END, PGDN, \
  141. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  142. LSFT, NUBS, Z, X,CALC, V, B, N, M, COMM, DOT, SLSH, CAPS, UP, \
  143. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  144. };
  145. /*
  146. * Fn action definition
  147. */
  148. static const uint16_t PROGMEM fn_actions[] = {
  149. [0] = ACTION_DEFAULT_LAYER_SET(0),
  150. [1] = ACTION_DEFAULT_LAYER_SET(1),
  151. [2] = ACTION_DEFAULT_LAYER_SET(2),
  152. [3] = ACTION_DEFAULT_LAYER_SET(3),
  153. [4] = ACTION_DEFAULT_LAYER_SET(4),
  154. [5] = ACTION_DEFAULT_LAYER_SET(5),
  155. [6] = ACTION_DEFAULT_LAYER_SET(6),
  156. [7] = ACTION_DEFAULT_LAYER_SET(7),
  157. [8] = ACTION_DEFAULT_LAYER_SET(8),
  158. };
  159. #endif
  160. #define KEYMAPS_SIZE (sizeof(keymaps) / sizeof(keymaps[0]))
  161. #define FN_ACTIONS_SIZE (sizeof(fn_actions) / sizeof(fn_actions[0]))
  162. /* translates key to keycode */
  163. uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
  164. {
  165. if (layer < KEYMAPS_SIZE) {
  166. return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
  167. } else {
  168. return pgm_read_byte(&keymaps[0][(key.row)][(key.col)]);
  169. }
  170. }
  171. /* translates Fn keycode to action */
  172. action_t keymap_fn_to_action(uint8_t keycode)
  173. {
  174. action_t action;
  175. if (FN_INDEX(keycode) < FN_ACTIONS_SIZE) {
  176. action.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)]);
  177. } else {
  178. action.code = ACTION_NO;
  179. }
  180. return action;
  181. }