summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode/process_unicode.c
diff options
context:
space:
mode:
authorPriyadi Iman Nurcahyo <priyadi@priyadi.net>2016-10-09 19:46:20 +0200
committerPriyadi Iman Nurcahyo <priyadi@priyadi.net>2016-10-09 19:56:09 +0200
commit5b2e455d3b71bfb90754930d1f22d3e8ce98b927 (patch)
treef9c5e7f6920aa860407df4850dca7ee515a4be74 /quantum/process_keycode/process_unicode.c
parenta9df99b81c787862dc3fa11bd854fe39e704da81 (diff)
downloadqmk_firmware-5b2e455d3b71bfb90754930d1f22d3e8ce98b927.tar.gz
qmk_firmware-5b2e455d3b71bfb90754930d1f22d3e8ce98b927.tar.xz
Unicode map framework. 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.c26
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) {
return true;
}
+#ifdef UNICODEMAP_ENABLE
+__attribute__((weak))
+const uint32_t PROGMEM unicode_map[] = {
+};
+
+// 5 digit max because of linux limitation
+void register_hex32(uint32_t hex) {
+ for(int i = 4; i >= 0; i--) {
+ uint8_t digit = ((hex >> (i*4)) & 0xF);
+ register_code(hex_to_keycode(digit));
+ unregister_code(hex_to_keycode(digit));
+ }
+}
+
+bool process_unicode_map(uint16_t keycode, keyrecord_t *record) {
+ if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) {
+ const uint32_t* map = unicode_map;
+ uint16_t index = keycode & 0x7FF;
+ unicode_input_start();
+ register_hex32(pgm_read_dword_far(&map[index]));
+ unicode_input_finish();
+ }
+ return true;
+}
+#endif
+
#ifdef UCIS_ENABLE
qk_ucis_state_t qk_ucis_state;