CC3235SF是否支持5G AP mode?
Viki Shi:
支持
• Enable/Disable 5-GHz Channels
For CC3235S and CC3235SF devices, this setting enables or disables 5-GHz channels in STA mode.
By default, 5-GHz channels are enabled in the system and the scanning time might be longer due to
the total number of enabled channels. In deployments that do not use these channels, disabling the
channels might improve the scan time and power consumption.
The mode can be changed by setting 0 to disable 5-GHz channels and 1 to enable.
Example:
_i16 Status;
_u8 Mode = 0; //0 disable 5GHz mode
Status = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID, WLAN_GENERAL_PARAM_OPT_ENABLE_5G, 1, (_u8
*)&Mode);
if( Status )
{
/* error */
}
user5065865:
回复 Viki Shi:
CC3235 STA模式下支持5G这个我知道,我需要确认AP模式下是否支持5G。
Viki Shi:
回复 user5065865:
通过SL_WLAN_AP_OPT_CHANNEL设置
user5065865:
回复 Viki Shi:
好的,谢谢指导。