From 8e5d7d1189bf13a547049136cfcca1a24314df06 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sat, 6 Feb 2021 20:39:38 -0800 Subject: [PATCH] Add configurations for RangeTestPlugin & StoreForwardPlugin --- mesh.proto | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/mesh.proto b/mesh.proto index cc2a217..88a78c7 100644 --- a/mesh.proto +++ b/mesh.proto @@ -845,6 +845,21 @@ message RadioConfig { bool ext_notification_plugin_alert_message = 130; bool ext_notification_plugin_alert_bell = 131; + /** + Preferences for the RangeTestPlugin + + FIXME - Move this out of UserPreferences and into a section for plugin configuration. + */ + bool range_test_plugin_enabled = 132; + bool range_test_plugin_sender = 133; + + /** + Preferences for the StoreForwardPlugin + + FIXME - Move this out of UserPreferences and into a section for plugin configuration. + */ + bool store_forward_plugin_enabled = 136; + bool store_forward_plugin_records = 137; } UserPreferences preferences = 1;