Search found 4 matches

by wwll123
Tue Feb 09, 2021 9:51 am
Forum: ESP-IDF
Topic: What is the proper way to init and deinit SoftAP + Https server with DHCP?
Replies: 0
Views: 2016

What is the proper way to init and deinit SoftAP + Https server with DHCP?

Hi, Module: esp32-wrover-b ESP-IDF: ESP-IDF v4.1 Here is the init flow for SoftAp + Https server with DHCP. ESP_ERROR_CHECK(esp_netif_init()); ESP_ERROR_CHECK(esp_event_loop_create_default()); // Init ap mode and dhcp wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK(esp_wifi_init...
by wwll123
Tue Jan 26, 2021 1:54 am
Forum: ESP-IDF
Topic: ESP32 would reboot after running for ~3 days
Replies: 5
Views: 4293

Re: ESP32 would reboot after running for ~3 days

Hi, It looks something related to log cache. Are you using which log level? In menuconfig: Bootloader log verbosity: Info Default baud rate: 921600 bps 'idf.py' monitor baud rate: 921600 bps UART console baud rate: 921600 In code: All components are set to ERROR level. One component is set to INFO ...
by wwll123
Mon Jan 25, 2021 7:36 am
Forum: ESP-IDF
Topic: ESP32 would reboot after running for ~3 days
Replies: 5
Views: 4293

ESP32 would reboot after running for ~3 days

Hi, I am running burn-in test for ESP32 with output log. All 4 modules would be rebooted after running for ~3 days with the same assertion error in log.c. Does anyone have any clue about this error? Module: esp32-wrover-b ESP-IDF: ESP-IDF v4.1 Error log: (292721597) AWS: Delta callback end assertion...
by wwll123
Thu Dec 31, 2020 3:55 am
Forum: General Discussion
Topic: How mbedtls and lwip (sntp) handle Year 2038 problem? (IDFGH-4533)
Replies: 1
Views: 2084

How mbedtls and lwip (sntp) handle Year 2038 problem? (IDFGH-4533)

Hi, My device is currently using ESP-IDF v4.1 with custom toolchain in order to support 64bit time_t. (https://docs.espressif.com/projects/esp-idf/en/v4.1/get-started/linux-setup-scratch.html) However, with certificate expiry check enable in mbedtls and using sntp from lwip to sync utc time, I would...