]> git.donarmstrong.com Git - tmk_firmware.git/blob - common/usb_keycodes.h
Add USB to USB converter. unmature.
[tmk_firmware.git] / common / usb_keycodes.h
1 /*
2 Copyright 2011 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 /* 
19  * Key codes: HID Keyboard/Keypad Page(0x07)
20  * http://www.usb.org/developers/devclass_docs/Hut1_12.pdf
21  */
22 #ifndef USB_KEYCODES_H
23 #define USB_KEYCODES_H
24
25
26 #define IS_ERROR(code)           (KB_ROLL_OVER <= (code) && (code) <= KB_UNDEFINED)
27 #define IS_ANY(code)             (KB_A         <= (code))
28 #define IS_KEY(code)             (KB_A         <= (code) && (code) <= KB_EXSEL)
29 #define IS_MOD(code)             (KB_LCTRL     <= (code) && (code) <= KB_RGUI)
30 #define IS_FN(code)              (KB_FN0       <= (code) && (code) <= KB_FN7)
31 #define IS_MOUSEKEY(code)        (KB_MS_UP     <= (code) && (code) <= KB_MS_WH_RIGHT)
32 #define IS_MOUSEKEY_MOVE(code)   (KB_MS_UP     <= (code) && (code) <= KB_MS_RIGHT)
33 #define IS_MOUSEKEY_BUTTON(code) (KB_MS_BTN1   <= (code) && (code) <= KB_MS_BTN5)
34 #define IS_MOUSEKEY_WHEEL(code)  (KB_MS_WH_UP  <= (code) && (code) <= KB_MS_WH_RIGHT)
35
36 #define MOD_BIT(code) (1<<((code) & 0x07))
37 #define FN_BIT(code)  (1<<((code) - KB_FN0))
38
39
40 /* Short names */
41 #define KB_LCTL KB_LCTRL
42 #define KB_RCTL KB_RCTRL
43 #define KB_LSFT KB_LSHIFT
44 #define KB_RSFT KB_RSHIFT
45 #define KB_ESC  KB_ESCAPE
46 #define KB_BSPC KB_BSPACE
47 #define KB_ENT  KB_ENTER
48 #define KB_DEL  KB_DELETE
49 #define KB_INS  KB_INSERT
50 #define KB_CAPS KB_CAPSLOCK
51 #define KB_RGHT KB_RIGHT
52 #define KB_PGDN KB_PGDOWN
53 #define KB_PSCR KB_PSCREEN
54 #define KB_SLCK KB_SCKLOCK
55 #define KB_PAUS KB_PAUSE
56 #define KB_BRK  KB_PAUSE
57 #define KB_NLCK KB_NUMLOCK
58 #define KB_SPC  KB_SPACE
59 #define KB_MINS KB_MINUS
60 #define KB_EQL  KB_EQUAL
61 #define KB_GRV  KB_GRAVE
62 #define KB_RBRC KB_RBRACKET
63 #define KB_LBRC KB_LBRACKET
64 #define KB_COMM KB_COMMA
65 #define KB_BSLS KB_BSLASH
66 #define KB_SLSH KB_SLASH
67 #define KB_SCLN KB_SCOLON
68 #define KB_QUOT KB_QUOTE
69 #define KB_APP  KB_APPLICATION
70 #define KB_NUHS KB_NONUS_HASH
71 #define KB_NUBS KB_NONUS_BSLASH
72 #define KB_ERAS KB_ALT_ERASE,
73 #define KB_CLR  KB_CLEAR
74 /* for Japanese */
75 #define KB_ZKHK KB_GRAVE
76 #define KB_RO   KB_INT1
77 #define KB_KANA KB_INT2
78 #define KB_JYEN KB_INT3
79 #define KB_HENK KB_INT4
80 #define KB_MHEN KB_INT5
81 /* Keypad */
82 #define KB_P1   KB_KP_1
83 #define KB_P2   KB_KP_2
84 #define KB_P3   KB_KP_3
85 #define KB_P4   KB_KP_4
86 #define KB_P5   KB_KP_5
87 #define KB_P6   KB_KP_6
88 #define KB_P7   KB_KP_7
89 #define KB_P8   KB_KP_8
90 #define KB_P9   KB_KP_9
91 #define KB_P0   KB_KP_0
92 #define KB_PDOT KB_KP_DOT
93 #define KB_PCMM KB_KP_COMMA
94 #define KB_PSLS KB_KP_SLASH
95 #define KB_PAST KB_KP_ASTERISK
96 #define KB_PMNS KB_KP_MINUS
97 #define KB_PPLS KB_KP_PLUS
98 #define KB_PEQL KB_KP_EQUAL
99 #define KB_PENT KB_KP_ENTER
100 /* Mousekey */
101 #define KB_MS_U KB_MS_UP
102 #define KB_MS_D KB_MS_DOWN
103 #define KB_MS_L KB_MS_LEFT
104 #define KB_MS_R KB_MS_RIGHT
105 #define KB_BTN1 KB_MS_BTN1
106 #define KB_BTN2 KB_MS_BTN2
107 #define KB_BTN3 KB_MS_BTN3
108 #define KB_BTN4 KB_MS_BTN4
109 #define KB_BTN5 KB_MS_BTN5
110 #define KB_WH_U KB_MS_WH_UP
111 #define KB_WH_D KB_MS_WH_DOWN
112 #define KB_WH_L KB_MS_WH_LEFT
113 #define KB_WH_R KB_MS_WH_RIGHT
114 /* Sytem Control & Consumer usage */
115 #define KB_PWR  KB_SYSTEM_POWER
116 #define KB_SLEP KB_SYSTEM_SLEEP
117 #define KB_WAKE KB_SYSTEM_WAKE
118 #define KB_MUTE KB_AUDIO_MUTE
119 #define KB_VOLU KB_AUDIO_VOL_UP
120 #define KB_VOLD KB_AUDIO_VOL_DOWN
121 #define KB_MNXT KB_MEDIA_NEXT_TRACK
122 #define KB_MPRV KB_MEDIA_PREV_TRACK
123 #define KB_MSTP KB_MEDIA_STOP
124 #define KB_MPLY KB_MEDIA_PLAY_PAUSE
125 #define KB_MSEL KB_MEDIA_SELECT
126 #define KB_MAIL KB_MAIL
127 #define KB_CALC KB_CALCULATOR
128 #define KB_MYCM KB_MY_COMPUTER
129 #define KB_WSCH KB_WWW_SEARCH
130 #define KB_WHOM KB_WWW_HOME
131 #define KB_WBAK KB_WWW_BACK
132 #define KB_WFWD KB_WWW_FORWARD
133 #define KB_WSTP KB_WWW_STOP
134 #define KB_WREF KB_WWW_REFRESH
135 #define KB_WFAV KB_WWW_FAVORITES
136
137
138 /* Special keycode */
139 enum special_keycodes {
140     /* System Control */
141     KB_SYSTEM_POWER = 0xB0,
142     KB_SYSTEM_SLEEP,
143     KB_SYSTEM_WAKE,
144
145     /* Consumer Page */
146     KB_AUDIO_MUTE,
147     KB_AUDIO_VOL_UP,
148     KB_AUDIO_VOL_DOWN,
149     KB_MEDIA_NEXT_TRACK,
150     KB_MEDIA_PREV_TRACK,
151     KB_MEDIA_STOP,
152     KB_MEDIA_PLAY_PAUSE,
153     KB_MEDIA_SELECT,
154     KB_MAIL,
155     KB_CALCULATOR,
156     KB_MY_COMPUTER,
157     KB_WWW_SEARCH,
158     KB_WWW_HOME,
159     KB_WWW_BACK,        /* 0xC0 */
160     KB_WWW_FORWARD,
161     KB_WWW_STOP,
162     KB_WWW_REFRESH,
163     KB_WWW_FAVORITES,
164
165     /* reserve 0xE0-E7 for Modifiers */
166
167     /* Layer Switching */
168     KB_FN0 = 0xE8,
169     KB_FN1,
170     KB_FN2,
171     KB_FN3,
172     KB_FN4,
173     KB_FN5,
174     KB_FN6,
175     KB_FN7,
176
177     /* Mousekey */
178     KB_MS_UP = 0xF0,
179     KB_MS_DOWN,
180     KB_MS_LEFT,
181     KB_MS_RIGHT,
182     KB_MS_BTN1,
183     KB_MS_BTN2,
184     KB_MS_BTN3,
185     KB_MS_BTN4,
186     KB_MS_BTN5,
187     /* Mousekey wheel */
188     KB_MS_WH_UP,
189     KB_MS_WH_DOWN,
190     KB_MS_WH_LEFT,
191     KB_MS_WH_RIGHT,
192 };
193
194 enum keycodes {
195     KB_NO = 0,
196     KB_ROLL_OVER,
197     KB_POST_FAIL,
198     KB_UNDEFINED,
199     KB_A,
200     KB_B,
201     KB_C,
202     KB_D,
203     KB_E,
204     KB_F,
205     KB_G,
206     KB_H,
207     KB_I,
208     KB_J,
209     KB_K,
210     KB_L,
211     KB_M,               /* 0x10 */
212     KB_N,
213     KB_O,
214     KB_P,
215     KB_Q,
216     KB_R,
217     KB_S,
218     KB_T,
219     KB_U,
220     KB_V,
221     KB_W,
222     KB_X,
223     KB_Y,
224     KB_Z,
225     KB_1,
226     KB_2,
227     KB_3,               /* 0x20 */
228     KB_4,
229     KB_5,
230     KB_6,
231     KB_7,
232     KB_8,
233     KB_9,
234     KB_0,
235     KB_ENTER,
236     KB_ESCAPE,
237     KB_BSPACE,
238     KB_TAB,
239     KB_SPACE,
240     KB_MINUS,
241     KB_EQUAL,
242     KB_LBRACKET,
243     KB_RBRACKET,        /* 0x30 */
244     KB_BSLASH,          /* \ (and |) */
245     KB_NONUS_HASH,      /* Non-US # and ~ */
246     KB_SCOLON,          /* ; (and :) */
247     KB_QUOTE,           /* ' and " */
248     KB_GRAVE,           /* Grave accent and tilde */
249     KB_COMMA,           /* , and < */
250     KB_DOT,             /* . and > */
251     KB_SLASH,           /* / and ? */
252     KB_CAPSLOCK,
253     KB_F1,
254     KB_F2,
255     KB_F3,
256     KB_F4,
257     KB_F5,
258     KB_F6,
259     KB_F7,              /* 0x40 */
260     KB_F8,
261     KB_F9,
262     KB_F10,
263     KB_F11,
264     KB_F12,
265     KB_PSCREEN,
266     KB_SCKLOCK,
267     KB_PAUSE,
268     KB_INSERT,
269     KB_HOME,
270     KB_PGUP,
271     KB_DELETE,
272     KB_END,
273     KB_PGDOWN,
274     KB_RIGHT,
275     KB_LEFT,            /* 0x50 */
276     KB_DOWN,
277     KB_UP,
278     KB_NUMLOCK,
279     KB_KP_SLASH,
280     KB_KP_ASTERISK,
281     KB_KP_MINUS,
282     KB_KP_PLUS,
283     KB_KP_ENTER,
284     KB_KP_1,
285     KB_KP_2,
286     KB_KP_3,
287     KB_KP_4,
288     KB_KP_5,
289     KB_KP_6,
290     KB_KP_7,
291     KB_KP_8,            /* 0x60 */
292     KB_KP_9,
293     KB_KP_0,
294     KB_KP_DOT,
295     KB_NONUS_BSLASH,    /* Non-US \ and | */
296     KB_APPLICATION,
297     KB_POWER,
298     KB_KP_EQUAL,
299     KB_F13,
300     KB_F14,
301     KB_F15,
302     KB_F16,
303     KB_F17,
304     KB_F18,
305     KB_F19,
306     KB_F20,
307     KB_F21,             /* 0x70 */
308     KB_F22,
309     KB_F23,
310     KB_F24,
311     KB_EXECUTE,
312     KB_HELP,
313     KB_MENU,
314     KB_SELECT,
315     KB_STOP,
316     KB_AGAIN,
317     KB_UNDO,
318     KB_CUT,
319     KB_COPY,
320     KB_PASTE,
321     KB_FIND,
322     KB__MUTE,
323     KB__VOLUP,          /* 0x80 */
324     KB__VOLDOWN,
325     KB_LOCKING_CAPS,    /* locking Caps Lock */
326     KB_LOCKING_NUM,     /* locking Num Lock */
327     KB_LOCKING_SCROLL,  /* locking Scroll Lock */
328     KB_KP_COMMA,
329     KB_KP_EQUAL_AS400,  /* equal sign on AS/400 */
330     KB_INT1,
331     KB_INT2,
332     KB_INT3,
333     KB_INT4,
334     KB_INT5,
335     KB_INT6,
336     KB_INT7,
337     KB_INT8,
338     KB_INT9,
339     KB_LANG1,           /* 0x90 */
340     KB_LANG2,
341     KB_LANG3,
342     KB_LANG4,
343     KB_LANG5,
344     KB_LANG6,
345     KB_LANG7,
346     KB_LANG8,
347     KB_LANG9,
348     KB_ALT_ERASE,
349     KB_SYSREQ,
350     KB_CANCEL,
351     KB_CLEAR,
352     KB_PRIOR,
353     KB_RETURN,
354     KB_SEPARATOR,
355     KB_OUT,             /* 0xA0 */
356     KB_OPER,
357     KB_CLEAR_AGAIN,
358     KB_CRSEL,
359     KB_EXSEL,
360
361     /* NOTE: 0xB0-DF are used as special_keycodes */
362 #if 0
363     KB_KP_00 = 0xB0,
364     KB_KP_000,
365     KB_THOUSANDS_SEPARATOR,
366     KB_DECIMAL_SEPARATOR,
367     KB_CURRENCY_UNIT,
368     KB_CURRENCY_SUB_UNIT,
369     KB_KP_LPAREN,
370     KB_KP_RPAREN,
371     KB_KP_LCBRACKET,    /* { */
372     KB_KP_RCBRACKET,    /* } */
373     KB_KP_TAB,
374     KB_KP_BSPACE,
375     KB_KP_A,
376     KB_KP_B,
377     KB_KP_C,
378     KB_KP_D,
379     KB_KP_E,            /* 0xC0 */
380     KB_KP_F,
381     KB_KP_XOR,
382     KB_KP_HAT,
383     KB_KP_PERC,
384     KB_KP_LT,
385     KB_KP_GT,
386     KB_KP_AND,
387     KB_KP_LAZYAND,
388     KB_KP_OR,
389     KB_KP_LAZYOR,
390     KB_KP_COLON,
391     KB_KP_HASH,
392     KB_KP_SPACE,
393     KB_KP_ATMARK,
394     KB_KP_EXCLAMATION,
395     KB_KP_MEM_STORE,    /* 0xD0 */
396     KB_KP_MEM_RECALL,
397     KB_KP_MEM_CLEAR,
398     KB_KP_MEM_ADD,
399     KB_KP_MEM_SUB,
400     KB_KP_MEM_MUL,
401     KB_KP_MEM_DIV,
402     KB_KP_PLUS_MINUS,
403     KB_KP_CLEAR,
404     KB_KP_CLEAR_ENTRY,
405     KB_KP_BINARY,
406     KB_KP_OCTAL,
407     KB_KP_DECIMAL,
408     KB_KP_HEXADECIMAL,
409 #endif
410
411     /* Modifiers */
412     KB_LCTRL = 0xE0,
413     KB_LSHIFT,
414     KB_LALT,
415     KB_LGUI,
416     KB_RCTRL,
417     KB_RSHIFT,
418     KB_RALT,
419     KB_RGUI,
420
421     /* NOTE: 0xE8-FF are used as special_keycodes */
422 };
423
424 #endif /* USB_KEYCODES_H */