1
0
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.

2 changed files with 7 additions and 9 deletions

View File

@ -206,15 +206,14 @@ 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')) {
DIAG(F("You need to up/downgrade the ESP firmware")); SSid = F("DCCEX_SAYS_BROKEN_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

View File

@ -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