mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-10 05:26:52 +03:00
rolling v20210809
This commit is contained in:
@@ -45,7 +45,13 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
|
|||||||
|
|
||||||
**General remark:** Beside the `firmware.bin`, typically also the content of `/html` needs to be updated!
|
**General remark:** Beside the `firmware.bin`, typically also the content of `/html` needs to be updated!
|
||||||
|
|
||||||
##### Rolling (2021-08-07)
|
|
||||||
|
|
||||||
|
##### Rolling (2021-08-09)
|
||||||
|
|
||||||
|
* remove reconnect limit in wlan module
|
||||||
|
|
||||||
|
Rolling (2021-08-07)
|
||||||
|
|
||||||
* GPIO: using the general mqtt main topic for GPIO
|
* GPIO: using the general mqtt main topic for GPIO
|
||||||
* Update tfmicro to new master (2021-08-07)
|
* Update tfmicro to new master (2021-08-07)
|
||||||
|
|||||||
@@ -115,14 +115,10 @@ static void event_handler(void* arg, esp_event_base_t event_base,
|
|||||||
LEDBlinkTask(200, 1, true);
|
LEDBlinkTask(200, 1, true);
|
||||||
esp_wifi_connect();
|
esp_wifi_connect();
|
||||||
} else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) {
|
} else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) {
|
||||||
if (s_retry_num < EXAMPLE_ESP_MAXIMUM_RETRY) {
|
// if (s_retry_num < EXAMPLE_ESP_MAXIMUM_RETRY){
|
||||||
// LEDBlinkTask(200, 1, true);
|
|
||||||
esp_wifi_connect();
|
esp_wifi_connect();
|
||||||
s_retry_num++;
|
s_retry_num++;
|
||||||
ESP_LOGI(TAG, "retry to connect to the AP");
|
ESP_LOGI(TAG, "retry to connect to the AP");
|
||||||
} else {
|
|
||||||
xEventGroupSetBits(s_wifi_event_group, WIFI_FAIL_BIT);
|
|
||||||
}
|
|
||||||
ESP_LOGI(TAG,"connect to the AP fail");
|
ESP_LOGI(TAG,"connect to the AP fail");
|
||||||
} else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) {
|
} else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) {
|
||||||
ip_event_got_ip_t* event = (ip_event_got_ip_t*) event_data;
|
ip_event_got_ip_t* event = (ip_event_got_ip_t*) event_data;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="6f06af1";
|
const char* GIT_REV="32f15fc";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="rolling";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2021-08-07 14:13";
|
const char* BUILD_TIME="2021-08-09 21:31";
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="6f06af1";
|
const char* GIT_REV="32f15fc";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="rolling";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2021-08-07 14:13";
|
const char* BUILD_TIME="2021-08-09 21:31";
|
||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user