diff options
author | Drashna Jaelre <drashna@live.com> | 2022-05-30 22:02:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-30 22:02:55 -0700 |
commit | cda343acbe45826225edac75eaa63216bf76d874 (patch) | |
tree | 398a14c907baa8e6521fc9d001a4619289e1d7a3 /users/drashna/split/transport_sync.h | |
parent | b554e4b612d24109ce714554a306043a01382cbd (diff) |
[Keymap] Drashna update for post Q2 merge (#17241)
Diffstat (limited to 'users/drashna/split/transport_sync.h')
-rw-r--r-- | users/drashna/split/transport_sync.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/users/drashna/split/transport_sync.h b/users/drashna/split/transport_sync.h index f38fdcf1ef..77e5140eda 100644 --- a/users/drashna/split/transport_sync.h +++ b/users/drashna/split/transport_sync.h @@ -12,12 +12,13 @@ extern char keylog_str[OLED_KEYLOGGER_LENGTH]; typedef union { uint32_t raw; struct { - bool audio_enable :1; - bool audio_clicky_enable :1; - bool tap_toggling :1; - uint8_t unicode_mode :3; - bool swap_hands :1; - bool host_driver_disabled :1; + bool audio_enable :1; + bool audio_clicky_enable :1; + bool tap_toggling :1; + uint8_t unicode_mode :3; + bool swap_hands :1; + bool host_driver_disabled :1; + uint8_t unicode_typing_mode :3; }; } user_runtime_config_t; |