aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_unicode_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/process_keycode/process_unicode_common.c')
-rw-r--r--quantum/process_keycode/process_unicode_common.c32
1 files changed, 31 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_unicode_common.c b/quantum/process_keycode/process_unicode_common.c
index 31bc3b7ab..1dbdec3e7 100644
--- a/quantum/process_keycode/process_unicode_common.c
+++ b/quantum/process_keycode/process_unicode_common.c
@@ -1,10 +1,28 @@
1/* Copyright 2017 Jack Humbert
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
1#include "process_unicode_common.h" 17#include "process_unicode_common.h"
2 18
19static uint8_t input_mode;
3uint8_t mods; 20uint8_t mods;
4 21
5void set_unicode_input_mode(uint8_t os_target) 22void set_unicode_input_mode(uint8_t os_target)
6{ 23{
7 input_mode = os_target; 24 input_mode = os_target;
25 eeprom_update_byte(EECONFIG_UNICODEMODE, os_target);
8} 26}
9 27
10uint8_t get_unicode_input_mode(void) { 28uint8_t get_unicode_input_mode(void) {
@@ -76,10 +94,22 @@ void unicode_input_finish (void) {
76 if (mods & MOD_BIT(KC_RGUI)) register_code(KC_RGUI); 94 if (mods & MOD_BIT(KC_RGUI)) register_code(KC_RGUI);
77} 95}
78 96
97__attribute__((weak))
98uint16_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
79void register_hex(uint16_t hex) { 109void register_hex(uint16_t hex) {
80 for(int i = 3; i >= 0; i--) { 110 for(int i = 3; i >= 0; i--) {
81 uint8_t digit = ((hex >> (i*4)) & 0xF); 111 uint8_t digit = ((hex >> (i*4)) & 0xF);
82 register_code(hex_to_keycode(digit)); 112 register_code(hex_to_keycode(digit));
83 unregister_code(hex_to_keycode(digit)); 113 unregister_code(hex_to_keycode(digit));
84 } 114 }
85} \ No newline at end of file 115}