From 083d9e719028e8dad9437f41905b602839fdffc3 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Thu, 22 Feb 2024 00:31:35 -0600 Subject: [PATCH] Properly put module_settings inside the Channelsettings message --- meshtastic/channel.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meshtastic/channel.proto b/meshtastic/channel.proto index 8c5bbdf..2b10aaf 100644 --- a/meshtastic/channel.proto +++ b/meshtastic/channel.proto @@ -81,6 +81,11 @@ message ChannelSettings { * If true, messages seen on the internet will be forwarded to the local mesh. */ bool downlink_enabled = 6; + + /* + * Per-channel module settings. + */ + ModuleSettings module_settings = 7; } /* @@ -142,9 +147,4 @@ message Channel { * TODO: REPLACE */ Role role = 3; - - /* - * Per-channel module settings. - */ - ModuleSettings module_settings = 4; }