Merge pull request #2943 from enkiller/wlan

[components][drivers][wlan] WLAN 支持被动扫描
This commit is contained in:
Bernard Xiong 2019-08-13 11:38:44 +08:00 committed by GitHub
commit 94b0b0cd2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -545,6 +545,7 @@ rt_err_t rt_wlan_dev_scan(struct rt_wlan_device *device, struct rt_wlan_info *in
scan_info.channel_min = -1;
scan_info.channel_max = -1;
}
scan_info.passive = info->hidden ? RT_TRUE : RT_FALSE;
p_scan_info = &scan_info;
}
result = rt_device_control(RT_DEVICE(device), RT_WLAN_CMD_SCAN, p_scan_info);

View File

@ -476,6 +476,7 @@ struct rt_scan_info
rt_uint8_t bssid[6];
rt_int16_t channel_min;
rt_int16_t channel_max;
rt_bool_t passive;
};
struct rt_wlan_dev_ops