We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 544b78c commit fe43d5aCopy full SHA for fe43d5a
src/Wippersnapper_V2.cpp
@@ -1295,7 +1295,10 @@ void Wippersnapper_V2::connect() {
1295
// Call the TL signal decoder to parse the incoming JSON data
1296
callDecodeB2D();
1297
#ifndef OFFLINE_MODE_WOKWI
1298
- WsV2._fileSystemV2->WriteFileConfig();
+ //TODO: Don't write the config file if unchanged versus current config
1299
+ if (WsV2._global_auto_config) {
1300
+ WsV2._fileSystemV2->WriteFileConfig();
1301
+ }
1302
#endif // OFFLINE_MODE_WOKWI used for CI test simulations, lacks TinyUSB
1303
WS_DEBUG_PRINTLN("[APP] Hardware configured!");
1304
// Blink status LED to green to indicate successful configuration
0 commit comments