mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 16:46:13 +01:00
Compare commits
No commits in common. "659c58b30766a7b8dd2b4d2677d90663af8fefcf" and "8b8e9e491963bcfdd963942e0ae0abfdf1eaf918" have entirely different histories.
659c58b307
...
8b8e9e4919
|
@ -206,13 +206,12 @@ 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"));
|
forceAP = true;
|
||||||
SSid = F("UPDATE_ESP_FIRMWARE");
|
}
|
||||||
forceAP = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
checkForOK(2000, true, false);
|
checkForOK(2000, true, false);
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.0.5"
|
#define VERSION "5.0.4"
|
||||||
// 5.0.5 - Bugfix version detection logic and better message
|
|
||||||
// 5.0.4 - Bugfix: <JR> misses default roster.
|
// 5.0.4 - Bugfix: <JR> misses default roster.
|
||||||
// 5.0.3 - Check bad AT firmware version
|
// 5.0.3 - Check bad AT firmware version
|
||||||
// 5.0.2 - Bugfix: ESP32 30ms off time
|
// 5.0.2 - Bugfix: ESP32 30ms off time
|
||||||
|
|
Loading…
Reference in New Issue
Block a user