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.

CC3235SF: How do I set the maximum number of STA connections

Part Number: CC3235SF

According to the manual, CC3235SF as the host, can connect up to 4 STAs, is there any way to change to 3 STAs

  • Hi,

    When CC3235 is at AP mode, it can be connected up to four clients. If you want to limit this number, you can use API sl_WlanSet() with option SL_WLAN_CFG_AP_ID  SL_WLAN_AP_OPT_MAX_STATIONS like this:

    _u8 max_ap_stations
    _u16 len = 1;
    _u16  config_opt = SL_WLAN_AP_OPT_MAX_STATIONS;
    sl_WlanGet(SL_WLAN_CFG_AP_ID, &config_opt, &len, (_u8 *)&max_ap_stations);

    Jan