From fb9c76dd4381faac4aff491b2ca615d67ef793d9 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 20:01:22 +0100 Subject: [PATCH] Missed one.. --- meshtastic/module_config.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 98988a26..fce64883 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -203,8 +203,8 @@ message ModuleConfig { bool use_pullup = 8; /* - * If this is set true, messages are send as a direct message to the NodeNum set in "sendTo". - * If set to false, messages are broadcasted to a channel with the index set in "sendTo". + * If this is set true, messages are send as a direct message to the NodeNum set in "send_to". + * If set to false, messages are broadcasted to a channel with the index set in "send_to". */ bool send_as_dm = 9; @@ -213,7 +213,7 @@ message ModuleConfig { * Example: A number set as "1" would result in a message send to channel index "1" if sendToChannel is set * Example: A number of "0x11111111" would result in a message send to NodeNum "0x11111111" if sendToChannel is not set */ - uint32 sendTo = 10; + uint32 send_to = 10; } /*