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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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, KH1, 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_##KH1, 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 between Left Shift
  81. * and Z, and the ANSI \ key above Return/Enter is used for the additional ISO
  82. * switch in the ASD row next to enter. Use NUBS as keycode for the first and
  83. * NUHS as the keycode for the second.
  84. *
  85. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  86. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  87. * `---' `---------------' `---------------' `---------------' `-----------'
  88. * ,-----------------------------------------------------------. ,-----------.
  89. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  90. * |-----------------------------------------------------------| |-----------|
  91. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  92. * |-----------------------------------------------------------| `-----------'
  93. * |Caps | A| S| D| F| G| H| J| K| L| ;| '|Return |
  94. * |-----------------------------------------------------------| ,---.
  95. * |Shft|ISO| Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  96. * |-----------------------------------------------------------| ,-----------.
  97. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  98. * `-----------------------------------------------------------' `-----------'
  99. */
  100. static const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  101. /* Layer 0: Default Layer
  102. *
  103. * ANSI:
  104. *
  105. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  106. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Pau|
  107. * `---' `---------------' `---------------' `---------------' `-----------'
  108. * ,-----------------------------------------------------------. ,-----------.
  109. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp | |Ins|Hom|PgU|
  110. * |-----------------------------------------------------------| |-----------|
  111. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| |Del|End|PgD|
  112. * |-----------------------------------------------------------| `-----------'
  113. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  114. * |-----------------------------------------------------------| ,---.
  115. * |Shft|iso| Z| X| C| V| B| N| M| ,| .| /|Shift | |Up |
  116. * |-----------------------------------------------------------| ,-----------.
  117. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  118. * `-----------------------------------------------------------' `-----------'
  119. */
  120. KEYMAP(\
  121. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, BRK, \
  122. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, BSPC, INS, HOME, PGUP, \
  123. TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, BSLS, DEL, END, PGDN, \
  124. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  125. LSFT, NUBS, Z, X, C, V, B, N, M, COMM, DOT, SLSH, RSFT, UP, \
  126. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  127. /* EXAMPLE ISO keymap, see the NUBS and NUHS keycodes
  128. * KEYMAP(\
  129. * ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, BRK, \
  130. * GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS, EQL, BSPC, INS, HOME, PGUP, \
  131. * TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC, RBRC, NUHS, DEL, END, PGDN, \
  132. * CAPS, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  133. * LSFT, NUBS, Z, X, C, V, B, N, M, COMM, DOT, SLSH, RSFT, UP, \
  134. * LCTL, FN1, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  135. */
  136. /*
  137. * ,---. ,---------------. ,---------------. ,---------------. ,-----------.
  138. * |Esc| |F1 |F2 |F3 |F4 | |F5 |F6 |F7 |F8 | |F9 |F10|F11|F12| |PrS|ScL|Slp|
  139. * `---' `---------------' `---------------' `---------------' `-----------'
  140. * ,-----------------------------------------------------------. ,-----------.
  141. * |~ | 1| 2| 3| 4| 5| 6| 7| 8| 9|Mut|V- |V+ |Backsp | |Ins|Hom|PgU|
  142. * |-----------------------------------------------------------| |-----------|
  143. * |Tab | Q| W| E| R| T| Y| U| I|MSt|Ply|Prv|Nxt|Media| |Del|End|PgD|
  144. * |-----------------------------------------------------------| `-----------'
  145. * |FN1 | A| S| D| F| G| H| J| K| L| ;| '|Return |
  146. * |-----------------------------------------------------------| ,---.
  147. * |Shft|iso| Z| X|Clc| V| B| N| M| ,| .| /|Caps | |Up |
  148. * |-----------------------------------------------------------| ,-----------.
  149. * |Ctl|Gui|Alt| Space |Alt|Gui|App|Ctl| |Lef|Dow|Rig|
  150. * `-----------------------------------------------------------' `-----------'
  151. */
  152. KEYMAP(\
  153. ESC, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PSCR, SLCK, SLEP, \
  154. GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9,MUTE, VOLD, VOLU, BSPC, INS, HOME, PGUP, \
  155. TAB, Q, W, E, R, T, Y, U, I,MSTP,MPLY, MPRV, MNXT, MSEL, DEL, END, PGDN, \
  156. FN1, A, S, D, F, G, H, J, K, L, SCLN, QUOT, ENT, \
  157. LSFT, NUBS, Z, X,CALC, V, B, N, M, COMM, DOT, SLSH, CAPS, UP, \
  158. LCTL, LGUI, LALT, SPC, RALT, RGUI, APP, RCTL, LEFT, DOWN, RGHT),
  159. };
  160. uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col)
  161. {
  162. return KEYCODE(layer, row, col);
  163. }
  164. uint8_t keymap_fn_layer(uint8_t index)
  165. {
  166. return pgm_read_byte(&fn_layer[index]);
  167. }
  168. uint8_t keymap_fn_keycode(uint8_t index)
  169. {
  170. return pgm_read_byte(&fn_keycode[index]);
  171. }