Other Parts Discussed in Thread: CC3220MODA
你(们)好
我们的客户正在考虑 CC3220MODA。
1。
根据 SWRU464, 提供了 sl_WlanGetNetworkList()。
http://www.ti.com/lit/ug/swru464/swru464.pdf
它是否可用于获取 WiFi 射频场密度?
2.
还有 driverlib API。
我们可以从何处获取这些 API 参考?
贝斯特雷加兹
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Other Parts Discussed in Thread: CC3220MODA
你(们)好
我们的客户正在考虑 CC3220MODA。
1。
根据 SWRU464, 提供了 sl_WlanGetNetworkList()。
http://www.ti.com/lit/ug/swru464/swru464.pdf
它是否可用于获取 WiFi 射频场密度?
2.
还有 driverlib API。
我们可以从何处获取这些 API 参考?
贝斯特雷加兹
您好!
在这里可以找到有关如何使用 sl_WlanGetNetworkList() API ( http://dev.ti.com/tirex/content/simplelink_cc32xx_sdk_2_10_00_04/docs/wifi_host_driver_api/html/group___wlan.html#struct_sl_wlan_network_entry__t )的说明。
SDK 示例 network_terminal 中显示了如何使用 sl_WlanGetNetworkList() API。
只是一个简化的... 通过调用 sl_WlanGetNetworkList(),将返回找到的网络的列表。 条目的结构如下:
typedef 结构 { _u8 SSID[SL_WLAN_SSID_MAX_LENGTH]; _u8 BSSID[SL_WLAN_BSSID_LENGTH]; _u8 SsidLen; _i8 RSSI; _i16 SecurityInfo; _i8通道; _i8保留[1]; }SlWlanNetworkEntry_t;
1月