mhdong
mhdong
Hi @llamasoft 1. When scanning all channels, does it respect the current wifi_country_t? Yes, the scanned channel must meet the requirements of the country code. For detailes, please refer to...
Hi @KaeLL It is recommended that if you want to reapply the new configuration in WiFi init, you first need to do WiFi deinit. Adding new error codes may damage...
Hi @safocl Yes,you can introduce a bool wifi_is_reset_init_config(const wifi_init_config_t *new_config) to check. `bool wifi_is_reset_init_config(const wifi_init_config_t *new_config) { if(global_old_config same as new_config) { return true; } else { return false; }...
Hi @AxelLin If the router retains the previous connection information, it may cause various errors during the next connection attempt. The symptoms include no response to authentication, leading to auth...
Hi @rechrtb @AxelLin v5.3 https://github.com/espressif/esp-idf/commit/2c4812092d7d43f27d1edd9744bf0e721846056d v5.0 https://github.com/espressif/esp-idf/commit/ab10ce03cdec9a220f72f8ca77cf40c612d6188b other branchs have not benn backported yet. We will backport it to other branchs as soon as possible
Hi @0xFEEDC0DE64 If the scan fails to find the target AP, `WIFI_EVENT_STA_DISCONNECTED`_ will arise and the reason code could either be ``WIFI_REASON_NO_AP_FOUND`` or ``WIFI_REASON_NO_AP_FOUND_W_COMPATIBLE_SECURITY`` or ``WIFI_REASON_NO_AP_FOUND_IN_AUTHMODE_THRESHOLD`` or ``WIFI_REASON_NO_AP_FOUND_IN_RSSI_THRESHOLD`` depending of...
Hi @AxelLin NO_AP_FOUND_IN_AUTHMODE_THRESHOLD and WIFI_REASON_NO_AP_FOUND_W_COMPATIBLE_SECURITY is specific reasons for customer. Thank you very much for your suggestion. If all possible reasons are added as reason codes, it will result in...
Hi @0xFEEDC0DE64 Thank you very much for your suggestion. For ease of use, we will continuously optimize the reason codes for scan fails to find the target AP.
Hi @Slider0007 An additional configuration item, CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL, can be used to set the size threshold when a single allocation should prefer external memory. Please reference, https://github.com/espressif/esp-idf/blob/9f4e8eb0cde35308f2d46c2f419f4c170116bf9c/docs/en/api-guides/external-ram.rst?plain=1#L101
Hi @Slider0007 If CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP is enabled. Prefer to allocate a chunk of memory in SPIRAM firstly. If failed, try to allocate it in internal memory then. CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP will cause CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL...