From ff4ff06d5ee7d5c63d2dd1b7f2c5f8e29a36be11 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sat, 16 Jan 2021 15:02:38 -0800 Subject: [PATCH] Added preferences for the serialplugin --- mesh.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mesh.proto b/mesh.proto index 21fd8f3..1fdf386 100644 --- a/mesh.proto +++ b/mesh.proto @@ -667,6 +667,18 @@ message RadioConfig { router.cpp) */ repeated uint32 ignore_incoming = 103; + + /** + Preferences for the SerialPlugin + + FIXME - Move this out of UserPreferences and into a section for plugin configuration. + */ + bool serialplugin_enabled = 120; + bool serialplugin_echo = 121; + uint32 serialplugin_rxd = 122; + uint32 serialplugin_txd = 123; + uint32 serialplugin_timeout = 124; + } UserPreferences preferences = 1;