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.
```
This commit is contained in:
Vladislav Osmanov 2022-09-11 18:02:03 +03:00 committed by GitHub
parent 02dbabbb16
commit f1f4f46f1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
:::
</TabItem>
</Tabs>
</Tabs>