mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
Bugfix version detection logic and better message
This commit is contained in:
parent
8b8e9e4919
commit
0b9ec7460b
|
@ -206,14 +206,15 @@ wifiSerialState WifiInterface::setup2(const FSH* SSid, const FSH* password,
|
||||||
while(!wifiStream->available());
|
while(!wifiStream->available());
|
||||||
version[i]=wifiStream->read();
|
version[i]=wifiStream->read();
|
||||||
StringFormatter::printEscape(version[i]);
|
StringFormatter::printEscape(version[i]);
|
||||||
|
}
|
||||||
if ((version[0] == '0') ||
|
if ((version[0] == '0') ||
|
||||||
(version[0] == '2' && version[2] == '0') ||
|
(version[0] == '2' && version[2] == '0') ||
|
||||||
(version[0] == '2' && version[2] == '2' && version[4] == '0' && version[6] == '0')) {
|
(version[0] == '2' && version[2] == '2' && version[4] == '0' && version[6] == '0')) {
|
||||||
SSid = F("DCCEX_SAYS_BROKEN_FIRMWARE");
|
DIAG(F("You need to up/downgrade the ESP firmware"));
|
||||||
|
SSid = F("UPDATE_ESP_FIRMWARE");
|
||||||
forceAP = true;
|
forceAP = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
checkForOK(2000, true, false);
|
checkForOK(2000, true, false);
|
||||||
|
|
||||||
#ifdef DONT_TOUCH_WIFI_CONF
|
#ifdef DONT_TOUCH_WIFI_CONF
|
||||||
|
|
Loading…
Reference in New Issue
Block a user