From 5d6dfb2011debc6fbd955bff634d7732dccf63d5 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Thu, 21 Jan 2021 20:06:53 -0800 Subject: [PATCH] Configuration for the external notification plugin ... also snuck in a "mode" for the serialplugin --- mesh.proto | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/mesh.proto b/mesh.proto index a6953c8..e0c02ad 100644 --- a/mesh.proto +++ b/mesh.proto @@ -819,7 +819,18 @@ message RadioConfig { uint32 serialplugin_rxd = 122; uint32 serialplugin_txd = 123; uint32 serialplugin_timeout = 124; + uint32 serialplugin_mode = 125; + + /** + Preferences for the ExternalNotificationPlugin + FIXME - Move this out of UserPreferences and into a section for plugin configuration. + */ + bool externalnotificationplugin_enabled = 126; + uint32 externalnotificationplugin_output = 127; + uint32 externalnotificationplugin_output_ms = 128; + uint32 externalnotificationplugin_mode = 129; + } UserPreferences preferences = 1; @@ -1196,4 +1207,4 @@ message ToRadio { */ ChannelSettings set_channel = 103; } -} \ No newline at end of file +}