]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/georgi/sten.c
Remove more commented out MCUs
[qmk_firmware.git] / keyboards / georgi / sten.c
index 1a84c7893f103d4241f821e3a9045dd14216231c..197abaf92f5af62c2ad7457616edc65e4e12f779 100644 (file)
@@ -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 };