From c9a8a3fffc1e4e6093cd61178eef4ffecc322c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Sun, 22 May 2022 12:56:24 +0200 Subject: [PATCH] Config refactor for Module Config --- deviceonly.proto | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/deviceonly.proto b/deviceonly.proto index 58ea86a..6bf83ef 100644 --- a/deviceonly.proto +++ b/deviceonly.proto @@ -7,6 +7,7 @@ option go_package = "github.com/meshtastic/gomeshproto"; import "channel.proto"; import "config.proto"; import "mesh.proto"; +import "module_config.proto"; option java_outer_classname = "DeviceOnly"; @@ -166,4 +167,41 @@ message LocalConfig { * TODO: REPLACE */ Config.LoRaConfig lora = 6; +} + +message LocalModuleConfig { + /* + * TODO: REPLACE + */ + ModuleConfig.MQTTConfig mqtt = 1; + + /* + * TODO: REPLACE + */ + ModuleConfig.SerialConfig serial = 2; + + /* + * TODO: REPLACE + */ + ModuleConfig.ExternalNotificationConfig external_notification = 3; + + /* + * TODO: REPLACE + */ + ModuleConfig.StoreForwardConfig store_forward = 4; + + /* + * TODO: REPLACE + */ + ModuleConfig.RangeTestConfig range_test = 5; + + /* + * TODO: REPLACE + */ + ModuleConfig.TelemetryConfig telemetry = 6; + + /* + * TODO: REPLACE + */ + ModuleConfig.CannedMessageConfig canned_message = 7; } \ No newline at end of file