esp32/tcpip_adapter: softap supports max 10 stations

The max number of stations softap supports is modified from 8 to 10
This commit is contained in:
Liu Zhi Fu
2016-10-28 16:53:49 +08:00
parent 19c4996bc8
commit 4f2719236f
4 changed files with 6 additions and 5 deletions

View File

@@ -73,8 +73,8 @@ typedef struct {
}tcpip_adapter_sta_info_t;
typedef struct {
tcpip_adapter_sta_info_t sta[ESP_WIFI_MAX_CONN_NUM+2];
uint8_t num;
tcpip_adapter_sta_info_t sta[ESP_WIFI_MAX_CONN_NUM];
int num;
}tcpip_adapter_sta_list_t;
#endif