From 44e369e1813f8ec9c7aefe1aac7d0adc75e11f8a Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Sat, 20 Jan 2024 10:46:27 +0100 Subject: [PATCH] Add `ignore_mqtt` to LoRa config --- meshtastic/config.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 27ec65d..a844065 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -866,6 +866,11 @@ message Config { * in ignore_incoming will have packets they send dropped on receive (by router.cpp) */ repeated uint32 ignore_incoming = 103; + + /* + * If true, the device will not process any packets received via LoRa that passed via MQTT anywhere on the path towards it. + */ + bool ignore_mqtt = 104; } message BluetoothConfig { @@ -914,4 +919,4 @@ message Config { LoRaConfig lora = 6; BluetoothConfig bluetooth = 7; } -} +} \ No newline at end of file