From be1eb0b170ec899c32badea45e96249718d25ef4 Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Mon, 3 May 2021 14:08:11 -0600 Subject: [PATCH] channel settings --- website/docs/settings/channel.md | 36 ++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/website/docs/settings/channel.md b/website/docs/settings/channel.md index 952aa08a..32dec040 100644 --- a/website/docs/settings/channel.md +++ b/website/docs/settings/channel.md @@ -6,12 +6,40 @@ sidebar_label: Channel ## Overview - +Channel settings are an integral part of the way your devices communicate across the mesh. If you have mismatched channel settings, your radios will be unable to communicate with one another. ## Settings -| Setting | Acceptable Values | Default | Description | -| :-----: | :---------------: | :-----: | :---------: | -| region | `Unset`, `US`, `EU433`, `EU865`, `CN`, `JP`, `ANZ`, `KR`, `TW`, `RU` | `Unset` | Sets the region code for my radio. | + +| Setting | Acceptable Values | Default | +| :-----: | :---------------: | :-----: | +| region | `Unset`, `US`, `EU433`, `EU865`, `CN`, `JP`, `ANZ`, `KR`, `TW`, `RU` | `Unset` | + +### region + +The `region` variable sets which region your radio is configured to work in. It is important to ensure that you've set it to the correct region. If left `Unset`, it will default to `US` settings. + +| Name | Center Frequency | Spacing | Number of Channels | Power Limit | +| :--: | :-------: | :-----: | :----------------: | :---------: | +| US | 903.08 | 2.16 | 13 | 0 | +| EU433 | 433.175 | 0.2 | 8 | 0 | +| EU865 | 865.2 | 0.3 | 10 | 0 | +| CN | 470.0 | 2.0 | 20 | 0 | +| JP | 920.0 | 0.5 | 10 | 13 | +| ANZ | 916.0 | 0.5 | 20 | 0 | +| KR | 921.9 | 0.2 | 8 | 0 | +| TW | 923.0 | 0.2 | 10 | 0 | +| RU | 868.9 | 0.2 | 2 | 20 | +| Unset | 903.08 | 2.16 | 13 | 0 | +:::note +For more details about `region` settings, you can see the source code [here](https://github.com/meshtastic/Meshtastic-device/blob/master/src/mesh/RadioInterface.cpp) +::: ## Details + +### CLI Examples + +#### Set Region +```bash +meshtastic --set region Unset +```