diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2016-10-16 15:49:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-16 15:49:45 -0400 |
| commit | 52d7f7d2770a35adf0b0b0c803e05ae8719f539f (patch) | |
| tree | fc9c02090ef86489ba99c2c1618f1da1c334c28a /quantum/process_keycode/process_unicode.c | |
| parent | 5e2b843538365b130a73054bbeff6009cb8d818c (diff) | |
| parent | 932705706edc22774d89fb94ebad9ffe690a270c (diff) | |
| download | qmk_firmware-52d7f7d2770a35adf0b0b0c803e05ae8719f539f.tar.gz qmk_firmware-52d7f7d2770a35adf0b0b0c803e05ae8719f539f.zip | |
Merge pull request #815 from priyadi/unicode_map
Allow unicode up to 0xFFFFF using separate mapping table
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 | ||
