aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_unicode.h
diff options
context:
space:
mode:
authorcoderkun <olli@coderkun.de>2016-08-21 20:25:19 +0200
committercoderkun <olli@coderkun.de>2016-08-21 20:27:23 +0200
commitdffdeb50b79d3c623e2ed9fd1c1d82d6d0ae7bf0 (patch)
tree119455361acfc33beb3fc563222f6c601bd5bdbf /quantum/process_keycode/process_unicode.h
parenta3f726174c0f8f358f7970767a1bf743fd9ad761 (diff)
downloadqmk_firmware-dffdeb50b79d3c623e2ed9fd1c1d82d6d0ae7bf0.tar.gz
qmk_firmware-dffdeb50b79d3c623e2ed9fd1c1d82d6d0ae7bf0.zip
Add method to set Unicode input key for ISO 14755
https://github.com/jackhumbert/qmk_firmware/issues/672
Diffstat (limited to 'quantum/process_keycode/process_unicode.h')
-rw-r--r--quantum/process_keycode/process_unicode.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.h b/quantum/process_keycode/process_unicode.h
index 85364e8eb..60a116ab7 100644
--- a/quantum/process_keycode/process_unicode.h
+++ b/quantum/process_keycode/process_unicode.h
@@ -8,11 +8,16 @@
8#define UC_WIN 2 8#define UC_WIN 2
9#define UC_BSD 3 9#define UC_BSD 3
10 10
11#ifndef UNICODE_LNX_KEY
12#define UNICODE_LNX_KEY KC_A
13#endif
14
11#ifndef UNICODE_TYPE_DELAY 15#ifndef UNICODE_TYPE_DELAY
12#define UNICODE_TYPE_DELAY 10 16#define UNICODE_TYPE_DELAY 10
13#endif 17#endif
14 18
15void set_unicode_input_mode(uint8_t os_target); 19void set_unicode_input_mode(uint8_t os_target);
20void set_unicode_input_key_lnx(uint16_t linux_key);
16void unicode_input_start(void); 21void unicode_input_start(void);
17void unicode_input_finish(void); 22void unicode_input_finish(void);
18void register_hex(uint16_t hex); 23void register_hex(uint16_t hex);