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
ARM_WIFI_Initialize takes a callback parameter cb_event. This is only used for ARM_WIFI_EVENT_AP_CONNECT and ARM_WIFI_EVENT_AP_DISCONNECT.
According to help the cb_event parameter can be NULL if no callback signals are required, however if AT_NOTIFY_STATION_CONNECTED or AT_NOTIFY_STATION_DISCONNECTED events are generated then the event callback is called without checking it if is NULL.
This occurs if the connection to the remote host drops for some reason.
ARM_WIFI_Initialize
takes a callback parametercb_event
. This is only used forARM_WIFI_EVENT_AP_CONNECT
andARM_WIFI_EVENT_AP_DISCONNECT
.According to help the
cb_event
parameter can be NULL if no callback signals are required, however ifAT_NOTIFY_STATION_CONNECTED
orAT_NOTIFY_STATION_DISCONNECTED
events are generated then the event callback is called without checking it if is NULL.This occurs if the connection to the remote host drops for some reason.
CMSIS-Driver/WiFi/ESP32/WiFi_ESP32.c
Line 375 in b2a6e81
Probably just needs a preceding test
if(pCtrl->cb_event)
The text was updated successfully, but these errors were encountered: