You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- apply new incoming sta config immediately if not connected
- suppress disconnect event from old config
- tested with these conditions:
- not using NVRAM to save station config
- using NVRAM to save station config
- test results: new sta config is applied and connected without prior
disconnection (unless already connected)
- bugfix: IRAM limitation for UART applies only to ESP32
- workaround: bug in `esp_wifi_get_protocol()` causing memory corruption
- updated CI pipeline to build mqtt/tcp example from Registry Component
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
# Changelog
2
2
3
+
## 2.7.0
4
+
5
+
### Bug Fixes
6
+
Restructured the ESP-Hosted-MCU commits
7
+
8
+
## 2.6.6
9
+
10
+
### Bug Fixes
11
+
12
+
- Fixed sta connection to remove extra disconnected event if incoming station config is different from current station config
13
+
- IRAM size limitation when using UART transport only applies to ESP32, not to all SOCs.
14
+
- workaround a bug in `esp_wifi_get_protocol()` that can cause memory corruption. See this [ESP-IDF Issue](https://github.com/espressif/esp-idf/issues/17502).
15
+
- updated CI pipelines to build mqtt/tcp example from Registry Component on master branch
0 commit comments