-
-
- #ifndef KEYLAYOUTS_H__
- #define KEYLAYOUTS_H__
-
- #include <stdint.h>
- #include <avr/pgmspace.h>
-
- #ifdef __cplusplus
- extern "C"{
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define MODIFIERKEY_CTRL ( 0x01 | 0x8000 )
- #define MODIFIERKEY_SHIFT ( 0x02 | 0x8000 )
- #define MODIFIERKEY_ALT ( 0x04 | 0x8000 )
- #define MODIFIERKEY_GUI ( 0x08 | 0x8000 )
- #define MODIFIERKEY_LEFT_CTRL ( 0x01 | 0x8000 )
- #define MODIFIERKEY_LEFT_SHIFT ( 0x02 | 0x8000 )
- #define MODIFIERKEY_LEFT_ALT ( 0x04 | 0x8000 )
- #define MODIFIERKEY_LEFT_GUI ( 0x08 | 0x8000 )
- #define MODIFIERKEY_RIGHT_CTRL ( 0x10 | 0x8000 )
- #define MODIFIERKEY_RIGHT_SHIFT ( 0x20 | 0x8000 )
- #define MODIFIERKEY_RIGHT_ALT ( 0x40 | 0x8000 )
- #define MODIFIERKEY_RIGHT_GUI ( 0x80 | 0x8000 )
-
- #define KEY_MEDIA_VOLUME_INC 0x01
- #define KEY_MEDIA_VOLUME_DEC 0x02
- #define KEY_MEDIA_MUTE 0x04
- #define KEY_MEDIA_PLAY_PAUSE 0x08
- #define KEY_MEDIA_NEXT_TRACK 0x10
- #define KEY_MEDIA_PREV_TRACK 0x20
- #define KEY_MEDIA_STOP 0x40
- #define KEY_MEDIA_EJECT 0x80
-
- #define KEY_A ( 4 | 0x4000 )
- #define KEY_B ( 5 | 0x4000 )
- #define KEY_C ( 6 | 0x4000 )
- #define KEY_D ( 7 | 0x4000 )
- #define KEY_E ( 8 | 0x4000 )
- #define KEY_F ( 9 | 0x4000 )
- #define KEY_G ( 10 | 0x4000 )
- #define KEY_H ( 11 | 0x4000 )
- #define KEY_I ( 12 | 0x4000 )
- #define KEY_J ( 13 | 0x4000 )
- #define KEY_K ( 14 | 0x4000 )
- #define KEY_L ( 15 | 0x4000 )
- #define KEY_M ( 16 | 0x4000 )
- #define KEY_N ( 17 | 0x4000 )
- #define KEY_O ( 18 | 0x4000 )
- #define KEY_P ( 19 | 0x4000 )
- #define KEY_Q ( 20 | 0x4000 )
- #define KEY_R ( 21 | 0x4000 )
- #define KEY_S ( 22 | 0x4000 )
- #define KEY_T ( 23 | 0x4000 )
- #define KEY_U ( 24 | 0x4000 )
- #define KEY_V ( 25 | 0x4000 )
- #define KEY_W ( 26 | 0x4000 )
- #define KEY_X ( 27 | 0x4000 )
- #define KEY_Y ( 28 | 0x4000 )
- #define KEY_Z ( 29 | 0x4000 )
- #define KEY_1 ( 30 | 0x4000 )
- #define KEY_2 ( 31 | 0x4000 )
- #define KEY_3 ( 32 | 0x4000 )
- #define KEY_4 ( 33 | 0x4000 )
- #define KEY_5 ( 34 | 0x4000 )
- #define KEY_6 ( 35 | 0x4000 )
- #define KEY_7 ( 36 | 0x4000 )
- #define KEY_8 ( 37 | 0x4000 )
- #define KEY_9 ( 38 | 0x4000 )
- #define KEY_0 ( 39 | 0x4000 )
- #define KEY_ENTER ( 40 | 0x4000 )
- #define KEY_ESC ( 41 | 0x4000 )
- #define KEY_BACKSPACE ( 42 | 0x4000 )
- #define KEY_TAB ( 43 | 0x4000 )
- #define KEY_SPACE ( 44 | 0x4000 )
- #define KEY_MINUS ( 45 | 0x4000 )
- #define KEY_EQUAL ( 46 | 0x4000 )
- #define KEY_LEFT_BRACE ( 47 | 0x4000 )
- #define KEY_RIGHT_BRACE ( 48 | 0x4000 )
- #define KEY_BACKSLASH ( 49 | 0x4000 )
- #define KEY_NON_US_NUM ( 50 | 0x4000 )
- #define KEY_SEMICOLON ( 51 | 0x4000 )
- #define KEY_QUOTE ( 52 | 0x4000 )
- #define KEY_TILDE ( 53 | 0x4000 )
- #define KEY_COMMA ( 54 | 0x4000 )
- #define KEY_PERIOD ( 55 | 0x4000 )
- #define KEY_SLASH ( 56 | 0x4000 )
- #define KEY_CAPS_LOCK ( 57 | 0x4000 )
- #define KEY_F1 ( 58 | 0x4000 )
- #define KEY_F2 ( 59 | 0x4000 )
- #define KEY_F3 ( 60 | 0x4000 )
- #define KEY_F4 ( 61 | 0x4000 )
- #define KEY_F5 ( 62 | 0x4000 )
- #define KEY_F6 ( 63 | 0x4000 )
- #define KEY_F7 ( 64 | 0x4000 )
- #define KEY_F8 ( 65 | 0x4000 )
- #define KEY_F9 ( 66 | 0x4000 )
- #define KEY_F10 ( 67 | 0x4000 )
- #define KEY_F11 ( 68 | 0x4000 )
- #define KEY_F12 ( 69 | 0x4000 )
- #define KEY_PRINTSCREEN ( 70 | 0x4000 )
- #define KEY_SCROLL_LOCK ( 71 | 0x4000 )
- #define KEY_PAUSE ( 72 | 0x4000 )
- #define KEY_INSERT ( 73 | 0x4000 )
- #define KEY_HOME ( 74 | 0x4000 )
- #define KEY_PAGE_UP ( 75 | 0x4000 )
- #define KEY_DELETE ( 76 | 0x4000 )
- #define KEY_END ( 77 | 0x4000 )
- #define KEY_PAGE_DOWN ( 78 | 0x4000 )
- #define KEY_RIGHT ( 79 | 0x4000 )
- #define KEY_LEFT ( 80 | 0x4000 )
- #define KEY_DOWN ( 81 | 0x4000 )
- #define KEY_UP ( 82 | 0x4000 )
- #define KEY_NUM_LOCK ( 83 | 0x4000 )
- #define KEYPAD_SLASH ( 84 | 0x4000 )
- #define KEYPAD_ASTERIX ( 85 | 0x4000 )
- #define KEYPAD_MINUS ( 86 | 0x4000 )
- #define KEYPAD_PLUS ( 87 | 0x4000 )
- #define KEYPAD_ENTER ( 88 | 0x4000 )
- #define KEYPAD_1 ( 89 | 0x4000 )
- #define KEYPAD_2 ( 90 | 0x4000 )
- #define KEYPAD_3 ( 91 | 0x4000 )
- #define KEYPAD_4 ( 92 | 0x4000 )
- #define KEYPAD_5 ( 93 | 0x4000 )
- #define KEYPAD_6 ( 94 | 0x4000 )
- #define KEYPAD_7 ( 95 | 0x4000 )
- #define KEYPAD_8 ( 96 | 0x4000 )
- #define KEYPAD_9 ( 97 | 0x4000 )
- #define KEYPAD_0 ( 98 | 0x4000 )
- #define KEYPAD_PERIOD ( 99 | 0x4000 )
- #define KEY_MENU ( 101 | 0x4000 )
- #define KEY_F13 ( 104 | 0x4000 )
- #define KEY_F14 ( 105 | 0x4000 )
- #define KEY_F15 ( 106 | 0x4000 )
- #define KEY_F16 ( 107 | 0x4000 )
- #define KEY_F17 ( 108 | 0x4000 )
- #define KEY_F18 ( 109 | 0x4000 )
- #define KEY_F19 ( 110 | 0x4000 )
- #define KEY_F20 ( 111 | 0x4000 )
- #define KEY_F21 ( 112 | 0x4000 )
- #define KEY_F22 ( 113 | 0x4000 )
- #define KEY_F23 ( 114 | 0x4000 )
- #define KEY_F24 ( 115 | 0x4000 )
-
-
-
- #define KEY_UP_ARROW KEY_UP
- #define KEY_DOWN_ARROW KEY_DOWN
- #define KEY_LEFT_ARROW KEY_LEFT
- #define KEY_RIGHT_ARROW KEY_RIGHT
- #define KEY_RETURN KEY_ENTER
- #define KEY_LEFT_CTRL MODIFIERKEY_LEFT_CTRL
- #define KEY_LEFT_SHIFT MODIFIERKEY_LEFT_SHIFT
- #define KEY_LEFT_ALT MODIFIERKEY_LEFT_ALT
- #define KEY_LEFT_GUI MODIFIERKEY_LEFT_GUI
- #define KEY_RIGHT_CTRL MODIFIERKEY_RIGHT_CTRL
- #define KEY_RIGHT_SHIFT MODIFIERKEY_RIGHT_SHIFT
- #define KEY_RIGHT_ALT MODIFIERKEY_RIGHT_ALT
- #define KEY_RIGHT_GUI MODIFIERKEY_RIGHT_GUI
-
-
-
-
-
-
-
- #ifdef LAYOUT_US_ENGLISH
-
- #define SHIFT_MASK 0x40
- #define KEYCODE_TYPE uint8_t
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_QUOTE + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 KEY_QUOTE
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_8 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_SLASH
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_3B KEY_SEMICOLON
- #define ASCII_3C KEY_COMMA + SHIFT_MASK
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_PERIOD + SHIFT_MASK
- #define ASCII_3F KEY_SLASH + SHIFT_MASK
- #define ASCII_40 KEY_2 + SHIFT_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE
- #define ASCII_5C KEY_BACKSLASH
- #define ASCII_5D KEY_RIGHT_BRACE
- #define ASCII_5E KEY_6 + SHIFT_MASK
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 KEY_TILDE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_LEFT_BRACE + SHIFT_MASK
- #define ASCII_7C KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_7D KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_7E KEY_TILDE + SHIFT_MASK
- #define ASCII_7F KEY_BACKSPACE
-
- #endif
-
-
-
-
- #ifdef LAYOUT_US_INTERNATIONAL
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_6 + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_QUOTE
- #define DEADKEY_GRAVE_ACCENT KEY_TILDE
- #define DEADKEY_TILDE KEY_TILDE + SHIFT_MASK
- #define DEADKEY_DIAERESIS KEY_QUOTE + SHIFT_MASK
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 DIAERESIS_BITS + KEY_SPACE
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_8 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_SLASH
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_3B KEY_SEMICOLON
- #define ASCII_3C KEY_COMMA + SHIFT_MASK
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_PERIOD + SHIFT_MASK
- #define ASCII_3F KEY_SLASH + SHIFT_MASK
- #define ASCII_40 KEY_2 + SHIFT_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE
- #define ASCII_5C KEY_BACKSLASH
- #define ASCII_5D KEY_RIGHT_BRACE
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_LEFT_BRACE + SHIFT_MASK
- #define ASCII_7C KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_7D KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 KEY_1 + ALTGR_MASK
- #define ISO_8859_1_A2 KEY_C + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_A3 KEY_4 + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_A4 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_A5 KEY_MINUS + ALTGR_MASK
- #define ISO_8859_1_A6 KEY_BACKSLASH + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_A7 KEY_S + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_A8 KEY_QUOTE + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_A9 KEY_C + ALTGR_MASK
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB KEY_LEFT_BRACE + ALTGR_MASK
- #define ISO_8859_1_AC KEY_BACKSLASH + ALTGR_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE KEY_R + ALTGR_MASK
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_SEMICOLON + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 KEY_2 + ALTGR_MASK
- #define ISO_8859_1_B3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_B4 KEY_QUOTE + ALTGR_MASK
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 KEY_SEMICOLON + ALTGR_MASK
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 KEY_1 + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB KEY_RIGHT_BRACE + ALTGR_MASK
- #define ISO_8859_1_BC KEY_6 + ALTGR_MASK
- #define ISO_8859_1_BD KEY_7 + ALTGR_MASK
- #define ISO_8859_1_BE KEY_8 + ALTGR_MASK
- #define ISO_8859_1_BF KEY_SLASH + ALTGR_MASK
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 KEY_A + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 KEY_Q + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C5 KEY_W + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_Z + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C7 KEY_COMMA + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 KEY_E + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD KEY_I + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_D + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D1 KEY_N + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 KEY_O + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 KEY_P + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D7 KEY_EQUAL + ALTGR_MASK
- #define ISO_8859_1_D8 KEY_L + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA KEY_U + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC KEY_Y + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_T + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DF KEY_S + ALTGR_MASK
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 KEY_A + ALTGR_MASK
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 KEY_W + ALTGR_MASK
- #define ISO_8859_1_E6 KEY_Z + ALTGR_MASK
- #define ISO_8859_1_E7 KEY_COMMA + ALTGR_MASK
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED KEY_I + ALTGR_MASK
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_D + ALTGR_MASK
- #define ISO_8859_1_F1 KEY_N + ALTGR_MASK
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 KEY_O + ALTGR_MASK
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_P + ALTGR_MASK
- #define ISO_8859_1_F7 KEY_EQUAL + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_F8 KEY_L + ALTGR_MASK
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA KEY_U + ALTGR_MASK
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC KEY_Y + ALTGR_MASK
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_T + ALTGR_MASK
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_5 + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_5 + ALTGR_MASK
-
- #endif
-
-
-
- #ifdef LAYOUT_GERMAN
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define SHIFT_MASK 0x0100
- #define ALTGR_MASK 0x0200
- #define CIRCUMFLEX_BITS 0x0300
- #define ACUTE_ACCENT_BITS 0x0400
- #define GRAVE_ACCENT_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_TILDE
-
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_BACKSLASH
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_RIGHT_BRACE
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_Q + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Z + SHIFT_MASK
- #define ASCII_5A KEY_Y + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_MINUS + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Z
- #define ASCII_7A KEY_Y
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 0
- #define ISO_8859_1_A4 KEY_E + ALTGR_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_3 + SHIFT_MASK
- #define ISO_8859_1_A8 0
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 KEY_2 + ALTGR_MASK
- #define ISO_8859_1_B3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_B4 0
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB 0
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF 0
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Z + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF KEY_MINUS
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 KEY_QUOTE
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB 0
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF 0
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 KEY_SEMICOLON
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC KEY_LEFT_BRACE
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Z
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF 0
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
- #ifdef LAYOUT_GERMAN_MAC
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define ACUTE_ACCENT_BITS 0x0100
- #define GRAVE_ACCENT_BITS 0x0200
- #define CIRCUMFLEX_BITS 0x0300
- #define DIAERESIS_BITS 0x0400
- #define TILDE_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_CIRCUMFLEX KEY_6 + SHIFT_MASK + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_U + ALTGR_MASK
- #define DEADKEY_TILDE KEY_N + ALTGR_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_BACKSLASH
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_RIGHT_BRACE
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_TILDE
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_TILDE + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_Q + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Z + SHIFT_MASK
- #define ASCII_5A KEY_Y + SHIFT_MASK
- #define ASCII_5B KEY_5 + ALTGR_MASK
- #define ASCII_5C KEY_7 + ALTGR_MASK + SHIFT_MASK
- #define ASCII_5D KEY_6 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Z
- #define ASCII_7A KEY_Y
- #define ASCII_7B KEY_8 + ALTGR_MASK
- #define ASCII_7C KEY_7 + ALTGR_MASK
- #define ASCII_7D KEY_9 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 KEY_1 + ALTGR_MASK
- #define ISO_8859_1_A2 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_A3 KEY_4 + SHIFT_MASK + ALTGR_MASK
- #define ISO_8859_1_A4 KEY_E + ALTGR_MASK
- #define ISO_8859_1_A5 KEY_Z + ALTGR_MASK
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_3 + SHIFT_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 KEY_G + ALTGR_MASK
- #define ISO_8859_1_AA KEY_H + ALTGR_MASK
- #define ISO_8859_1_AB KEY_Q + ALTGR_MASK
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE KEY_R + ALTGR_MASK
- #define ISO_8859_1_AF KEY_0 + SHIFT_MASK + ALTGR_MASK
- #define ISO_8859_1_B0 KEY_LEFT_BRACE + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_B1 KEY_RIGHT_BRACE + ALTGR_MASK
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_B7 KEY_9 + SHIFT_MASK + ALTGR_MASK
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA KEY_J + ALTGR_MASK
- #define ISO_8859_1_BB KEY_Q + SHIFT_MASK + ALTGR_MASK
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF KEY_MINUS + ALTGR_MASK
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_C5 KEY_A + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_QUOTE + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C7 KEY_C + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 KEY_O + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Z + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF KEY_MINUS
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 KEY_QUOTE
- #define ISO_8859_1_E5 KEY_A + ALTGR_MASK
- #define ISO_8859_1_E6 KEY_QUOTE + ALTGR_MASK
- #define ISO_8859_1_E7 KEY_C + ALTGR_MASK
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_SEMICOLON
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 KEY_O + ALTGR_MASK
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC KEY_LEFT_BRACE
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Z
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Z
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
-
- #ifdef LAYOUT_CANADIAN_FRENCH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define DIAERESIS_BITS 0x0400
- #define CEDILLA_BITS 0x0500
-
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_LEFT_BRACE
- #define DEADKEY_ACUTE_ACCENT KEY_SLASH + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_QUOTE
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_CEDILLA KEY_RIGHT_BRACE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_TILDE + SHIFT_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 KEY_COMMA + SHIFT_MASK
-
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_8 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_3 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_3B KEY_SEMICOLON
- #define ASCII_3C KEY_BACKSLASH
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_3F KEY_6 + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE + ALTGR_MASK
- #define ASCII_5C KEY_TILDE + ALTGR_MASK
- #define ASCII_5D KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_QUOTE + ALTGR_MASK
- #define ASCII_7C KEY_TILDE + SHIFT_MASK
- #define ASCII_7D KEY_BACKSLASH + ALTGR_MASK
- #define ASCII_7E KEY_SEMICOLON + ALTGR_MASK
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_A3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_A4 KEY_5 + ALTGR_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 KEY_7 + ALTGR_MASK
- #define ISO_8859_1_A7 KEY_O + ALTGR_MASK
- #define ISO_8859_1_A8 0
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB KEY_NON_US_100
- #define ISO_8859_1_AC KEY_6 + ALTGR_MASK
- #define ISO_8859_1_AD KEY_PERIOD + ALTGR_MASK
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF KEY_COMMA + ALTGR_MASK
- #define ISO_8859_1_B0 KEY_NON_US_100 + ALTGR_MASK
- #define ISO_8859_1_B1 KEY_1 + ALTGR_MASK
- #define ISO_8859_1_B2 KEY_8 + ALTGR_MASK
- #define ISO_8859_1_B3 KEY_9 + ALTGR_MASK
- #define ISO_8859_1_B4 0
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 KEY_P + ALTGR_MASK
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB KEY_NON_US_100 + SHIFT_MASK
- #define ISO_8859_1_BC KEY_0 + ALTGR_MASK
- #define ISO_8859_1_BD KEY_MINUS + ALTGR_MASK
- #define ISO_8859_1_BE KEY_EQUAL + ALTGR_MASK
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 CEDILLA_BITS + KEY_C + SHIFT_MASK
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 KEY_SLASH + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 CEDILLA_BITS + KEY_C
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 KEY_SLASH
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
-
- #endif
-
-
-
- #ifdef LAYOUT_CANADIAN_MULTILINGUAL
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define RCTRL_MASK 0x0800
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define DIAERESIS_BITS 0x0200
- #define ACUTE_ACCENT_BITS 0x0300
- #define CEDILLA_BITS 0x0400
- #define GRAVE_ACCENT_BITS 0x0500
- #define TILDE_BITS 0x0600
- #define RING_ABOVE_BITS 0x0700
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_LEFT_BRACE
- #define DEADKEY_DIAERESIS KEY_LEFT_BRACE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_SEMICOLON + RCTRL_MASK
- #define DEADKEY_CEDILLA KEY_EQUAL + RCTRL_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_LEFT_BRACE + ALTGR_MASK
- #define DEADKEY_TILDE KEY_RIGHT_BRACE + ALTGR_MASK
- #define DEADKEY_RING_ABOVE KEY_LEFT_BRACE + SHIFT_MASK + RCTRL_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_PERIOD + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 KEY_COMMA + SHIFT_MASK
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_8 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_TILDE
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_3B KEY_SEMICOLON
- #define ASCII_3C KEY_COMMA + ALTGR_MASK
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_PERIOD + ALTGR_MASK
- #define ASCII_3F KEY_6 + SHIFT_MASK
- #define ASCII_40 KEY_2 + SHIFT_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_9 + ALTGR_MASK
- #define ASCII_5C KEY_TILDE + SHIFT_MASK
- #define ASCII_5D KEY_0 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_TILDE + ALTGR_MASK
- #define ASCII_7D KEY_8 + ALTGR_MASK
- #define ASCII_7E KEY_RIGHT_BRACE + RCTRL_MASK
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE + ALTGR_MASK
- #define ISO_8859_1_A1 KEY_1 + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_A2 KEY_C + RCTRL_MASK
- #define ISO_8859_1_A3 KEY_3 + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_A4 KEY_4 + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_A5 KEY_Y + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_A6 KEY_NON_US_100 + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_A7 KEY_S + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 KEY_C + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_AA KEY_F + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_AB KEY_Z + ALTGR_MASK
- #define ISO_8859_1_AC KEY_EQUAL + ALTGR_MASK
- #define ISO_8859_1_AD KEY_TILDE + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_AE KEY_R + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_SEMICOLON + ALTGR_MASK
- #define ISO_8859_1_B1 KEY_9 + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_B2 KEY_2 + RCTRL_MASK
- #define ISO_8859_1_B3 KEY_3 + RCTRL_MASK
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + RCTRL_MASK
- #define ISO_8859_1_B6 KEY_R + RCTRL_MASK
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 CEDILLA_BITS + KEY_SPACE
- #define ISO_8859_1_B9 KEY_1 + RCTRL_MASK
- #define ISO_8859_1_BA KEY_M + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_BB KEY_X + ALTGR_MASK
- #define ISO_8859_1_BC KEY_4 + RCTRL_MASK
- #define ISO_8859_1_BD KEY_5 + RCTRL_MASK
- #define ISO_8859_1_BE KEY_6 + RCTRL_MASK
- #define ISO_8859_1_BF KEY_MINUS + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_C0 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 RING_ABOVE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_A + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_C7 KEY_RIGHT_BRACE + SHIFT_MASK
- #define ISO_8859_1_C8 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_C9 KEY_SLASH + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_D + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 KEY_COMMA + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_D8 KEY_O + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_D9 KEY_NON_US_100 + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_P + RCTRL_MASK + SHIFT_MASK
- #define ISO_8859_1_DF KEY_S + RCTRL_MASK
- #define ISO_8859_1_E0 KEY_BACKSLASH
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 RING_ABOVE_BITS + KEY_A
- #define ISO_8859_1_E6 KEY_A + RCTRL_MASK
- #define ISO_8859_1_E7 KEY_RIGHT_BRACE
- #define ISO_8859_1_E8 KEY_QUOTE
- #define ISO_8859_1_E9 KEY_SLASH
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_D + RCTRL_MASK
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 KEY_PERIOD + SHIFT_MASK + RCTRL_MASK
- #define ISO_8859_1_F8 KEY_O + RCTRL_MASK
- #define ISO_8859_1_F9 KEY_NON_US_100
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_P + RCTRL_MASK
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
-
- #endif
-
-
-
-
-
-
- #ifdef LAYOUT_UNITED_KINGDOM
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define KEYCODE_TYPE uint8_t
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_BACKSPACE
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 KEY_QUOTE
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_8 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_SLASH
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_3B KEY_SEMICOLON
- #define ASCII_3C KEY_COMMA + SHIFT_MASK
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_PERIOD + SHIFT_MASK
- #define ASCII_3F KEY_SLASH + SHIFT_MASK
- #define ASCII_40 KEY_QUOTE + SHIFT_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE
- #define ASCII_5C KEY_NON_US_100
- #define ASCII_5D KEY_RIGHT_BRACE
- #define ASCII_5E KEY_6 + SHIFT_MASK
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 KEY_TILDE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_LEFT_BRACE + SHIFT_MASK
- #define ASCII_7C KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_7D KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_7E KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + SHIFT_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 KEY_TILDE + ALTGR_MASK
- #define ISO_8859_1_A7 0
- #define ISO_8859_1_A8 0
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 0
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 0
- #define ISO_8859_1_C1 KEY_A + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C2 0
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 0
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 0
- #define ISO_8859_1_C9 KEY_E + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_CA 0
- #define ISO_8859_1_CB 0
- #define ISO_8859_1_CC 0
- #define ISO_8859_1_CD KEY_I + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_CE 0
- #define ISO_8859_1_CF 0
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 0
- #define ISO_8859_1_D3 KEY_O + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D4 0
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 0
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 0
- #define ISO_8859_1_DA KEY_U + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DB 0
- #define ISO_8859_1_DC 0
- #define ISO_8859_1_DD 0
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 0
- #define ISO_8859_1_E1 KEY_A + ALTGR_MASK
- #define ISO_8859_1_E2 0
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 0
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 0
- #define ISO_8859_1_E9 KEY_E + ALTGR_MASK
- #define ISO_8859_1_EA 0
- #define ISO_8859_1_EB 0
- #define ISO_8859_1_EC 0
- #define ISO_8859_1_ED KEY_I + ALTGR_MASK
- #define ISO_8859_1_EE 0
- #define ISO_8859_1_EF 0
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 0
- #define ISO_8859_1_F3 KEY_O + ALTGR_MASK
- #define ISO_8859_1_F4 0
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 0
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 0
- #define ISO_8859_1_FA KEY_U + ALTGR_MASK
- #define ISO_8859_1_FB 0
- #define ISO_8859_1_FC 0
- #define ISO_8859_1_FD 0
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF 0
- #define UNICODE_20AC KEY_4 + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_4 + ALTGR_MASK
-
- #endif
-
-
-
- #ifdef LAYOUT_FINNISH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_TILDE KEY_RIGHT_BRACE + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + ALTGR_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_BACKSLASH
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_2B KEY_MINUS
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_MINUS + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE + ALTGR_MASK
- #define ISO_8859_1_A1 KEY_1 + SHIFT_MASK + ALTGR_MASK
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_A4 KEY_4 + SHIFT_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_TILDE
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB KEY_4 + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD KEY_SLASH + ALTGR_MASK
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_0 + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 KEY_X + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB KEY_3 + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF KEY_MINUS + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_C5 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_QUOTE + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_D + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D7 KEY_X + ALTGR_MASK
- #define ISO_8859_1_D8 KEY_SEMICOLON + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_T + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DF KEY_S + ALTGR_MASK
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 KEY_QUOTE
- #define ISO_8859_1_E5 KEY_LEFT_BRACE
- #define ISO_8859_1_E6 KEY_QUOTE + ALTGR_MASK
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_D + ALTGR_MASK
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_SEMICOLON
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 KEY_SEMICOLON + ALTGR_MASK
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_T + ALTGR_MASK
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
-
-
- #endif
-
-
-
-
-
-
-
- #ifdef LAYOUT_FRENCH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define GRAVE_ACCENT_BITS 0x0200
- #define DIAERESIS_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_LEFT_BRACE
- #define DEADKEY_GRAVE_ACCENT KEY_7 + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_LEFT_BRACE + SHIFT_MASK
- #define DEADKEY_TILDE KEY_2 + ALTGR_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_SLASH
- #define ASCII_22 KEY_3
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_RIGHT_BRACE
- #define ASCII_25 KEY_QUOTE + SHIFT_MASK
- #define ASCII_26 KEY_1
- #define ASCII_27 KEY_4
- #define ASCII_28 KEY_5
- #define ASCII_29 KEY_MINUS
- #define ASCII_2A KEY_BACKSLASH
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_M
- #define ASCII_2D KEY_6
- #define ASCII_2E KEY_COMMA + SHIFT_MASK
- #define ASCII_2F KEY_PERIOD + SHIFT_MASK
- #define ASCII_30 KEY_0 + SHIFT_MASK
- #define ASCII_31 KEY_1 + SHIFT_MASK
- #define ASCII_32 KEY_2 + SHIFT_MASK
- #define ASCII_33 KEY_3 + SHIFT_MASK
- #define ASCII_34 KEY_4 + SHIFT_MASK
- #define ASCII_35 KEY_5 + SHIFT_MASK
- #define ASCII_36 KEY_6 + SHIFT_MASK
- #define ASCII_37 KEY_7 + SHIFT_MASK
- #define ASCII_38 KEY_8 + SHIFT_MASK
- #define ASCII_39 KEY_9 + SHIFT_MASK
- #define ASCII_3A KEY_PERIOD
- #define ASCII_3B KEY_COMMA
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_M + SHIFT_MASK
- #define ASCII_40 KEY_0 + ALTGR_MASK
- #define ASCII_41 KEY_Q + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_A + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_Z + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_W + SHIFT_MASK
- #define ASCII_5B KEY_5 + ALTGR_MASK
- #define ASCII_5C KEY_8 + ALTGR_MASK
- #define ASCII_5D KEY_MINUS + ALTGR_MASK
- #define ASCII_5E KEY_9 + ALTGR_MASK
- #define ASCII_5F KEY_8
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_Q
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_SEMICOLON
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_A
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_Z
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_W
- #define ASCII_7B KEY_4 + ALTGR_MASK
- #define ASCII_7C KEY_6 + ALTGR_MASK
- #define ASCII_7D KEY_EQUAL + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_RIGHT_BRACE + SHIFT_MASK
- #define ISO_8859_1_A4 KEY_RIGHT_BRACE + ALTGR_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_SLASH + SHIFT_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_MINUS + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 KEY_TILDE
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 0
- #define ISO_8859_1_B5 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C1 0
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 0
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD 0
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 0
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA 0
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_DD 0
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 KEY_0
- #define ISO_8859_1_E1 0
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_Q
- #define ISO_8859_1_E3 TILDE_BITS + KEY_Q
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_Q
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_9
- #define ISO_8859_1_E8 KEY_7
- #define ISO_8859_1_E9 KEY_2
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED 0
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 0
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 KEY_SEMICOLON
- #define ISO_8859_1_FA 0
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD 0
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
- #ifdef LAYOUT_DANISH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_TILDE KEY_RIGHT_BRACE + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + ALTGR_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_BACKSLASH
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_2B KEY_MINUS
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_EQUAL + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_A4 KEY_4 + SHIFT_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB KEY_4
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD KEY_TILDE
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_D + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_T + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DF KEY_S + ALTGR_MASK
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 KEY_LEFT_BRACE
- #define ISO_8859_1_E6 KEY_SEMICOLON
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_D + ALTGR_MASK
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 KEY_QUOTE
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_T + ALTGR_MASK
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
- #ifdef LAYOUT_NORWEGIAN
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_TILDE KEY_RIGHT_BRACE + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + ALTGR_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_BACKSLASH
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_2B KEY_MINUS
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_EQUAL
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_TILDE
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_A4 KEY_4 + SHIFT_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB KEY_4
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD KEY_TILDE
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_D + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_T + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DF KEY_S + ALTGR_MASK
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 KEY_LEFT_BRACE
- #define ISO_8859_1_E6 KEY_QUOTE
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_D + ALTGR_MASK
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 KEY_SEMICOLON
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_T + ALTGR_MASK
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
-
- #ifdef LAYOUT_SWEDISH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_TILDE KEY_RIGHT_BRACE + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + ALTGR_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_BACKSLASH
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_2B KEY_MINUS
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_MINUS + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_A4 KEY_4 + SHIFT_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_TILDE
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB KEY_4
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_C5 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_D + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_T + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DF KEY_S + ALTGR_MASK
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 KEY_QUOTE
- #define ISO_8859_1_E5 KEY_LEFT_BRACE
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_D + ALTGR_MASK
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_SEMICOLON
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_T + ALTGR_MASK
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
-
- #ifdef LAYOUT_SPANISH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_LEFT_BRACE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_QUOTE
- #define DEADKEY_GRAVE_ACCENT KEY_LEFT_BRACE
- #define DEADKEY_TILDE KEY_4 + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_QUOTE + SHIFT_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_MINUS
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_RIGHT_BRACE
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE + ALTGR_MASK
- #define ASCII_5C KEY_TILDE + ALTGR_MASK
- #define ASCII_5D KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_QUOTE + ALTGR_MASK
- #define ASCII_7C KEY_1 + ALTGR_MASK
- #define ASCII_7D KEY_BACKSLASH + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 KEY_EQUAL
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 0
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 0
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_6 + ALTGR_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 KEY_3 + SHIFT_MASK
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA KEY_TILDE
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF KEY_EQUAL
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_BACKSLASH
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 KEY_SEMICOLON
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_5 + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_5 + ALTGR_MASK
-
- #endif
-
-
-
-
- #ifdef LAYOUT_PORTUGUESE
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_BACKSLASH
- #define DEADKEY_ACUTE_ACCENT KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_RIGHT_BRACE + SHIFT_MASK
- #define DEADKEY_TILDE KEY_BACKSLASH
- #define DEADKEY_DIAERESIS KEY_LEFT_BRACE + SHIFT_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_MINUS
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_LEFT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_LEFT_BRACE
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_TILDE + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_TILDE + SHIFT_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + ALTGR_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_AB KEY_EQUAL
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA KEY_QUOTE
- #define ISO_8859_1_BB KEY_EQUAL + SHIFT_MASK
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_SEMICOLON
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
-
-
- #ifdef LAYOUT_ITALIAN
-
- #define SHIFT_MASK 0x40
- #define ALTGR_MASK 0x80
- #define KEYCODE_TYPE uint8_t
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_QUOTE + ALTGR_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_MINUS
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_RIGHT_BRACE
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_SEMICOLON + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE + ALTGR_MASK
- #define ASCII_5C KEY_TILDE
- #define ASCII_5D KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_5E KEY_EQUAL + SHIFT_MASK
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 0
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_LEFT_BRACE + SHIFT_MASK + ALTGR_MASK
- #define ASCII_7C KEY_TILDE + SHIFT_MASK
- #define ASCII_7D KEY_RIGHT_BRACE + SHIFT_MASK + ALTGR_MASK
- #define ASCII_7E 0
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + SHIFT_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_A8 0
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 0
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 0
- #define ISO_8859_1_C1 0
- #define ISO_8859_1_C2 0
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 0
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 0
- #define ISO_8859_1_C9 0
- #define ISO_8859_1_CA 0
- #define ISO_8859_1_CB 0
- #define ISO_8859_1_CC 0
- #define ISO_8859_1_CD 0
- #define ISO_8859_1_CE 0
- #define ISO_8859_1_CF 0
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 0
- #define ISO_8859_1_D3 0
- #define ISO_8859_1_D4 0
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 0
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 0
- #define ISO_8859_1_DA 0
- #define ISO_8859_1_DB 0
- #define ISO_8859_1_DC 0
- #define ISO_8859_1_DD 0
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 KEY_QUOTE
- #define ISO_8859_1_E1 0
- #define ISO_8859_1_E2 0
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 0
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_E8 KEY_LEFT_BRACE
- #define ISO_8859_1_E9 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_EA 0
- #define ISO_8859_1_EB 0
- #define ISO_8859_1_EC KEY_EQUAL
- #define ISO_8859_1_ED 0
- #define ISO_8859_1_EE 0
- #define ISO_8859_1_EF 0
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 KEY_SEMICOLON
- #define ISO_8859_1_F3 0
- #define ISO_8859_1_F4 0
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 0
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 KEY_BACKSLASH
- #define ISO_8859_1_FA 0
- #define ISO_8859_1_FB 0
- #define ISO_8859_1_FC 0
- #define ISO_8859_1_FD 0
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF 0
-
- #endif
-
-
-
-
- #ifdef LAYOUT_PORTUGUESE_BRAZILIAN
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_QUOTE + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_LEFT_BRACE
- #define DEADKEY_GRAVE_ACCENT KEY_LEFT_BRACE + SHIFT_MASK
- #define DEADKEY_TILDE KEY_QUOTE
- #define DEADKEY_DIAERESIS KEY_6 + SHIFT_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_TILDE + SHIFT_MASK
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 KEY_TILDE
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_7 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_Q + ALTGR_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SLASH + SHIFT_MASK
- #define ASCII_3B KEY_SLASH
- #define ASCII_3C KEY_COMMA + SHIFT_MASK
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_PERIOD + SHIFT_MASK
- #define ASCII_3F KEY_W + ALTGR_MASK
- #define ASCII_40 KEY_2 + SHIFT_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_RIGHT_BRACE
- #define ASCII_5C KEY_NON_US_100
- #define ASCII_5D KEY_BACKSLASH
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_7C KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_7D KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 KEY_5 + ALTGR_MASK
- #define ISO_8859_1_A3 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_EQUAL + ALTGR_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA KEY_RIGHT_BRACE + ALTGR_MASK
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_6 + ALTGR_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_E + ALTGR_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 KEY_2 + ALTGR_MASK
- #define ISO_8859_1_B3 KEY_2 + ALTGR_MASK
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 KEY_1 + ALTGR_MASK
- #define ISO_8859_1_BA KEY_BACKSLASH + ALTGR_MASK
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
-
- #endif
-
-
-
- #ifdef LAYOUT_FRENCH_BELGIAN
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define GRAVE_ACCENT_BITS 0x0200
- #define DIAERESIS_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define ACUTE_ACCENT_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_LEFT_BRACE
- #define DEADKEY_ACUTE_ACCENT KEY_QUOTE + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_BACKSLASH + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_LEFT_BRACE + SHIFT_MASK
- #define DEADKEY_TILDE KEY_SLASH + ALTGR_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_8
- #define ASCII_22 KEY_3
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_RIGHT_BRACE
- #define ASCII_25 KEY_QUOTE + SHIFT_MASK
- #define ASCII_26 KEY_1
- #define ASCII_27 KEY_4
- #define ASCII_28 KEY_5
- #define ASCII_29 KEY_MINUS
- #define ASCII_2A KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_SLASH + SHIFT_MASK
- #define ASCII_2C KEY_M
- #define ASCII_2D KEY_EQUAL
- #define ASCII_2E KEY_COMMA + SHIFT_MASK
- #define ASCII_2F KEY_PERIOD + SHIFT_MASK
- #define ASCII_30 KEY_0 + SHIFT_MASK
- #define ASCII_31 KEY_1 + SHIFT_MASK
- #define ASCII_32 KEY_2 + SHIFT_MASK
- #define ASCII_33 KEY_3 + SHIFT_MASK
- #define ASCII_34 KEY_4 + SHIFT_MASK
- #define ASCII_35 KEY_5 + SHIFT_MASK
- #define ASCII_36 KEY_6 + SHIFT_MASK
- #define ASCII_37 KEY_7 + SHIFT_MASK
- #define ASCII_38 KEY_8 + SHIFT_MASK
- #define ASCII_39 KEY_9 + SHIFT_MASK
- #define ASCII_3A KEY_PERIOD
- #define ASCII_3B KEY_COMMA
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_SLASH
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_M + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_Q + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_A + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_Z + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_W + SHIFT_MASK
- #define ASCII_5B KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_5C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_5D KEY_LEFT_BRACE + ALTGR_MASK
- #define ASCII_5E KEY_6 + ALTGR_MASK
- #define ASCII_5F KEY_EQUAL + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_Q
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_SEMICOLON
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_A
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_Z
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_W
- #define ASCII_7B KEY_9 + ALTGR_MASK
- #define ASCII_7C KEY_1 + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_6
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_MINUS + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 KEY_TILDE
- #define ISO_8859_1_B3 KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_BACKSLASH
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_Q + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 KEY_0
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_Q
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_Q
- #define ISO_8859_1_E3 TILDE_BITS + KEY_Q
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_Q
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_9
- #define ISO_8859_1_E8 KEY_7
- #define ISO_8859_1_E9 KEY_2
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 KEY_QUOTE
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
- #ifdef LAYOUT_GERMAN_SWISS
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define GRAVE_ACCENT_BITS 0x0200
- #define DIAERESIS_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define ACUTE_ACCENT_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_EQUAL
- #define DEADKEY_ACUTE_ACCENT KEY_MINUS + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE
- #define DEADKEY_TILDE KEY_EQUAL + ALTGR_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_BACKSLASH
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_MINUS
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_3 + SHIFT_MASK
- #define ASCII_2B KEY_1 + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Z + SHIFT_MASK
- #define ASCII_5A KEY_Y + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE + ALTGR_MASK
- #define ASCII_5C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_5D KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Z
- #define ASCII_7A KEY_Y
- #define ASCII_7B KEY_QUOTE + ALTGR_MASK
- #define ASCII_7C KEY_7 + ALTGR_MASK
- #define ASCII_7D KEY_BACKSLASH + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 KEY_8 + ALTGR_MASK
- #define ISO_8859_1_A3 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 KEY_1 + ALTGR_MASK
- #define ISO_8859_1_A7 KEY_5 + ALTGR_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_6 + ALTGR_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 KEY_QUOTE
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_4 + SHIFT_MASK
- #define ISO_8859_1_E8 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_E9 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_SEMICOLON
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC KEY_LEFT_BRACE
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
- #ifdef LAYOUT_FRENCH_SWISS
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define GRAVE_ACCENT_BITS 0x0200
- #define DIAERESIS_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define ACUTE_ACCENT_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_EQUAL
- #define DEADKEY_ACUTE_ACCENT KEY_MINUS + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_EQUAL + SHIFT_MASK
- #define DEADKEY_DIAERESIS KEY_RIGHT_BRACE
- #define DEADKEY_TILDE KEY_EQUAL + ALTGR_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_BACKSLASH
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_MINUS
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_3 + SHIFT_MASK
- #define ASCII_2B KEY_1 + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_2 + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Z + SHIFT_MASK
- #define ASCII_5A KEY_Y + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE + ALTGR_MASK
- #define ASCII_5C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_5D KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Z
- #define ASCII_7A KEY_Y
- #define ASCII_7B KEY_QUOTE + ALTGR_MASK
- #define ASCII_7C KEY_7 + ALTGR_MASK
- #define ASCII_7D KEY_BACKSLASH + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 KEY_8 + ALTGR_MASK
- #define ISO_8859_1_A3 KEY_BACKSLASH + SHIFT_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 KEY_1 + ALTGR_MASK
- #define ISO_8859_1_A7 KEY_5 + ALTGR_MASK
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_6 + ALTGR_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_4 + ALTGR_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 KEY_QUOTE
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 KEY_QUOTE + SHIFT_MASK
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_4 + SHIFT_MASK
- #define ISO_8859_1_E8 KEY_LEFT_BRACE
- #define ISO_8859_1_E9 KEY_SEMICOLON
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
- #ifdef LAYOUT_SPANISH_LATIN_AMERICA
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define DIAERESIS_BITS 0x0400
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_QUOTE + ALTGR_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_LEFT_BRACE
- #define DEADKEY_GRAVE_ACCENT KEY_BACKSLASH + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_LEFT_BRACE + SHIFT_MASK
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_MINUS
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_2B KEY_RIGHT_BRACE
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_Q + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_QUOTE + SHIFT_MASK
- #define ASCII_5C KEY_MINUS + ALTGR_MASK
- #define ASCII_5D KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_QUOTE
- #define ASCII_7C KEY_TILDE
- #define ASCII_7D KEY_BACKSLASH
- #define ASCII_7E KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 KEY_EQUAL + SHIFT_MASK
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 0
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 0
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_TILDE + ALTGR_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF KEY_EQUAL
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 KEY_SEMICOLON
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
-
- #endif
-
-
-
- #ifdef LAYOUT_IRISH
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0300
- #define GRAVE_ACCENT_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_ACUTE_ACCENT KEY_QUOTE + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_TILDE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_BACKSPACE
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_7 + SHIFT_MASK
- #define ASCII_27 KEY_QUOTE
- #define ASCII_28 KEY_9 + SHIFT_MASK
- #define ASCII_29 KEY_0 + SHIFT_MASK
- #define ASCII_2A KEY_8 + SHIFT_MASK
- #define ASCII_2B KEY_EQUAL + SHIFT_MASK
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_MINUS
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_SLASH
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_3B KEY_SEMICOLON
- #define ASCII_3C KEY_COMMA + SHIFT_MASK
- #define ASCII_3D KEY_EQUAL
- #define ASCII_3E KEY_PERIOD + SHIFT_MASK
- #define ASCII_3F KEY_SLASH + SHIFT_MASK
- #define ASCII_40 KEY_QUOTE + SHIFT_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_LEFT_BRACE
- #define ASCII_5C KEY_NON_US_100
- #define ASCII_5D KEY_RIGHT_BRACE
- #define ASCII_5E KEY_6 + SHIFT_MASK
- #define ASCII_5F KEY_MINUS + SHIFT_MASK
- #define ASCII_60 KEY_QUOTE + SHIFT_MASK + ALTGR_MASK
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_LEFT_BRACE + SHIFT_MASK
- #define ASCII_7C KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_7D KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_7E KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_3 + SHIFT_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 KEY_TILDE + ALTGR_MASK
- #define ISO_8859_1_A7 0
- #define ISO_8859_1_A8 0
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 0
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_C1 KEY_A + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_C2 0
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 0
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_C9 KEY_E + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_CA 0
- #define ISO_8859_1_CB 0
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_CD KEY_I + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_CE 0
- #define ISO_8859_1_CF 0
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_D3 KEY_O + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_D4 0
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 0
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_DA KEY_U + ALTGR_MASK + SHIFT_MASK
- #define ISO_8859_1_DB 0
- #define ISO_8859_1_DC 0
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 KEY_A + ALTGR_MASK
- #define ISO_8859_1_E2 0
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 0
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 KEY_E + ALTGR_MASK
- #define ISO_8859_1_EA 0
- #define ISO_8859_1_EB 0
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED KEY_I + ALTGR_MASK
- #define ISO_8859_1_EE 0
- #define ISO_8859_1_EF 0
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 KEY_O + ALTGR_MASK
- #define ISO_8859_1_F4 0
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 0
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA KEY_U + ALTGR_MASK
- #define ISO_8859_1_FB 0
- #define ISO_8859_1_FC 0
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF 0
- #define UNICODE_20AC KEY_4 + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_4 + ALTGR_MASK
-
- #endif
-
-
-
-
- #ifdef LAYOUT_ICELANDIC
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define DIAERESIS_BITS 0x0400
- #define RING_ABOVE_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_QUOTE + ALTGR_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_QUOTE
- #define DEADKEY_GRAVE_ACCENT KEY_BACKSLASH + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_TILDE + SHIFT_MASK
- #define DEADKEY_RING_ABOVE KEY_TILDE
- #define KEY_NON_US_100 63
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_2 + SHIFT_MASK
- #define ASCII_23 KEY_3 + SHIFT_MASK
- #define ASCII_24 KEY_4 + SHIFT_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_QUOTE + SHIFT_MASK
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_2B KEY_BACKSLASH
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_EQUAL
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_COMMA + SHIFT_MASK
- #define ASCII_3C KEY_NON_US_100
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_3F KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_40 KEY_Q + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_MINUS + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_EQUAL + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_NON_US_100 + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E KEY_RIGHT_BRACE + ALTGR_MASK
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 0
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 0
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 KEY_TILDE + ALTGR_MASK
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 KEY_M + ALTGR_MASK
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + ALTGR_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 RING_ABOVE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C6 KEY_SEMICOLON + SHIFT_MASK
- #define ISO_8859_1_C7 0
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 KEY_LEFT_BRACE + SHIFT_MASK
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 DIAERESIS_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC DIAERESIS_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE KEY_SLASH + SHIFT_MASK
- #define ISO_8859_1_DF 0
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 RING_ABOVE_BITS + KEY_A
- #define ISO_8859_1_E6 KEY_SEMICOLON
- #define ISO_8859_1_E7 0
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 ACUTE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 KEY_LEFT_BRACE
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 DIAERESIS_BITS + KEY_O
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC DIAERESIS_BITS + KEY_U
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE KEY_SLASH
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_5 + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_5 + ALTGR_MASK
-
- #endif
-
-
-
- #ifdef LAYOUT_TURKISH
-
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0700
- #define CIRCUMFLEX_BITS 0x0100
- #define ACUTE_ACCENT_BITS 0x0200
- #define GRAVE_ACCENT_BITS 0x0300
- #define TILDE_BITS 0x0400
- #define DIAERESIS_BITS 0x0500
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_CIRCUMFLEX KEY_3 + SHIFT_MASK
- #define DEADKEY_ACUTE_ACCENT KEY_SEMICOLON + ALTGR_MASK
- #define DEADKEY_GRAVE_ACCENT KEY_BACKSLASH + ALTGR_MASK
- #define DEADKEY_TILDE KEY_RIGHT_BRACE + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_LEFT_BRACE + ALTGR_MASK
-
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_1 + SHIFT_MASK
- #define ASCII_22 KEY_TILDE
- #define ASCII_23 KEY_3 + ALTGR_MASK
- #define ASCII_24 KEY_4 + ALTGR_MASK
- #define ASCII_25 KEY_5 + SHIFT_MASK
- #define ASCII_26 KEY_6 + SHIFT_MASK
- #define ASCII_27 KEY_2 + SHIFT_MASK
- #define ASCII_28 KEY_8 + SHIFT_MASK
- #define ASCII_29 KEY_9 + SHIFT_MASK
- #define ASCII_2A KEY_MINUS
- #define ASCII_2B KEY_4 + SHIFT_MASK
- #define ASCII_2C KEY_BACKSLASH
- #define ASCII_2D KEY_EQUAL
- #define ASCII_2E KEY_SLASH
- #define ASCII_2F KEY_7 + SHIFT_MASK
- #define ASCII_30 KEY_0
- #define ASCII_31 KEY_1
- #define ASCII_32 KEY_2
- #define ASCII_33 KEY_3
- #define ASCII_34 KEY_4
- #define ASCII_35 KEY_5
- #define ASCII_36 KEY_6
- #define ASCII_37 KEY_7
- #define ASCII_38 KEY_8
- #define ASCII_39 KEY_9
- #define ASCII_3A KEY_SLASH + SHIFT_MASK
- #define ASCII_3B KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_3C KEY_TILDE + ALTGR_MASK
- #define ASCII_3D KEY_0 + SHIFT_MASK
- #define ASCII_3E KEY_1 + ALTGR_MASK
- #define ASCII_3F KEY_MINUS + SHIFT_MASK
- #define ASCII_40 KEY_Q + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Y + SHIFT_MASK
- #define ASCII_5A KEY_Z + SHIFT_MASK
- #define ASCII_5B KEY_8 + ALTGR_MASK
- #define ASCII_5C KEY_MINUS + ALTGR_MASK
- #define ASCII_5D KEY_9 + ALTGR_MASK
- #define ASCII_5E CIRCUMFLEX_BITS + KEY_SPACE
- #define ASCII_5F KEY_EQUAL + SHIFT_MASK
- #define ASCII_60 GRAVE_ACCENT_BITS + KEY_SPACE
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_QUOTE
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Y
- #define ASCII_7A KEY_Z
- #define ASCII_7B KEY_7 + ALTGR_MASK
- #define ASCII_7C KEY_EQUAL + ALTGR_MASK
- #define ASCII_7D KEY_0 + ALTGR_MASK
- #define ASCII_7E TILDE_BITS + KEY_SPACE
- #define ASCII_7F KEY_BACKSPACE
-
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 KEY_2 + ALTGR_MASK
- #define ISO_8859_1_A4 0
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 0
- #define ISO_8859_1_A8 DIAERESIS_BITS + KEY_SPACE
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 0
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 0
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD KEY_5 + ALTGR_MASK
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 GRAVE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 CIRCUMFLEX_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C3 TILDE_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C4 DIAERESIS_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 KEY_A + ALTGR_MASK
- #define ISO_8859_1_C7 KEY_PERIOD + SHIFT_MASK
- #define ISO_8859_1_C8 GRAVE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA CIRCUMFLEX_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CB DIAERESIS_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CC GRAVE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE CIRCUMFLEX_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CF DIAERESIS_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 TILDE_BITS + KEY_N + SHIFT_MASK
- #define ISO_8859_1_D2 GRAVE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 CIRCUMFLEX_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D5 TILDE_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D6 KEY_COMMA + SHIFT_MASK
- #define ISO_8859_1_D7 0
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 GRAVE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB CIRCUMFLEX_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DC KEY_RIGHT_BRACE + SHIFT_MASK
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Y + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF KEY_S + ALTGR_MASK
- #define ISO_8859_1_E0 GRAVE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E1 ACUTE_ACCENT_BITS + KEY_A
- #define ISO_8859_1_E2 CIRCUMFLEX_BITS + KEY_A
- #define ISO_8859_1_E3 TILDE_BITS + KEY_A
- #define ISO_8859_1_E4 DIAERESIS_BITS + KEY_A
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 KEY_PERIOD
- #define ISO_8859_1_E8 GRAVE_ACCENT_BITS + KEY_E
- #define ISO_8859_1_E9 KEY_TILDE + SHIFT_MASK
- #define ISO_8859_1_EA CIRCUMFLEX_BITS + KEY_E
- #define ISO_8859_1_EB DIAERESIS_BITS + KEY_E
- #define ISO_8859_1_EC GRAVE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_ED ACUTE_ACCENT_BITS + KEY_I
- #define ISO_8859_1_EE CIRCUMFLEX_BITS + KEY_I
- #define ISO_8859_1_EF DIAERESIS_BITS + KEY_I
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 TILDE_BITS + KEY_N
- #define ISO_8859_1_F2 GRAVE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 CIRCUMFLEX_BITS + KEY_O
- #define ISO_8859_1_F5 TILDE_BITS + KEY_O
- #define ISO_8859_1_F6 KEY_COMMA
- #define ISO_8859_1_F7 0
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 GRAVE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FA ACUTE_ACCENT_BITS + KEY_U
- #define ISO_8859_1_FB CIRCUMFLEX_BITS + KEY_U
- #define ISO_8859_1_FC KEY_RIGHT_BRACE
- #define ISO_8859_1_FD ACUTE_ACCENT_BITS + KEY_Y
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF DIAERESIS_BITS + KEY_Y
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
-
- #define UNICODE_EXTRA00 0x20AC
- #define KEYCODE_EXTRA00 KEY_E + ALTGR_MASK
- #define UNICODE_EXTRA01 0x011E
- #define KEYCODE_EXTRA01 KEY_LEFT_BRACE + SHIFT_MASK
- #define UNICODE_EXTRA02 0x011F
- #define KEYCODE_EXTRA02 KEY_LEFT_BRACE
- #define UNICODE_EXTRA03 0x0130
- #define KEYCODE_EXTRA03 KEY_QUOTE + SHIFT_MASK
- #define UNICODE_EXTRA04 0x0131
- #define KEYCODE_EXTRA04 KEY_I
- #define UNICODE_EXTRA05 0x015E
- #define KEYCODE_EXTRA05 KEY_SEMICOLON + SHIFT_MASK
- #define UNICODE_EXTRA06 0x0151
- #define KEYCODE_EXTRA06 KEY_SEMICOLON
-
- #endif
-
-
-
- #ifdef LAYOUT_CZECH
-
-
- #define SHIFT_MASK 0x0040
- #define ALTGR_MASK 0x0080
- #define DEADKEYS_MASK 0x0F00
- #define ACUTE_ACCENT_BITS 0x0100
- #define DEGREE_SIGN_BITS 0x0200
- #define CARON_BITS 0x0300
-
- #define BREVE_BITS 0x0500
- #define OGONEK_BITS 0x0600
-
- #define DOT_ABOVE_BITS 0x0800
- #define DOUBLE_ACUTE_BITS 0x0900
-
- #define CEDILLA_BITS 0x0B00
- #define KEYCODE_TYPE uint16_t
- #define DEADKEY_ACUTE_ACCENT KEY_EQUAL
- #define DEADKEY_DEGREE_SIGN KEY_TILDE + SHIFT_MASK
- #define DEADKEY_CARON KEY_EQUAL + SHIFT_MASK
-
- #define DEADKEY_BREVE KEY_4 + ALTGR_MASK
- #define DEADKEY_OGONEK KEY_6 + ALTGR_MASK
-
- #define DEADKEY_DOT_ABOVE KEY_8 + ALTGR_MASK
- #define DEADKEY_DOUBLE_ACUTE KEY_0 + ALTGR_MASK
- #define DEADKEY_DIAERESIS KEY_MINUS + ALTGR_MASK
- #define DEADKEY_CEDILLA KEY_EQUAL + ALTGR_MASK
- #define KEY_NON_US_100 63
- #define ASCII_20 KEY_SPACE
- #define ASCII_21 KEY_QUOTE + SHIFT_MASK
- #define ASCII_22 KEY_SEMICOLON + SHIFT_MASK
- #define ASCII_23 KEY_X + ALTGR_MASK
- #define ASCII_24 KEY_SEMICOLON + ALTGR_MASK
- #define ASCII_25 KEY_MINUS + SHIFT_MASK
- #define ASCII_26 KEY_C + ALTGR_MASK
- #define ASCII_27 KEY_BACKSLASH + SHIFT_MASK
- #define ASCII_28 KEY_RIGHT_BRACE + SHIFT_MASK
- #define ASCII_29 KEY_RIGHT_BRACE
- #define ASCII_2A KEY_SLASH + ALTGR_MASK
- #define ASCII_2B KEY_1
- #define ASCII_2C KEY_COMMA
- #define ASCII_2D KEY_SLASH
- #define ASCII_2E KEY_PERIOD
- #define ASCII_2F KEY_LEFT_BRACE + SHIFT_MASK
- #define ASCII_30 KEY_0 + SHIFT_MASK
- #define ASCII_31 KEY_1 + SHIFT_MASK
- #define ASCII_32 KEY_2 + SHIFT_MASK
- #define ASCII_33 KEY_3 + SHIFT_MASK
- #define ASCII_34 KEY_4 + SHIFT_MASK
- #define ASCII_35 KEY_5 + SHIFT_MASK
- #define ASCII_36 KEY_6 + SHIFT_MASK
- #define ASCII_37 KEY_7 + SHIFT_MASK
- #define ASCII_38 KEY_8 + SHIFT_MASK
- #define ASCII_39 KEY_9 + SHIFT_MASK
- #define ASCII_3A KEY_PERIOD + SHIFT_MASK
- #define ASCII_3B KEY_TILDE
- #define ASCII_3C KEY_COMMA + ALTGR_MASK
- #define ASCII_3D KEY_MINUS
- #define ASCII_3E KEY_PERIOD + ALTGR_MASK
- #define ASCII_3F KEY_COMMA + SHIFT_MASK
- #define ASCII_40 KEY_V + ALTGR_MASK
- #define ASCII_41 KEY_A + SHIFT_MASK
- #define ASCII_42 KEY_B + SHIFT_MASK
- #define ASCII_43 KEY_C + SHIFT_MASK
- #define ASCII_44 KEY_D + SHIFT_MASK
- #define ASCII_45 KEY_E + SHIFT_MASK
- #define ASCII_46 KEY_F + SHIFT_MASK
- #define ASCII_47 KEY_G + SHIFT_MASK
- #define ASCII_48 KEY_H + SHIFT_MASK
- #define ASCII_49 KEY_I + SHIFT_MASK
- #define ASCII_4A KEY_J + SHIFT_MASK
- #define ASCII_4B KEY_K + SHIFT_MASK
- #define ASCII_4C KEY_L + SHIFT_MASK
- #define ASCII_4D KEY_M + SHIFT_MASK
- #define ASCII_4E KEY_N + SHIFT_MASK
- #define ASCII_4F KEY_O + SHIFT_MASK
- #define ASCII_50 KEY_P + SHIFT_MASK
- #define ASCII_51 KEY_Q + SHIFT_MASK
- #define ASCII_52 KEY_R + SHIFT_MASK
- #define ASCII_53 KEY_S + SHIFT_MASK
- #define ASCII_54 KEY_T + SHIFT_MASK
- #define ASCII_55 KEY_U + SHIFT_MASK
- #define ASCII_56 KEY_V + SHIFT_MASK
- #define ASCII_57 KEY_W + SHIFT_MASK
- #define ASCII_58 KEY_X + SHIFT_MASK
- #define ASCII_59 KEY_Z + SHIFT_MASK
- #define ASCII_5A KEY_Y + SHIFT_MASK
- #define ASCII_5B KEY_F + ALTGR_MASK
- #define ASCII_5C KEY_NON_US_100
- #define ASCII_5D KEY_G + ALTGR_MASK
- #define ASCII_5E KEY_3 + ALTGR_MASK
- #define ASCII_5F KEY_SLASH + SHIFT_MASK
- #define ASCII_60 KEY_7 + ALTGR_MASK
- #define ASCII_61 KEY_A
- #define ASCII_62 KEY_B
- #define ASCII_63 KEY_C
- #define ASCII_64 KEY_D
- #define ASCII_65 KEY_E
- #define ASCII_66 KEY_F
- #define ASCII_67 KEY_G
- #define ASCII_68 KEY_H
- #define ASCII_69 KEY_I
- #define ASCII_6A KEY_J
- #define ASCII_6B KEY_K
- #define ASCII_6C KEY_L
- #define ASCII_6D KEY_M
- #define ASCII_6E KEY_N
- #define ASCII_6F KEY_O
- #define ASCII_70 KEY_P
- #define ASCII_71 KEY_Q
- #define ASCII_72 KEY_R
- #define ASCII_73 KEY_S
- #define ASCII_74 KEY_T
- #define ASCII_75 KEY_U
- #define ASCII_76 KEY_V
- #define ASCII_77 KEY_W
- #define ASCII_78 KEY_X
- #define ASCII_79 KEY_Z
- #define ASCII_7A KEY_Y
- #define ASCII_7B KEY_B + ALTGR_MASK
- #define ASCII_7C KEY_NON_US_100 + SHIFT_MASK
- #define ASCII_7D KEY_N + ALTGR_MASK
- #define ASCII_7E KEY_1 + ALTGR_MASK
- #define ASCII_7F KEY_BACKSPACE
- #define ISO_8859_1_A0 KEY_SPACE
- #define ISO_8859_1_A1 0
- #define ISO_8859_1_A2 0
- #define ISO_8859_1_A3 0
- #define ISO_8859_1_A4 KEY_BACKSLASH + ALTGR_MASK
- #define ISO_8859_1_A5 0
- #define ISO_8859_1_A6 0
- #define ISO_8859_1_A7 KEY_QUOTE
- #define ISO_8859_1_A8 0
- #define ISO_8859_1_A9 0
- #define ISO_8859_1_AA 0
- #define ISO_8859_1_AB 0
- #define ISO_8859_1_AC 0
- #define ISO_8859_1_AD 0
- #define ISO_8859_1_AE 0
- #define ISO_8859_1_AF 0
- #define ISO_8859_1_B0 DEGREE_SIGN_BITS + KEY_SPACE
- #define ISO_8859_1_B1 0
- #define ISO_8859_1_B2 0
- #define ISO_8859_1_B3 0
- #define ISO_8859_1_B4 ACUTE_ACCENT_BITS + KEY_SPACE
- #define ISO_8859_1_B5 0
- #define ISO_8859_1_B6 0
- #define ISO_8859_1_B7 0
- #define ISO_8859_1_B8 CEDILLA_BITS + KEY_SPACE
- #define ISO_8859_1_B9 0
- #define ISO_8859_1_BA 0
- #define ISO_8859_1_BB 0
- #define ISO_8859_1_BC 0
- #define ISO_8859_1_BD 0
- #define ISO_8859_1_BE 0
- #define ISO_8859_1_BF 0
- #define ISO_8859_1_C0 0
- #define ISO_8859_1_C1 ACUTE_ACCENT_BITS + KEY_A + SHIFT_MASK
- #define ISO_8859_1_C2 0
- #define ISO_8859_1_C3 0
- #define ISO_8859_1_C4 0
- #define ISO_8859_1_C5 0
- #define ISO_8859_1_C6 0
- #define ISO_8859_1_C7 CEDILLA_BITS + KEY_C + SHIFT_MASK
- #define ISO_8859_1_C8 0
- #define ISO_8859_1_C9 ACUTE_ACCENT_BITS + KEY_E + SHIFT_MASK
- #define ISO_8859_1_CA 0
- #define ISO_8859_1_CB 0
- #define ISO_8859_1_CC 0
- #define ISO_8859_1_CD ACUTE_ACCENT_BITS + KEY_I + SHIFT_MASK
- #define ISO_8859_1_CE 0
- #define ISO_8859_1_CF 0
- #define ISO_8859_1_D0 0
- #define ISO_8859_1_D1 0
- #define ISO_8859_1_D2 0
- #define ISO_8859_1_D3 ACUTE_ACCENT_BITS + KEY_O + SHIFT_MASK
- #define ISO_8859_1_D4 0
- #define ISO_8859_1_D5 0
- #define ISO_8859_1_D6 0
- #define ISO_8859_1_D7 KEY_RIGHT_BRACE + ALTGR_MASK
- #define ISO_8859_1_D8 0
- #define ISO_8859_1_D9 0
- #define ISO_8859_1_DA ACUTE_ACCENT_BITS + KEY_U + SHIFT_MASK
- #define ISO_8859_1_DB 0
- #define ISO_8859_1_DC 0
- #define ISO_8859_1_DD ACUTE_ACCENT_BITS + KEY_Z + SHIFT_MASK
- #define ISO_8859_1_DE 0
- #define ISO_8859_1_DF KEY_QUOTE + ALTGR_MASK
- #define ISO_8859_1_E0 0
- #define ISO_8859_1_E1 KEY_8
- #define ISO_8859_1_E2 0
- #define ISO_8859_1_E3 0
- #define ISO_8859_1_E4 0
- #define ISO_8859_1_E5 0
- #define ISO_8859_1_E6 0
- #define ISO_8859_1_E7 CEDILLA_BITS + KEY_C
- #define ISO_8859_1_E8 0
- #define ISO_8859_1_E9 KEY_0
- #define ISO_8859_1_EA 0
- #define ISO_8859_1_EB 0
- #define ISO_8859_1_EC 0
- #define ISO_8859_1_ED KEY_9
- #define ISO_8859_1_EE 0
- #define ISO_8859_1_EF 0
- #define ISO_8859_1_F0 0
- #define ISO_8859_1_F1 0
- #define ISO_8859_1_F2 0
- #define ISO_8859_1_F3 ACUTE_ACCENT_BITS + KEY_O
- #define ISO_8859_1_F4 0
- #define ISO_8859_1_F5 0
- #define ISO_8859_1_F6 0
- #define ISO_8859_1_F7 KEY_LEFT_BRACE + ALTGR_MASK
- #define ISO_8859_1_F8 0
- #define ISO_8859_1_F9 0
- #define ISO_8859_1_FA KEY_LEFT_BRACE
- #define ISO_8859_1_FB 0
- #define ISO_8859_1_FC 0
- #define ISO_8859_1_FD KEY_7
- #define ISO_8859_1_FE 0
- #define ISO_8859_1_FF 0
- #define UNICODE_20AC KEY_E + ALTGR_MASK
-
- #define UNICODE_EXTRA00 0x011B
- #define KEYCODE_EXTRA00 KEY_2
- #define UNICODE_EXTRA01 0x0161
- #define KEYCODE_EXTRA01 KEY_3
- #define UNICODE_EXTRA02 0x010D
- #define KEYCODE_EXTRA02 KEY_4
- #define UNICODE_EXTRA03 0x0159
- #define KEYCODE_EXTRA03 KEY_5
- #define UNICODE_EXTRA04 0x017E
- #define KEYCODE_EXTRA04 KEY_6
- #define UNICODE_EXTRA05 0x016F
- #define KEYCODE_EXTRA05 KEY_SEMICOLON
- #define UNICODE_EXTRA06 0x0111
- #define KEYCODE_EXTRA06 KEY_S + ALTGR_MASK
- #define UNICODE_EXTRA07 0x0110
- #define KEYCODE_EXTRA07 KEY_D + ALTGR_MASK
- #define UNICODE_EXTRA08 0x0142
- #define KEYCODE_EXTRA08 KEY_K + ALTGR_MASK
- #define UNICODE_EXTRA09 0x0141
- #define KEYCODE_EXTRA09 KEY_L + ALTGR_MASK
- #define UNICODE_EXTRA0A 0x20AC
- #define KEYCODE_EXTRA0A KEY_E + ALTGR_MASK
-
- #endif
-
-
-
-
-
-
- extern const KEYCODE_TYPE keycodes_ascii[];
- extern const KEYCODE_TYPE keycodes_iso_8859_1[];
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|