Add Bool for WIFI operation

prerequisite for https://github.com/meshtastic/Meshtastic-device/issues/1595
This commit is contained in:
Thomas Göttgens 2022-08-04 10:11:18 +02:00 committed by GitHub
parent 59293c211a
commit 024e9aaeab
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;
}
/*