Browse Source

Save flash by defining underlying type and omitting number value.

Marek Bel 5 years ago
parent
commit
e1216934ef
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Firmware/mmu.cpp

+ 2 - 2
Firmware/mmu.cpp

@@ -32,9 +32,9 @@
 
 
 namespace
 namespace
 {
 {
-    enum class S
+    enum class S : uint_least8_t
     {
     {
-        WaitStealthMode = -5,
+        WaitStealthMode,
         GetFindaInit,
         GetFindaInit,
         GetBuildNr,
         GetBuildNr,
         GetVersion,
         GetVersion,