Keyboard firmwares for Atmel AVR and Cortex-M
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

action_code.h 9.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*
  2. Copyright 2013 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. #ifndef ACTION_CODE_H
  15. #define ACTION_CODE_H
  16. /* Action codes
  17. * ============
  18. * 16bit code: action_kind(4bit) + action_parameter(12bit)
  19. *
  20. *
  21. * Key Actions(00xx)
  22. * -----------------
  23. * ACT_MODS(000r):
  24. * 000r|0000|0000 0000 No action code
  25. * 000r|0000|0000 0001 Transparent code
  26. * 000r|0000| keycode Key
  27. * 000r|mods|0000 0000 Modifiers
  28. * 000r|mods| keycode Key and Modifiers
  29. * r: Left/Right flag(Left:0, Right:1)
  30. *
  31. * ACT_MODS_TAP(001r):
  32. * 0010|mods|0000 0000 Modifiers with OneShot
  33. * 0010|mods|0000 00xx (reserved)
  34. * 0010|mods| keycode Modifiers with Tap Key
  35. *
  36. *
  37. * Other Keys(01xx)
  38. * ----------------
  39. * ACT_USAGE(0100): TODO: Not needed?
  40. * 0100|00| usage(10) System control(0x80) - General Desktop page(0x01)
  41. * 0100|01| usage(10) Consumer control(0x01) - Consumer page(0x0C)
  42. * 0100|10| usage(10) (reserved)
  43. * 0100|11| usage(10) (reserved)
  44. *
  45. * ACT_MOUSEKEY(0110): TODO: Not needed?
  46. * 0101|xxxx| keycode Mouse key
  47. *
  48. * 011x|xxxx xxxx xxxx (reseved)
  49. *
  50. *
  51. * Layer Actions(10xx)
  52. * -------------------
  53. * ACT_LAYER(1000):
  54. * 1000|oo00|pppE BBBB Default Layer Bitwise operation
  55. * oo: operation(00:AND, 01:OR, 10:XOR, 11:SET)
  56. * ppp: 4-bit chunk part(0-7)
  57. * EBBBB: bits and extra bit
  58. * 1000|ooee|pppE BBBB Layer Bitwise Operation
  59. * oo: operation(00:AND, 01:OR, 10:XOR, 11:SET)
  60. * ppp: 4-bit chunk part(0-7)
  61. * eBBBB: bits and extra bit
  62. * ee: on event(00:default layer, 01:press, 10:release, 11:both)
  63. *
  64. * 1001|xxxx|xxxx xxxx (reserved)
  65. * 1001|oopp|BBBB BBBB 8-bit Bitwise Operation???
  66. *
  67. * ACT_LAYER_TAP(101x):
  68. * 101E|LLLL| keycode Invert with tap key
  69. * 101E|LLLL|1110 xxxx Reserved(0xE0-EF)
  70. * 101E|LLLL|1111 0000 Invert with tap toggle(0xF0)
  71. * 101E|LLLL|1111 0001 On/Off
  72. * 101E|LLLL|1111 0010 Off/On
  73. * 101E|LLLL|1111 0011 Set/Clear
  74. * 101E|LLLL|1111 xxxx Reserved(0xF4-FF)
  75. * ELLLL: layer(0-31)
  76. *
  77. *
  78. * Extensions(11xx)
  79. * ----------------
  80. * ACT_MACRO(1100):
  81. * 1100|opt | id(8) Macro play?
  82. * 1100|1111| id(8) Macro record?
  83. *
  84. * ACT_COMMAND(1110):
  85. * 1110|opt | id(8) Built-in Command exec
  86. *
  87. * ACT_FUNCTION(1111):
  88. * 1111| address(12) Function?
  89. * 1111|opt | id(8) Function?
  90. */
  91. enum action_kind_id {
  92. /* Key Actions */
  93. ACT_MODS = 0b0000,
  94. ACT_LMODS = 0b0000,
  95. ACT_RMODS = 0b0001,
  96. ACT_MODS_TAP = 0b0010,
  97. ACT_LMODS_TAP = 0b0010,
  98. ACT_RMODS_TAP = 0b0011,
  99. /* Other Keys */
  100. ACT_USAGE = 0b0100,
  101. ACT_MOUSEKEY = 0b0101,
  102. /* Layer Actions */
  103. ACT_LAYER = 0b1000,
  104. ACT_LAYER_TAP = 0b1010,
  105. ACT_LAYER_TAP1 = 0b1011,
  106. /* Extensions */
  107. ACT_MACRO = 0b1100,
  108. ACT_COMMAND = 0b1110,
  109. ACT_FUNCTION = 0b1111
  110. };
  111. /* Action Code Struct
  112. *
  113. * NOTE:
  114. * In avr-gcc bit field seems to be assigned from LSB(bit0) to MSB(bit15).
  115. * AVR looks like a little endian in avr-gcc.
  116. * Not portable across compiler/endianness?
  117. *
  118. * Byte order and bit order of 0x1234:
  119. * Big endian: Little endian:
  120. * -------------------- --------------------
  121. * FEDC BA98 7654 3210 0123 4567 89AB CDEF
  122. * 0001 0010 0011 0100 0010 1100 0100 1000
  123. * 0x12 0x34 0x34 0x12
  124. */
  125. typedef union {
  126. uint16_t code;
  127. struct action_kind {
  128. uint16_t param :12;
  129. uint8_t id :4;
  130. } kind;
  131. struct action_key {
  132. uint8_t code :8;
  133. uint8_t mods :4;
  134. uint8_t kind :4;
  135. } key;
  136. struct action_layer_bitop {
  137. uint8_t bits :4;
  138. uint8_t xbit :1;
  139. uint8_t part :3;
  140. uint8_t on :2;
  141. uint8_t op :2;
  142. uint8_t kind :4;
  143. } layer_bitop;
  144. struct action_layer_tap {
  145. uint8_t code :8;
  146. uint8_t val :5;
  147. uint8_t kind :3;
  148. } layer_tap;
  149. struct action_usage {
  150. uint16_t code :10;
  151. uint8_t page :2;
  152. uint8_t kind :4;
  153. } usage;
  154. struct action_command {
  155. uint8_t id :8;
  156. uint8_t opt :4;
  157. uint8_t kind :4;
  158. } command;
  159. struct action_function {
  160. uint8_t id :8;
  161. uint8_t opt :4;
  162. uint8_t kind :4;
  163. } func;
  164. } action_t;
  165. /* action utility */
  166. #define ACTION_NO 0
  167. #define ACTION_TRANSPARENT 1
  168. #define ACTION(kind, param) ((kind)<<12 | (param))
  169. /*
  170. * Key Actions
  171. */
  172. /* Mod bits: 43210
  173. * bit 0 ||||+- Control
  174. * bit 1 |||+-- Shift
  175. * bit 2 ||+--- Alt
  176. * bit 3 |+---- Gui
  177. * bit 4 +----- LR flag(Left:0, Right:1)
  178. */
  179. enum mods_bit {
  180. MOD_LCTL = 0x01,
  181. MOD_LSFT = 0x02,
  182. MOD_LALT = 0x04,
  183. MOD_LGUI = 0x08,
  184. MOD_RCTL = 0x11,
  185. MOD_RSFT = 0x12,
  186. MOD_RALT = 0x14,
  187. MOD_RGUI = 0x18,
  188. };
  189. enum mods_codes {
  190. MODS_ONESHOT = 0x00,
  191. };
  192. #define ACTION_KEY(key) ACTION(ACT_MODS, (key))
  193. #define ACTION_MODS(mods) ACTION(ACT_MODS, (mods)<<8 | 0)
  194. #define ACTION_MODS_KEY(mods, key) ACTION(ACT_MODS, (mods)<<8 | (key))
  195. #define ACTION_MODS_TAP_KEY(mods, key) ACTION(ACT_MODS_TAP, (mods)<<8 | (key))
  196. #define ACTION_MODS_ONESHOT(mods) ACTION(ACT_MODS_TAP, (mods)<<8 | MODS_ONESHOT)
  197. /*
  198. * Other Keys
  199. */
  200. enum usage_pages {
  201. PAGE_SYSTEM,
  202. PAGE_CONSUMER
  203. };
  204. #define ACTION_USAGE_SYSTEM(id) ACTION(ACT_USAGE, PAGE_SYSTEM<<10 | (id))
  205. #define ACTION_USAGE_CONSUMER(id) ACTION(ACT_USAGE, PAGE_CONSUMER<<10 | (id))
  206. #define ACTION_MOUSEKEY(key) ACTION(ACT_MOUSEKEY, key)
  207. /*
  208. * Layer Actions
  209. */
  210. enum layer_param_on {
  211. ON_PRESS = 1,
  212. ON_RELEASE = 2,
  213. ON_BOTH = 3,
  214. };
  215. enum layer_param_bit_op {
  216. OP_BIT_AND = 0,
  217. OP_BIT_OR = 1,
  218. OP_BIT_XOR = 2,
  219. OP_BIT_SET = 3,
  220. };
  221. enum layer_pram_tap_op {
  222. OP_TAP_TOGGLE = 0xF0,
  223. OP_ON_OFF,
  224. OP_OFF_ON,
  225. OP_SET_CLEAR,
  226. };
  227. #define ACTION_LAYER_BITOP(op, part, bits, on) (ACT_LAYER<<12 | (op)<<10 | (on)<<8 | (part)<<5 | ((bits)&0x1f))
  228. #define ACTION_LAYER_TAP(layer, key) (ACT_LAYER_TAP<<12 | (layer)<<8 | (key))
  229. /* Default Layer */
  230. #define ACTION_DEFAULT_LAYER_SET(layer) ACTION_DEFAULT_LAYER_BIT_SET((layer)/4, 1<<((layer)%4))
  231. /* Layer Operation */
  232. #define ACTION_LAYER_CLEAR(on) ACTION_LAYER_BIT_AND(0, 0, (on))
  233. #define ACTION_LAYER_MOMENTARY(layer) ACTION_LAYER_ON_OFF(layer)
  234. #define ACTION_LAYER_TOGGLE(layer) ACTION_LAYER_INVERT(layer, ON_RELEASE)
  235. #define ACTION_LAYER_INVERT(layer, on) ACTION_LAYER_BIT_XOR((layer)/4, 1<<((layer)%4), (on))
  236. #define ACTION_LAYER_ON(layer, on) ACTION_LAYER_BIT_OR( (layer)/4, 1<<((layer)%4), (on))
  237. #define ACTION_LAYER_OFF(layer, on) ACTION_LAYER_BIT_AND((layer)/4, ~(1<<((layer)%4)), (on))
  238. #define ACTION_LAYER_SET(layer, on) ACTION_LAYER_BIT_SET((layer)/4, 1<<((layer)%4), (on))
  239. #define ACTION_LAYER_ON_OFF(layer) ACTION_LAYER_TAP((layer), OP_ON_OFF)
  240. #define ACTION_LAYER_OFF_ON(layer) ACTION_LAYER_TAP((layer), OP_OFF_ON)
  241. #define ACTION_LAYER_SET_CLEAR(layer) ACTION_LAYER_TAP((layer), OP_SET_CLEAR)
  242. /* With Tapping */
  243. #define ACTION_LAYER_TAP_KEY(layer, key) ACTION_LAYER_TAP((layer), (key))
  244. #define ACTION_LAYER_TAP_TOGGLE(layer) ACTION_LAYER_TAP((layer), OP_TAP_TOGGLE)
  245. /* Bitwise Operation */
  246. #define ACTION_LAYER_BIT_AND(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), (on))
  247. #define ACTION_LAYER_BIT_OR( part, bits, on) ACTION_LAYER_BITOP(OP_BIT_OR, (part), (bits), (on))
  248. #define ACTION_LAYER_BIT_XOR(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), (on))
  249. #define ACTION_LAYER_BIT_SET(part, bits, on) ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), (on))
  250. /* Default Layer Bitwise Operation */
  251. #define ACTION_DEFAULT_LAYER_BIT_AND(part, bits) ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), 0)
  252. #define ACTION_DEFAULT_LAYER_BIT_OR( part, bits) ACTION_LAYER_BITOP(OP_BIT_OR, (part), (bits), 0)
  253. #define ACTION_DEFAULT_LAYER_BIT_XOR(part, bits) ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), 0)
  254. #define ACTION_DEFAULT_LAYER_BIT_SET(part, bits) ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), 0)
  255. /*
  256. * Extensions
  257. */
  258. /* Macro */
  259. #define ACTION_MACRO(id) ACTION(ACT_MACRO, (id))
  260. #define ACTION_MACRO_TAP(id) ACTION(ACT_MACRO, FUNC_TAP<<8 | (id))
  261. #define ACTION_MACRO_OPT(id, opt) ACTION(ACT_MACRO, (opt)<<8 | (id))
  262. /* Command */
  263. #define ACTION_COMMAND(id, opt) ACTION(ACT_COMMAND, (opt)<<8 | (addr))
  264. /* Function */
  265. enum function_opts {
  266. FUNC_TAP = 0x8, /* indciates function is tappable */
  267. };
  268. #define ACTION_FUNCTION(id) ACTION(ACT_FUNCTION, (id))
  269. #define ACTION_FUNCTION_TAP(id) ACTION(ACT_FUNCTION, FUNC_TAP<<8 | (id))
  270. #define ACTION_FUNCTION_OPT(id, opt) ACTION(ACT_FUNCTION, (opt)<<8 | (id))
  271. #endif /* ACTION_CODE_H */