ESP8266 Developer Zone The Official ESP8266 Forum 2015-01-29T11:16:12+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=151 2015-01-29T11:16:12+08:00 2015-01-29T11:16:12+08:00 https://bbs.espressif.com:443/viewtopic.php?t=151&p=588#p588 <![CDATA[Re: SDK 0.9.4 wifi_station_scan callback return 0 sta in pro]]> Statistics: Posted by Her Mary — Thu Jan 29, 2015 11:16 am


]]>
2015-01-24T02:49:50+08:00 2015-01-24T02:49:50+08:00 https://bbs.espressif.com:443/viewtopic.php?t=151&p=547#p547 <![CDATA[Re: SDK 0.9.4 wifi_station_scan callback return 0 sta in pro]]>

with simple add:

Code:

wifi_promiscuous_enable(0);

before execute wifi_station_scan

Statistics: Posted by reaper7 — Sat Jan 24, 2015 2:49 am


]]>
2015-01-23T16:15:49+08:00 2015-01-23T16:15:49+08:00 https://bbs.espressif.com:443/viewtopic.php?t=151&p=542#p542 <![CDATA[SDK 0.9.4 wifi_station_scan callback return 0 sta in promisc]]>

Code:

wifi_promiscuous_enable(1);

and next start station scan:

Code:

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:

wifi_promiscuous_enable(0);


but all code with scan works well and return available AP's when I only comment:

Code:

wifi_promiscuous_enable(1);

Statistics: Posted by reaper7 — Fri Jan 23, 2015 4:15 pm


]]>