Open pietgeursen opened 3 years ago
Hey, Just reading over some of the code. Saw this dangling else
When if (ConfigManager::getInstance().getBoardConfig().L_SX127X) is true, readState(state); won't get called.
if (ConfigManager::getInstance().getBoardConfig().L_SX127X)
true
readState(state);
Is that desired behaviour?
Also, just got some boards and got them set up so painlessly, congrats on such a polished, awesome project!
Hey, Just reading over some of the code. Saw this dangling else
When
if (ConfigManager::getInstance().getBoardConfig().L_SX127X)
istrue
,readState(state);
won't get called.Is that desired behaviour?