mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
Compare commits
4 Commits
v16.0.0-RC
...
log-mqtt-c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4e1df4a0db | ||
|
|
b34fdd937b | ||
|
|
775f9dcb14 | ||
|
|
47c5a92648 |
17
Changelog.md
17
Changelog.md
@@ -1,3 +1,20 @@
|
|||||||
|
## [16.0.0-RC3] - 2024-10-05
|
||||||
|
|
||||||
|
For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.7.0...v16.0.0-RC1)
|
||||||
|
|
||||||
|
#### Known issues
|
||||||
|
Please check the [issues](https://github.com/jomjol/AI-on-the-edge-device/issues) and
|
||||||
|
[discussions](https://github.com/jomjol/AI-on-the-edge-device/discussions) before reporting a new issue.
|
||||||
|
|
||||||
|
#### Core Changes
|
||||||
|
Only changes since RC2 are listed:
|
||||||
|
- Renamed MQTT topic from `rate_per_digitalization_round` to `rate_per_digitization_round` (change happened already in RC1)
|
||||||
|
|
||||||
|
#### Bug Fixes
|
||||||
|
Only changes since RC2 are listed:
|
||||||
|
- Re-did revertion of TFlite submodule update as certain modules crash with it (#3269) (change was lost)
|
||||||
|
|
||||||
|
|
||||||
## [16.0.0-RC2] - 2024-10-04
|
## [16.0.0-RC2] - 2024-10-04
|
||||||
|
|
||||||
For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.7.0...v16.0.0-RC1)
|
For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.7.0...v16.0.0-RC1)
|
||||||
|
|||||||
@@ -174,8 +174,7 @@ static esp_err_t mqtt_event_handler_cb(esp_mqtt_event_handle_t event) {
|
|||||||
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, not authorized. Check username/password (0x05)");
|
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, not authorized. Check username/password (0x05)");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Other event id:" + event->error_handle->connect_return_code);
|
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection Refused with unknown event id:" + std::to_string(event->error_handle->connect_return_code));
|
||||||
ESP_LOGE(TAG, "Other event id:%d", event->error_handle->connect_return_code);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DEBUG_DETAIL_ON
|
#ifdef DEBUG_DETAIL_ON
|
||||||
|
|||||||
Reference in New Issue
Block a user