Code: Select all
wifi_promiscuous_enable(1);
and next start station scan:
Code: Select all
wifi_station_scan(NULL, scan_done_callback))
then scan_done_callback return 0 stations
even if I disable promiscuous mode before execute start scan:
Code: Select all
wifi_promiscuous_enable(0);
but all code with scan works well and return available AP's when I only comment:
Code: Select all
wifi_promiscuous_enable(1);