diff options
| author | Nick Brassel <nick@tzarc.org> | 2025-03-21 23:38:34 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-21 23:38:34 +1100 |
| commit | 2b00b846dce1d1267dfdb2a3c2972a367cc0dd44 (patch) | |
| tree | 6d801a8d83c58ee646b789bfa9ab912857ee7d8c /quantum/process_keycode/process_steno.c | |
| parent | c9d62ddc78e879053241202b288d0129073b07dc (diff) | |
Non-volatile memory data repository pattern (#24356)
* First batch of eeconfig conversions.
* Offset and length for datablocks.
* `via`, `dynamic_keymap`.
* Fix filename.
* Commentary.
* wilba leds
* satisfaction75
* satisfaction75
* more keyboard whack-a-mole
* satisfaction75
* omnikeyish
* more whack-a-mole
* `generic_features.mk` to automatically pick up nvm repositories
* thievery
* deferred variable resolve
* whitespace
* convert api to structs/unions
* convert api to structs/unions
* convert api to structs/unions
* fixups
* code-side docs
* code size fix
* rollback
* nvm_xxxxx_erase
* Updated location of eeconfig magic numbers so non-EEPROM nvm drivers can use them too.
* Fixup build.
* Fixup compilation error with encoders.
* Build fixes.
* Add `via_ci` keymap to onekey to exercise VIA bindings (and thus dynamic keymap et.al.), fixup compilation errors based on preprocessor+sizeof.
* Build failure rectification.
Diffstat (limited to 'quantum/process_keycode/process_steno.c')
| -rw-r--r-- | quantum/process_keycode/process_steno.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/quantum/process_keycode/process_steno.c b/quantum/process_keycode/process_steno.c index c491d6f1d8..4789461352 100644 --- a/quantum/process_keycode/process_steno.c +++ b/quantum/process_keycode/process_steno.c | |||
| @@ -20,9 +20,6 @@ | |||
| 20 | #ifdef VIRTSER_ENABLE | 20 | #ifdef VIRTSER_ENABLE |
| 21 | # include "virtser.h" | 21 | # include "virtser.h" |
| 22 | #endif | 22 | #endif |
| 23 | #ifdef STENO_ENABLE_ALL | ||
| 24 | # include "eeprom.h" | ||
| 25 | #endif | ||
| 26 | 23 | ||
| 27 | // All steno keys that have been pressed to form this chord, | 24 | // All steno keys that have been pressed to form this chord, |
| 28 | // stored in MAX_STROKE_SIZE groups of 8-bit arrays. | 25 | // stored in MAX_STROKE_SIZE groups of 8-bit arrays. |
| @@ -128,13 +125,13 @@ static const uint16_t combinedmap_second[] PROGMEM = {STN_S2, STN_KL, STN_WL, ST | |||
| 128 | 125 | ||
| 129 | #ifdef STENO_ENABLE_ALL | 126 | #ifdef STENO_ENABLE_ALL |
| 130 | void steno_init(void) { | 127 | void steno_init(void) { |
| 131 | mode = eeprom_read_byte(EECONFIG_STENOMODE); | 128 | mode = eeconfig_read_steno_mode(); |
| 132 | } | 129 | } |
| 133 | 130 | ||
| 134 | void steno_set_mode(steno_mode_t new_mode) { | 131 | void steno_set_mode(steno_mode_t new_mode) { |
| 135 | steno_clear_chord(); | 132 | steno_clear_chord(); |
| 136 | mode = new_mode; | 133 | mode = new_mode; |
| 137 | eeprom_update_byte(EECONFIG_STENOMODE, mode); | 134 | eeconfig_update_steno_mode(mode); |
| 138 | } | 135 | } |
| 139 | #endif // STENO_ENABLE_ALL | 136 | #endif // STENO_ENABLE_ALL |
| 140 | 137 | ||
