mirror of
https://github.com/lumapu/ahoy.git
synced 2025-04-28 17:56:21 +02:00
0.8.123
* fix ESP8266 static IP #1643 #1608 * update MqTT library which enhances stability
This commit is contained in:
parent
4ca05620dc
commit
49cb7621be
5 changed files with 8 additions and 4 deletions
|
@ -78,7 +78,7 @@ def renameFw(path_define, env):
|
|||
os.rename("src/.pio/build/" + env + "/firmware.bin", dst + fname)
|
||||
os.rename("src/.pio/build/" + env + "/firmware.elf.7z", dst + fname[:-3] + "elf.7z")
|
||||
|
||||
if env[:5] == "esp32":
|
||||
if env[:5] == "esp32" or env[:4] == "open":
|
||||
os.rename("src/.pio/build/" + env + "/bootloader.bin", dst + "bootloader.bin")
|
||||
os.rename("src/.pio/build/" + env + "/partitions.bin", dst + "partitions.bin")
|
||||
genOtaBin(dst)
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Development Changes
|
||||
|
||||
## 0.8.123 - 2024-05-30
|
||||
* fix ESP8266 static IP #1643 #1608
|
||||
* update MqTT library which enhances stability
|
||||
|
||||
## 0.8.122 - 2024-05-23
|
||||
* add button for donwloading coredump (ESP32 variants only)
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
//-------------------------------------
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 8
|
||||
#define VERSION_PATCH 122
|
||||
#define VERSION_PATCH 123
|
||||
//-------------------------------------
|
||||
typedef struct {
|
||||
uint8_t ch;
|
||||
|
|
|
@ -71,6 +71,7 @@ class AhoyWifi : public AhoyNetwork {
|
|||
DBGPRINT(" " + String(bssid[j], HEX));
|
||||
}
|
||||
DBGPRINTLN("");
|
||||
setStaticIp();
|
||||
WiFi.begin(mConfig->sys.stationSsid, mConfig->sys.stationPwd, 0, &bssid[0]);
|
||||
mWifiConnecting = true;
|
||||
break;
|
||||
|
@ -84,7 +85,6 @@ class AhoyWifi : public AhoyNetwork {
|
|||
break;
|
||||
|
||||
case NetworkState::CONNECTED:
|
||||
setStaticIp();
|
||||
break;
|
||||
|
||||
case NetworkState::GOT_IP:
|
||||
|
|
|
@ -29,7 +29,7 @@ lib_deps =
|
|||
https://github.com/esphome/ESPAsyncWebServer @ ^3.2.0
|
||||
https://github.com/nRF24/RF24.git#v1.4.8
|
||||
paulstoffregen/Time @ ^1.6.1
|
||||
https://github.com/bertmelis/espMqttClient#v1.6.0
|
||||
https://github.com/bertmelis/espMqttClient#v1.7.0
|
||||
bblanchon/ArduinoJson @ ^6.21.3
|
||||
https://github.com/JChristensen/Timezone @ ^1.2.4
|
||||
olikraus/U8g2 @ ^2.35.9
|
||||
|
|
Loading…
Add table
Reference in a new issue