From 507dfa231f1ec0bbd6d6402d2587f767ecff5c30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Gjels=C3=B8?= <36234524+gjelsoe@users.noreply.github.com> Date: Fri, 8 Nov 2024 19:11:24 +0100 Subject: [PATCH] Changed def. sendTo changed to uint32_t, some text changed to reflect changes. --- meshtastic/module_config.proto | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 06b49faa..988b5f61 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -205,12 +205,11 @@ message ModuleConfig { /* If this is set, message are send to channel set in "sendTo" else a "NodeID"*/ bool sendTochannel = 9; - /* Send module messages to Channel/Node. - * Example: A name "Detection" would result in a message send to channel "Detection" if sendToChannel **is** set - * Example: A name "01020304" would result in a message send to node "01020304" if sendToChannel is **not** set - * Maximum length of 12 characters + /* Send module messages to Channel Index/UserID. + * Example: A number set as "1" would result in a message send to channel index "1" if sendToChannel is set + * Example: A number of "FFFFFFFF" would result in a message send to UserID "FFFFFFFF" if sendToChannel is not set */ - string sendTo = 10; + uint32_t sendTo = 10; } /*