From 024e9aaeabc5937ade8dcce354f1d2d857865a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Thu, 4 Aug 2022 10:11:18 +0200 Subject: [PATCH] Add Bool for WIFI operation prerequisite for https://github.com/meshtastic/Meshtastic-device/issues/1595 --- config.proto | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/config.proto b/config.proto index 6e45825..3a4f5d7 100644 --- a/config.proto +++ b/config.proto @@ -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; } /*