diff options
| author | Alex Ong <the.onga@gmail.com> | 2019-01-04 19:43:45 +1100 |
|---|---|---|
| committer | Alex Ong <the.onga@gmail.com> | 2019-01-04 19:43:45 +1100 |
| commit | 2bb2977c133646c4e056960e72029270d77cc1eb (patch) | |
| tree | 235d491f992121ac1716c5bf2fafb80983748576 /quantum/process_keycode/process_unicode.c | |
| parent | a55c838961c89097ab849ed6cb1f261791e6b9b4 (diff) | |
| parent | 47c91fc7f75ae0a477e55b687aa0fc30da0a283c (diff) | |
| download | qmk_firmware-2bb2977c133646c4e056960e72029270d77cc1eb.tar.gz qmk_firmware-2bb2977c133646c4e056960e72029270d77cc1eb.zip | |
Merge branch 'master' into debounce_refactor
# Conflicts:
# tmk_core/common/keyboard.c
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
| -rw-r--r-- | quantum/process_keycode/process_unicode.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index fd008eca1..19beb8452 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
| @@ -17,14 +17,8 @@ | |||
| 17 | #include "action_util.h" | 17 | #include "action_util.h" |
| 18 | #include "eeprom.h" | 18 | #include "eeprom.h" |
| 19 | 19 | ||
| 20 | static uint8_t first_flag = 0; | ||
| 21 | |||
| 22 | bool process_unicode(uint16_t keycode, keyrecord_t *record) { | 20 | bool process_unicode(uint16_t keycode, keyrecord_t *record) { |
| 23 | if (keycode > QK_UNICODE && record->event.pressed) { | 21 | if (keycode > QK_UNICODE && record->event.pressed) { |
| 24 | if (first_flag == 0) { | ||
| 25 | set_unicode_input_mode(eeprom_read_byte(EECONFIG_UNICODEMODE)); | ||
| 26 | first_flag = 1; | ||
| 27 | } | ||
| 28 | uint16_t unicode = keycode & 0x7FFF; | 22 | uint16_t unicode = keycode & 0x7FFF; |
| 29 | unicode_input_start(); | 23 | unicode_input_start(); |
| 30 | register_hex(unicode); | 24 | register_hex(unicode); |
| @@ -32,4 +26,3 @@ bool process_unicode(uint16_t keycode, keyrecord_t *record) { | |||
| 32 | } | 26 | } |
| 33 | return true; | 27 | return true; |
| 34 | } | 28 | } |
| 35 | |||
