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 9.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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 "print.h"
  22. #include "debug.h"
  23. #include "util.h"
  24. #include "keymap.h"
  25. // Convert physical keyboard layout to matrix array.
  26. // This is a macro to define keymap easily in keyboard layout form.
  27. #define KEYMAP( \
  28. KG1, KH7, KJ7, KJ6, KJ1, KO5, KL1, KA6, KA7, KD7, KD5, KD1, KD2, KB5, KB3, KO3, \
  29. KG7, KG5, KH5, KJ5, KI5, KI7, KK7, KK5, KL5, KA5, KC5, KC7, KL7, KD6, KQ7, KN7, KM7, \
  30. KG6, KG3, KH3, KJ3, KI3, KI6, KK6, KK3, KL3, KA3, KC3, KC6, KL6, KD4, KP7, KN5, KM5, \
  31. KH6, KG4, KH4, KJ4, KI4, KI1, KK1, KK4, KL4, KA4, KC4, KC1, KD0, \
  32. KF6, KQ0, KG0, KH0, KJ0, KI0, KI2, KK2, KK0, KL0, KA0, KC2, KF4, KN1, \
  33. KO7, KE6, KB1, KP1, KB2, KR4, KA2, KO0, KN2, KP2, KQ2 \
  34. ) { \
  35. /* 0 1 2 3 4 5 6 7 */ \
  36. /* A */ { KC_##KA0, KC_NO , KC_##KA2, KC_##KA3, KC_##KA4, KC_##KA5, KC_##KA6, KC_##KA7 }, \
  37. /* B */ { KC_NO , KC_##KB1, KC_##KB2, KC_##KB3, KC_NO , KC_##KB5, KC_NO , KC_NO }, \
  38. /* C */ { KC_NO , KC_##KC1, KC_##KC2, KC_##KC3, KC_##KC4, KC_##KC5, KC_##KC6, KC_##KC7 }, \
  39. /* D */ { KC_##KD0, KC_##KD1, KC_##KD2, KC_NO , KC_##KD4, KC_##KD5, KC_##KD6, KC_##KD7 }, \
  40. /* E */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_NO , KC_NO , KC_##KE6, KC_NO }, \
  41. /* F */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_##KF4, KC_NO , KC_##KF6, KC_NO }, \
  42. /* G */ { KC_##KG0, KC_##KG1, KC_NO , KC_##KG3, KC_##KG4, KC_##KG5, KC_##KG6, KC_##KG7 }, \
  43. /* H */ { KC_##KH0, KC_NO , KC_NO , KC_##KH3, KC_##KH4, KC_##KH5, KC_##KH6, KC_##KH7 }, \
  44. /* I */ { KC_##KI0, KC_##KI1, KC_##KI2, KC_##KI3, KC_##KI4, KC_##KI5, KC_##KI6, KC_##KI7 }, \
  45. /* J */ { KC_##KJ0, KC_##KJ1, KC_NO , KC_##KJ3, KC_##KJ4, KC_##KJ5, KC_##KJ6, KC_##KJ7 }, \
  46. /* K */ { KC_##KK0, KC_##KK1, KC_##KK2, KC_##KK3, KC_##KK4, KC_##KK5, KC_##KK6, KC_##KK7 }, \
  47. /* L */ { KC_##KL0, KC_##KL1, KC_NO , KC_##KL3, KC_##KL4, KC_##KL5, KC_##KL6, KC_##KL7 }, \
  48. /* M */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_NO , KC_##KM5, KC_NO , KC_##KM7 }, \
  49. /* N */ { KC_NO , KC_##KN1, KC_##KN2, KC_NO , KC_NO , KC_##KN5, KC_NO , KC_##KN7 }, \
  50. /* O */ { KC_##KO0, KC_NO , KC_NO , KC_##KO3, KC_NO , KC_##KO5, KC_NO , KC_##KO7 }, \
  51. /* P */ { KC_NO , KC_##KP1, KC_##KP2, KC_NO , KC_NO , KC_NO , KC_NO , KC_##KP7 }, \
  52. /* Q */ { KC_NO , KC_NO , KC_##KQ2, KC_NO , KC_NO , KC_NO , KC_NO , KC_##KQ7 }, \
  53. /* R */ { KC_NO , KC_NO , KC_NO , KC_NO , KC_##KR4, KC_NO , KC_NO , KC_NO } \
  54. }
  55. #define KEYCODE(layer, row, col) (pgm_read_byte(&keymaps[(layer)][(row)][(col)]))
  56. // Assign Fn key(0-7) to a layer to which switch with the Fn key pressed.
  57. static const uint8_t PROGMEM fn_layer[] = {
  58. 0, // Fn0
  59. 1, // Fn1
  60. 2, // Fn2
  61. 3, // Fn3
  62. 4, // Fn4
  63. 5, // Fn5
  64. 6, // Fn6
  65. 7 // Fn7
  66. };
  67. // Assign Fn key(0-7) to a keycode sent when release Fn key without use of the layer.
  68. // See layer.c for details.
  69. static const uint8_t PROGMEM fn_keycode[] = {
  70. KC_NO, // Fn0
  71. KC_NO, // Fn1
  72. KC_NO, // Fn2
  73. KC_NO, // Fn3
  74. KC_NO, // Fn4
  75. KC_NO, // Fn5
  76. KC_NO, // Fn6
  77. KC_NO // Fn7
  78. };
  79. /*
  80. * Tenkeyless keyboard default layout, ISO & ANSI (ISO is next to right shift,
  81. * not present on ANSI, other ISO switches move from ANSI layout but are same
  82. * switch
  83. *
  84. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  85. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  86. * `---' `---------------' `---------------' `---------------' `-----------'
  87. * ,-----------------------------------------------------------. ,-----------.
  88. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  89. * |-----------------------------------------------------------| |-----------|
  90. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  91. * |-----------------------------------------------------------| `-----------'
  92. * |Caps | A| S| D| F| G| H| J| K| L| ;| '|Return |
  93. * |-----------------------------------------------------------| ,---.
  94. * |Shft|ISO| Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  95. * |-----------------------------------------------------------| ,-----------.
  96. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  97. * `-----------------------------------------------------------' `-----------'
  98. */
  99. static const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  100. /* Layer 0: Default Layer
  101. *
  102. * ANSI:
  103. *
  104. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  105. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  106. * `---' `---------------' `---------------' `---------------' `-----------'
  107. * ,-----------------------------------------------------------. ,-----------.
  108. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  109. * |-----------------------------------------------------------| |-----------|
  110. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  111. * |-----------------------------------------------------------| `-----------'
  112. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  113. * |-----------------------------------------------------------| ,---.
  114. * |Shft | Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  115. * |-----------------------------------------------------------| ,-----------.
  116. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  117. * `-----------------------------------------------------------' `-----------'
  118. */
  119. KEYMAP(\
  120. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, BRK, \
  121. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, BSPC, INS, HOME, PGUP, \
  122. TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, BSLS, DEL, END, PGDN, \
  123. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  124. LSFT, 0, Z, X, C, V, B, N, M, COMM, DOT, SLSH, RSFT, UP, \
  125. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  126. /*
  127. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  128. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Slp|
  129. * `---' `---------------' `---------------' `---------------' `-----------'
  130. * ,-----------------------------------------------------------. ,-----------.
  131. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9|Mut|V- |V+ |Backsp | |Ins|Hom|PgU|
  132. * |-----------------------------------------------------------| |-----------|
  133. * |Tab | Q| W| E| R| T| Y| U| I|MSt|Ply|Prv|Nxt|Media| |Del|End|PgD|
  134. * |-----------------------------------------------------------| `-----------'
  135. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  136. * |-----------------------------------------------------------| ,---.
  137. * |Shft | Z| X|Clc| V| B| N| M| ,| .| /|Caps | |Up |
  138. * |-----------------------------------------------------------| ,-----------.
  139. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  140. * `-----------------------------------------------------------' `-----------'
  141. */
  142. KEYMAP(\
  143. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, SLEP, \
  144. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9,MUTE, VOLD, VOLU, BSPC, INS, HOME, PGUP, \
  145. TAB, Q, W, E, R, T, Y, U, I,MSTP,MPLY, MPRV, MNXT, MSEL, DEL, END, PGDN, \
  146. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  147. LSFT, NO, Z, X,CALC, V, B, N, M, COMM, DOT, SLSH, CAPS, UP, \
  148. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  149. };
  150. uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col)
  151. {
  152. return KEYCODE(layer, row, col);
  153. }
  154. uint8_t keymap_fn_layer(uint8_t index)
  155. {
  156. return pgm_read_byte(&fn_layer[index]);
  157. }
  158. uint8_t keymap_fn_keycode(uint8_t index)
  159. {
  160. return pgm_read_byte(&fn_keycode[index]);
  161. }