Merge pull request #184 from meshtastic/wifi-enabled

Add Bool for WIFI operation
pull/188/head
Garth Vander Houwen 2022-08-04 07:16:03 -07:00 zatwierdzone przez GitHub
commit cb2fb77bd8
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -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;
}
/*