[BCM943362WCD4] Passive Scan Mode

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hi Everyone...I need your help.

I want to implement a Passive Scan Mode using WICED 3.1.1.

So I changed codes as blow

before..

wwd_wifi_scan( WICED_SCAN_TYPE_ACTIVE..

after

wwd_wifi_scan( WICED_SCAN_TYPE_PASSIVE...

But...I think it's not operate as passive scan mode yet..

Please Let me know what i miss..?

Thansks.

0 Likes
1 Reply
SeyhanA_31
Employee
Employee
250 replies posted 100 replies posted 50 replies posted

Hi,

I have changed the the scanning from WICED_SCAN_TYPE_ACTIVE to WICED_SCAN_TYPE_PASSIVE in wiced_wifi_scan_networks(..) and it scans the networks.

typedef enum

{

    WICED_SCAN_TYPE_ACTIVE              = 0x00,  /**< Actively scan a network by sending 802.11 probe(s)        */

    WICED_SCAN_TYPE_PASSIVE            = 0x01,  /**< Passively scan a network by listening for beacons from APs */

    WICED_SCAN_TYPE_PROHIBITED_CHANNELS = 0x04  /**< Passively scan on channels not enabled by the country code */

} wiced_scan_type_t;

Seyhan

0 Likes