diff options
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
-rw-r--r-- | quantum/process_keycode/process_unicode.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index 6a30afe29..37dd471ff 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
@@ -78,6 +78,32 @@ bool process_unicode(uint16_t keycode, keyrecord_t *record) { | |||
78 | return true; | 78 | return true; |
79 | } | 79 | } |
80 | 80 | ||
81 | #ifdef UNICODEMAP_ENABLE | ||
82 | __attribute__((weak)) | ||
83 | const uint32_t PROGMEM unicode_map[] = { | ||
84 | }; | ||
85 | |||
86 | // 5 digit max because of linux limitation | ||
87 | void register_hex32(uint32_t hex) { | ||
88 | for(int i = 4; i >= 0; i--) { | ||
89 | uint8_t digit = ((hex >> (i*4)) & 0xF); | ||
90 | register_code(hex_to_keycode(digit)); | ||
91 | unregister_code(hex_to_keycode(digit)); | ||
92 | } | ||
93 | } | ||
94 | |||
95 | bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | ||
96 | if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) { | ||
97 | const uint32_t* map = unicode_map; | ||
98 | uint16_t index = keycode & 0x7FF; | ||
99 | unicode_input_start(); | ||
100 | register_hex32(pgm_read_dword_far(&map[index])); | ||
101 | unicode_input_finish(); | ||
102 | } | ||
103 | return true; | ||
104 | } | ||
105 | #endif | ||
106 | |||
81 | #ifdef UCIS_ENABLE | 107 | #ifdef UCIS_ENABLE |
82 | qk_ucis_state_t qk_ucis_state; | 108 | qk_ucis_state_t qk_ucis_state; |
83 | 109 | ||