From e82617e10c48ab2a4f2241fc19ca496dbd79f8cc Mon Sep 17 00:00:00 2001 From: Erik R Norell Date: Thu, 6 Jan 2022 18:52:00 +0300 Subject: [PATCH] Disable TX from the LoRa radio. Useful for hot-swapping antennas and other tests. --- radioconfig.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/radioconfig.proto b/radioconfig.proto index 3587629..9c0472c 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -595,6 +595,12 @@ message RadioConfig { */ string mqtt_password = 156; + /* + * Disable TX from the LoRa radio. Useful for hot-swapping antennas and other tests. + * Defaults to false + */ + bool is_lora_tx_disabled = 157; + } UserPreferences preferences = 1;