diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-03-31 18:27:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-31 18:27:44 -0400 |
| commit | 2b4efaba53164fc1487df3147ac7ded8bece4272 (patch) | |
| tree | 48e8fe12880f58ebc7e143d245af5826c20b6f54 /quantum/process_keycode/process_unicode_common.c | |
| parent | b441468795ed5ca67359d02eb2588844873da3e3 (diff) | |
| parent | d1e66e2e0715c680a8da3216525b54fd8f2b671f (diff) | |
| download | qmk_firmware-2b4efaba53164fc1487df3147ac7ded8bece4272.tar.gz qmk_firmware-2b4efaba53164fc1487df3147ac7ded8bece4272.zip | |
Merge pull request #1189 from Zay950/to_push
Unicode input_mode presistance
Diffstat (limited to 'quantum/process_keycode/process_unicode_common.c')
| -rw-r--r-- | quantum/process_keycode/process_unicode_common.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode_common.c b/quantum/process_keycode/process_unicode_common.c index 6012b4f07..1dbdec3e7 100644 --- a/quantum/process_keycode/process_unicode_common.c +++ b/quantum/process_keycode/process_unicode_common.c | |||
| @@ -16,11 +16,13 @@ | |||
| 16 | 16 | ||
| 17 | #include "process_unicode_common.h" | 17 | #include "process_unicode_common.h" |
| 18 | 18 | ||
| 19 | static uint8_t input_mode; | ||
| 19 | uint8_t mods; | 20 | uint8_t mods; |
| 20 | 21 | ||
| 21 | void set_unicode_input_mode(uint8_t os_target) | 22 | void set_unicode_input_mode(uint8_t os_target) |
| 22 | { | 23 | { |
| 23 | input_mode = os_target; | 24 | input_mode = os_target; |
| 25 | eeprom_update_byte(EECONFIG_UNICODEMODE, os_target); | ||
| 24 | } | 26 | } |
| 25 | 27 | ||
| 26 | uint8_t get_unicode_input_mode(void) { | 28 | uint8_t get_unicode_input_mode(void) { |
| @@ -92,6 +94,18 @@ void unicode_input_finish (void) { | |||
| 92 | if (mods & MOD_BIT(KC_RGUI)) register_code(KC_RGUI); | 94 | if (mods & MOD_BIT(KC_RGUI)) register_code(KC_RGUI); |
| 93 | } | 95 | } |
| 94 | 96 | ||
| 97 | __attribute__((weak)) | ||
| 98 | uint16_t hex_to_keycode(uint8_t hex) | ||
| 99 | { | ||
| 100 | if (hex == 0x0) { | ||
| 101 | return KC_0; | ||
| 102 | } else if (hex < 0xA) { | ||
| 103 | return KC_1 + (hex - 0x1); | ||
| 104 | } else { | ||
| 105 | return KC_A + (hex - 0xA); | ||
| 106 | } | ||
| 107 | } | ||
| 108 | |||
| 95 | void register_hex(uint16_t hex) { | 109 | void register_hex(uint16_t hex) { |
| 96 | for(int i = 3; i >= 0; i--) { | 110 | for(int i = 3; i >= 0; i--) { |
| 97 | uint8_t digit = ((hex >> (i*4)) & 0xF); | 111 | uint8_t digit = ((hex >> (i*4)) & 0xF); |
