From f1f4f46f1dbb31cc0863bb7a039ac5132e0e7934 Mon Sep 17 00:00:00 2001 From: Vladislav Osmanov <7123463+osmanovv@users.noreply.github.com> Date: Sun, 11 Sep 2022 18:02:03 +0300 Subject: [PATCH 1/3] param value is case sensitive Using Python CLI v1.3.29: ``` >meshtastic --set lora.modem_preset longSlow Connected to radio lora.modem_preset does not have an enum called longSlow, so you can not set it. Choices in sorted order are: LongFast LongSlow MedFast MedSlow ShortFast ShortSlow VLongSlow LocalConfig and LocalModuleConfig do not have attribute lora.modem_preset. ``` --- docs/settings/config/lora.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/settings/config/lora.mdx b/docs/settings/config/lora.mdx index bf3e8c17..16511eba 100644 --- a/docs/settings/config/lora.mdx +++ b/docs/settings/config/lora.mdx @@ -107,7 +107,7 @@ LoRa config conmmands are available in the python CLI. Example commands are belo | Setting | Acceptable Values | Default | | :----------: | :---------------------------------------------------------------------------: | :---------------: | -| lora.modem_preset | `longFast`, `longSlow`, `vlongSlow`, `medSlow`, `medFast`, `shortSlow`, `shortFast` | `longFast` | +| lora.modem_preset | `LongFast`, `LongSlow`, `VLongSlow`, `MedSlow`, `MedFast`, `ShortSlow`, `ShortFast` | `LongFast` | | lora.region | `Unset`, `us`, `eu433`, `eu868`, `cn`, `jp`, `anz`, `kr`, `tw`, `ru` ,`in`, ` nz865`, `th` | `Unset` | | lora.hop_limit | `1`,`2`,`3`,`4`,`5`,`6`,`7` | `3` @@ -126,4 +126,4 @@ All lora config options are available in the Web UI. ::: - \ No newline at end of file + From aa1a938a4ecf063f6761edc4464222c290ab80d1 Mon Sep 17 00:00:00 2001 From: Vladislav Osmanov <7123463+osmanovv@users.noreply.github.com> Date: Mon, 12 Sep 2022 20:21:02 +0300 Subject: [PATCH 2/3] channel names updated for the latest protobufs --- docs/settings/config/lora.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/settings/config/lora.mdx b/docs/settings/config/lora.mdx index 16511eba..c292bb6b 100644 --- a/docs/settings/config/lora.mdx +++ b/docs/settings/config/lora.mdx @@ -107,7 +107,7 @@ LoRa config conmmands are available in the python CLI. Example commands are belo | Setting | Acceptable Values | Default | | :----------: | :---------------------------------------------------------------------------: | :---------------: | -| lora.modem_preset | `LongFast`, `LongSlow`, `VLongSlow`, `MedSlow`, `MedFast`, `ShortSlow`, `ShortFast` | `LongFast` | +| lora.modem_preset | `LongFast`, `LongSlow`, `VeryLongSlow`, `MediumSlow`, `MediumFast`, `ShortSlow`, `ShortFast` | `LongFast` | | lora.region | `Unset`, `us`, `eu433`, `eu868`, `cn`, `jp`, `anz`, `kr`, `tw`, `ru` ,`in`, ` nz865`, `th` | `Unset` | | lora.hop_limit | `1`,`2`,`3`,`4`,`5`,`6`,`7` | `3` From ffeba15437f07343ea356143501d52740f2018cf Mon Sep 17 00:00:00 2001 From: Vladislav Osmanov <7123463+osmanovv@users.noreply.github.com> Date: Mon, 12 Sep 2022 20:50:51 +0300 Subject: [PATCH 3/3] channel names updated according the latest protobufs https://github.com/meshtastic/Meshtastic-protobufs/blob/master/config.proto --- docs/settings/config/lora.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/settings/config/lora.mdx b/docs/settings/config/lora.mdx index c292bb6b..ea93668d 100644 --- a/docs/settings/config/lora.mdx +++ b/docs/settings/config/lora.mdx @@ -107,7 +107,7 @@ LoRa config conmmands are available in the python CLI. Example commands are belo | Setting | Acceptable Values | Default | | :----------: | :---------------------------------------------------------------------------: | :---------------: | -| lora.modem_preset | `LongFast`, `LongSlow`, `VeryLongSlow`, `MediumSlow`, `MediumFast`, `ShortSlow`, `ShortFast` | `LongFast` | +| lora.modem_preset | `LONG_FAST`, `LONG_SLOW`, `VERY_LONG_SLOW`, `MEDIUM_SLOW`, `MEDIUM_FAST`, `SHORT_SLOW`, `SHORT_FAST` | `LONG_FAST` | | lora.region | `Unset`, `us`, `eu433`, `eu868`, `cn`, `jp`, `anz`, `kr`, `tw`, `ru` ,`in`, ` nz865`, `th` | `Unset` | | lora.hop_limit | `1`,`2`,`3`,`4`,`5`,`6`,`7` | `3`