Commit graph

72 commits

Author SHA1 Message Date
Garth Vander Houwen 9477f95acf
Merge branch 'master' into patch-2 2022-10-27 11:31:59 -07:00
IZ1IVA c152030ec0
Fixed discrepancy 2022-10-27 19:58:14 +02:00
IZ1IVA 2b8860591c
Fixed discrepancy 2022-10-27 19:55:43 +02:00
Garth Vander Houwen fccdfd6199 Explicit links to prevent 404 2022-10-26 07:52:20 -07:00
Ahmed Kaddoura 052dfb1957 Update region codes 2022-10-22 09:50:38 -07:00
Garth Vander Houwen 532103c34c Remove soft ap example entirely 2022-10-19 19:23:37 -07:00
Garth Vander Houwen 31f56bd13c say less about softap 2022-10-19 18:59:37 -07:00
sigmahour d9636ee481 update 2022-10-11 14:23:35 -04:00
sigmahour 1797911ccc minor changes 2022-10-11 13:07:35 -04:00
sigmahour 17379a0a33 more minor changes 2022-10-11 12:28:42 -04:00
sigmahour 94b054a216 minor changes 2022-10-11 12:20:29 -04:00
sigmahour 7a23c701b0 removed modem setting info from channel roles 2022-10-11 12:12:44 -04:00
sigmahour 4905644599 changes made per review 2022-10-11 11:47:48 -04:00
sigmahour 2e50d10549 minor changes 2022-10-10 16:20:50 -04:00
sigmahour eb31f0f6b5 minor updates 2022-10-10 14:09:49 -04:00
sigmahour ea67ce0559 updates to channel information 2022-10-10 13:57:39 -04:00
Lennart Buhl 5566eccc90
Merge branch 'master' into settingsfix 2022-10-06 15:24:42 +02:00
Lennart Buhl 23ff3e0e01 remove superfluous line 2022-10-06 15:24:16 +02:00
Lennart Buhl bd18278c55 Fix several typos: 2022-10-05 15:25:07 +02:00
Lennart Buhl 9b5bea347c Correct some device settings doc issues 2022-10-05 15:10:46 +02:00
Mike Coles 97b1e91768
Merge branch 'master' into docs 2022-09-30 14:37:40 -04:00
Mike Coles 552547ca1f updated coding rate to match radiohead docs 2022-09-30 19:34:04 +01:00
Garth Vander Houwen ea5d7a2b8e fix position smart CLI command 2022-09-30 10:43:26 -07:00
Garth Vander Houwen 8157385fb7 Fix network page 2022-09-30 10:00:14 -07:00
Garth Vander Houwen 601e87e595 network updates 2022-09-30 09:58:28 -07:00
Garth Vander Houwen f19ea18213 Cleanup docs commands for user and device 2022-09-30 09:43:26 -07:00
Ted MARKSON d2153fab6d
added display prefix to CLI command 2022-09-29 09:08:51 -04:00
sigmahour 2cd11ea789 updates to wifi, user, and ham docs 2022-09-23 13:43:46 -04:00
Garth Vander Houwen a07062dbd7 Clean up CLI bluetooth commands 2022-09-22 19:12:45 -07:00
Garth Vander Houwen 41d1e1b8f1 more proto config change updates 2022-09-22 18:51:41 -07:00
Garth Vander Houwen 19f359b3df More proto cleanup 2022-09-22 15:41:33 -07:00
Garth Vander Houwen bca1cc334f Proto cleanup items 2022-09-22 15:41:16 -07:00
sigmahour 32fb660ca2 added max length params 2022-09-22 17:56:12 -04:00
sigmahour e409065833 updated config table with network page 2022-09-22 17:27:08 -04:00
sigmahour b1bbd15901 updated docs for wifi/network config 2022-09-22 17:17:02 -04:00
Garth Vander Houwen 929d6b0378 Update position broadcst command and legacy flasher install 2022-09-15 09:23:21 -07:00
Garth Vander Houwen 5b2b00dd67
Merge branch 'master' into patch-5 2022-09-12 12:08:49 -07:00
Vladislav Osmanov ffeba15437
channel names updated according the latest protobufs
https://github.com/meshtastic/Meshtastic-protobufs/blob/master/config.proto
2022-09-12 20:50:51 +03:00
Vladislav Osmanov 517ff71dcf
region codes updated according the latest protobufs
https://github.com/meshtastic/Meshtastic-protobufs/blob/master/config.proto
2022-09-12 20:46:16 +03:00
Vladislav Osmanov aa1a938a4e
channel names updated for the latest protobufs 2022-09-12 20:21:02 +03:00
Vladislav Osmanov d658447615
Merge branch 'master' into patch-6 2022-09-12 20:17:06 +03:00
Garth Vander Houwen 153cde15b1
Merge branch 'master' into patch-2 2022-09-11 08:09:11 -07:00
Vladislav Osmanov f1f4f46f1d
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.
```
2022-09-11 18:02:03 +03:00
Vladislav Osmanov df29475655
param value is case sensitive
Using Python CLI v1.3.29:
```
>meshtastic --set lora.region eu433
Connected to radio
lora.region does not have an enum called ru, so you can not set it.
Choices in sorted order are:
    ANZ
    CN
    EU433
    EU868
    IN
    JP
    KR
    NZ865
    RU
    TH
    TW
    US
    Unset
LocalConfig and LocalModuleConfig do not have attribute lora.region.
```
2022-09-11 17:57:46 +03:00
Vladislav Osmanov 5ccb5dfb37
param value is case sensitive
Using Python CLI v1.3.29:
```
>meshtastic --set bluetooth.mode randomPin
Connected to radio
bluetooth.mode does not have an enum called randomPin, so you can not set it.
Choices in sorted order are:
    FixedPin
    NoPin
    RandomPin
LocalConfig and LocalModuleConfig do not have attribute bluetooth.mode.
```
2022-09-11 17:27:03 +03:00
Vladislav Osmanov 3e64d9d7ae
param is case sensitive
Using Python CLI v1.3.29:
```
>meshtastic --set device.role client
Connected to radio
device.role does not have an enum called client, so you can not set it.
Choices in sorted order are:
    Client
    ClientMute
    Router
    RouterClient
LocalConfig and LocalModuleConfig do not have attribute device.role.
```
2022-09-11 17:22:33 +03:00
Garth Vander Houwen 429dbac089
1.2 End of Life (#400)
* Start of 1.2 EOL cleanup

* initial docs updates

* Move more 1.2 files

* Move remaining 1.2 files

* Fix links

* Fix links

* More links

* The rest of the broken links

* Missed a couple of links

* Really last link

* Links to the final 1.2 firmare and android app

* add last flasher

* fix gps_disabled

* update enthusiast page

* Delete 1.2 from apple apps

* Fix error in module index
2022-09-09 13:48:23 +10:00
Garth Vander Houwen 4120685f58 Add bluetooth config 2022-08-24 08:36:58 -07:00
Garth Vander Houwen a1210afc34 1.3 Config updates 2022-08-18 07:34:39 -07:00
Garth Vander Houwen 7d7c943235 Fix wifi docs 2022-08-08 16:56:18 -07:00