Skip to content

Commit

Permalink
docs say max is 4, respect the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
geohot committed Jan 12, 2018
1 parent 864cd8f commit 2573d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boardesp/proxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ void ICACHE_FLASH_ATTR wifi_init() {
config.ssid_len = strlen(ssid);
config.authmode = AUTH_WPA2_PSK;
config.beacon_interval = 100;
config.max_connection = 10;
config.max_connection = 4;
wifi_softap_set_config(&config);

//set IP
Expand Down

0 comments on commit 2573d86

Please sign in to comment.