1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

Make softAP documentation state the correct min value (0) for the max_connection argument. (#5165)

This commit is contained in:
aerlon
2018-10-01 19:27:16 +02:00
committed by Develo
parent d547c47667
commit 24a1d22730
3 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ static bool softap_config_equal(const softap_config& lhs, const softap_config& r
* @param passphrase (for WPA2 min 8 char, for open use NULL)
* @param channel WiFi channel number, 1 - 13.
* @param ssid_hidden Network cloaking (0 = broadcast SSID, 1 = hide SSID)
* @param max_connection Max simultaneous connected clients, 1 - 8. https://bbs.espressif.com/viewtopic.php?f=46&t=481&p=1832&hilit=max_connection#p1832
* @param max_connection Max simultaneous connected clients, 0 - 8. https://bbs.espressif.com/viewtopic.php?f=46&t=481&p=1832&hilit=max_connection#p1832
*/
bool ESP8266WiFiAPClass::softAP(const char* ssid, const char* passphrase, int channel, int ssid_hidden, int max_connection) {