mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-19 03:36:28 +00:00
Add debug prints to functions that change input_mode
This commit is contained in:
parent
5d771ca933
commit
32c93bf6cd
1 changed files with 3 additions and 0 deletions
|
@ -30,6 +30,7 @@ uint8_t mods;
|
|||
void set_unicode_input_mode(uint8_t os_target) {
|
||||
input_mode = os_target;
|
||||
eeprom_update_byte(EECONFIG_UNICODEMODE, os_target);
|
||||
dprintf("input_mode set to: %u\n", input_mode);
|
||||
}
|
||||
|
||||
uint8_t get_unicode_input_mode(void) {
|
||||
|
@ -56,6 +57,7 @@ void unicode_input_mode_init(void) {
|
|||
}
|
||||
#endif
|
||||
|
||||
dprintf("input_mode init to: %u\n", input_mode);
|
||||
first_flag = true;
|
||||
}
|
||||
}
|
||||
|
@ -68,6 +70,7 @@ void cycle_unicode_input_mode(void) {
|
|||
# if UNICODE_CYCLE_PERSIST
|
||||
eeprom_update_byte(EECONFIG_UNICODEMODE, input_mode);
|
||||
# endif
|
||||
dprintf("input_mode cycle to: %u\n", input_mode);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue