I put processing on Event
void WiFiEvent (WiFiEvent_t event) {
uint8_t macAddr [6];
unsigned char number_client = wifi_softap_get_station_num ();
struct station_info * station = wifi_softap_get_station_info ();
I see a connection attempt (number_client> 0)
station_info is not empty, sizeof (station-> bssid) = 6
When trying to display "bssid" data
Serial.println (macToString (station-> bssid));
or
Serial.print (station-> bssid [0], HEX);
Serial.print (station-> bssid [6], HEX);
..
Reboot
Exception (28):
epc1 = 0x4020106e epc2 = 0x00000000 epc3 = 0x00000000 excvaddr = 0x00000004 depc = 0x00000000
>>> stack >>>
ctx: sys
sp: 3fffed60 end: 3fffffb0 offset: 01a0
3fffef00: 00000071 00000001 4010404e 3ffedf68
Thank.