From 8816b4715dcba5daea409a988ce476426f317728 Mon Sep 17 00:00:00 2001 From: Dane Date: Sun, 11 Jan 2026 17:26:39 +1100 Subject: [PATCH 1/2] add logging modes. --- meshtastic/module_config.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 673c298..8d59df2 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -340,6 +340,9 @@ message ModuleConfig { //Used to configure and view some parameters of MeshSolar. //https://heltec.org/project/meshsolar/ MS_CONFIG = 8; + //Logs mesh traffic to the serial pins, ideal for logging via openLog or similar. + LOG = 9; // includes other packets + LOGTEXT = 10; // only text (channel & DM) } /* From 76cca1402619bd0e70ebd77ac344c3ea7e680b48 Mon Sep 17 00:00:00 2001 From: Dane Date: Sun, 11 Jan 2026 17:28:18 +1100 Subject: [PATCH 2/2] formatting --- 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 8d59df2..7825937 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -337,10 +337,10 @@ message ModuleConfig { // VE.Direct is a serial protocol used by Victron Energy products // https://beta.ivc.no/wiki/index.php/Victron_VE_Direct_DIY_Cable VE_DIRECT = 7; - //Used to configure and view some parameters of MeshSolar. - //https://heltec.org/project/meshsolar/ + // Used to configure and view some parameters of MeshSolar. + // https://heltec.org/project/meshsolar/ MS_CONFIG = 8; - //Logs mesh traffic to the serial pins, ideal for logging via openLog or similar. + // Logs mesh traffic to the serial pins, ideal for logging via openLog or similar. LOG = 9; // includes other packets LOGTEXT = 10; // only text (channel & DM) }