Merge pull request #184 from meshtastic/wifi-enabled

Add Bool for WIFI operation
This commit is contained in:
Garth Vander Houwen 2022-08-04 07:16:03 -07:00 committed by GitHub
commit cb2fb77bd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -304,13 +304,18 @@ message Config {
/*
* If set, the node will operate as an AP (and DHCP server), otherwise it
* will be a station
*/
*/
bool ap_mode = 3;
/*
* If set, the node AP will broadcast as a hidden SSID
*/
*/
bool ap_hidden = 4;
/*
* If set, wifi is enabled. Previously done through setting ssid and psk
*/
bool enabled = 5;
}
/*