From afc13d6123138d044d3df6d2e08e453c2b2f7b07 Mon Sep 17 00:00:00 2001 From: vidplace7 Date: Sun, 13 Jul 2025 17:53:47 -0400 Subject: [PATCH] Add event_mode options to LocalConfig --- meshtastic/localonly.options | 1 + meshtastic/localonly.proto | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 meshtastic/localonly.options diff --git a/meshtastic/localonly.options b/meshtastic/localonly.options new file mode 100644 index 00000000..db4a55e3 --- /dev/null +++ b/meshtastic/localonly.options @@ -0,0 +1 @@ +*LocalConfig.event_mode_title max_size:33 diff --git a/meshtastic/localonly.proto b/meshtastic/localonly.proto index bcb27964..e8bda0b0 100644 --- a/meshtastic/localonly.proto +++ b/meshtastic/localonly.proto @@ -63,6 +63,18 @@ message LocalConfig { * The part of the config that is specific to Security settings */ Config.SecurityConfig security = 9; + + /* + * Set when the firmware has been compiled with event mode support + */ + bool event_mode_enabled = 10; + + /* + * Title for event mode firmware + * Ex: "burningmesh2025" + * Set at compile time, consumed by clients to modify UI behavior + */ + string event_mode_title = 11; } message LocalModuleConfig {