[Keyboard] Georgi improvements (#5899)
* Georgi improvements * The writing was in the -Wall
This commit is contained in:
parent
7a0174f871
commit
d0c9ad6433
8 changed files with 395 additions and 2 deletions
|
@ -11,6 +11,18 @@ uint32_t pChord = 0; // Previous Chord
|
|||
int pChordIndex = 0; // Keys in previousachord
|
||||
uint32_t pChordState[32]; // Previous chord sate
|
||||
uint32_t stickyBits = 0; // Or'd with every incoming press
|
||||
#ifndef NO_DEBUG
|
||||
char debugMsg[32];
|
||||
#endif
|
||||
|
||||
// StenoLayer
|
||||
uint32_t releasedChord = 0; // Keys released from current chord
|
||||
uint32_t tChord = 0; // Protects state of cChord
|
||||
|
||||
#ifndef STENOLAYERS
|
||||
uint32_t stenoLayers[] = { PWR };
|
||||
size_t stenoLayerCount = sizeof(stenoLayers)/sizeof(stenoLayers[0]);
|
||||
#endif
|
||||
|
||||
// Mode state
|
||||
enum MODE { STENO = 0, QWERTY, COMMAND };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue