diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-10-03 10:27:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-03 10:27:06 -0400 |
commit | 86065dca4d11338f778e40c2cd545e0b85c489c0 (patch) | |
tree | 65d970311abc031e21b9215569751b1b0e9f9d72 | |
parent | fc86ef6c956589e3feb798633197a486d8143771 (diff) | |
parent | a3f5a4cf5839fe29dd37400d72c5e353812002f8 (diff) |
Merge pull request #799 from coderkun/master
Declare Unicode method hex_to_keycode() as “weak”
-rw-r--r-- | quantum/process_keycode/process_unicode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index a5d7dca21e..6a30afe293 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c @@ -2,6 +2,7 @@ static uint8_t input_mode; +__attribute__((weak)) uint16_t hex_to_keycode(uint8_t hex) { if (hex == 0x0) { |