mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-02-02 08:42:11 -08:00
Merge branch 'master' into add-wismesh-devices
This commit is contained in:
commit
af4e4400c9
|
@ -141,6 +141,11 @@ us on [Discord](https://discord.com/invite/ktMAKGBnBs) to add your group.
|
|||
|
||||
- [Meshtastic Japan Community](https://www.facebook.com/share/g/BQCGxZhw9SxFQja8/?mibextid=K35XfP)
|
||||
|
||||
## Latvia
|
||||
|
||||
- [Meshtastic Latvija](https://mesh.dodies.lv)
|
||||
- [Meshtastic Latvija Matrix Space](https://matrix.to/#/#meshtastic-lv:matrix.org)
|
||||
|
||||
## Lithuania
|
||||
|
||||
- [Meshtastic Lietuva](https://www.facebook.com/groups/1122509422249414)
|
||||
|
|
|
@ -19,12 +19,12 @@ This is a mini-spec on a HTTP API which can be used by browser based clients to
|
|||
## Request headers
|
||||
|
||||
- `Content-Type: application/x-protobuf`
|
||||
- Indicates protobuf content (Meshtatic protobufs)
|
||||
- Indicates protobuf content (Meshtastic protobufs)
|
||||
|
||||
## Response headers
|
||||
|
||||
- `Content-Type: application/x-protobuf`
|
||||
- Indicates protobuf content (Meshtatic protobufs)
|
||||
- Indicates protobuf content (Meshtastic protobufs)
|
||||
- `X-Protobuf-Schema: <URI to the .proto schema file>`
|
||||
- Not required but recommended for documentation/reflection purposes
|
||||
|
||||
|
|
|
@ -22,6 +22,17 @@ Meshtastic uses [PlatformIO](https://platformio.org), a development environment
|
|||
If you want to build the RP2040 targets and get a 'Filename too long' error on Windows, please refer to [the Platformio documentation for this toolchain](https://arduino-pico.readthedocs.io/en/latest/platformio.html#important-steps-for-windows-users-before-installing)
|
||||
:::
|
||||
|
||||
## Update the Build Environment
|
||||
|
||||
1. Change to `firmware` folder
|
||||
```shell
|
||||
cd firmware
|
||||
```
|
||||
2. Gather the latest changes to the [Meshtastic Firmware](https://github.com/meshtastic/firmware) repository and [submodules](https://github.com/meshtastic/firmware/blob/master/.gitmodules)
|
||||
```shell
|
||||
git pull --recurse-submodules
|
||||
```
|
||||
|
||||
## Build
|
||||
|
||||
1. Open the newly cloned folder in [Visual Studio Code](https://code.visualstudio.com). If you do this for the first time, this can take quite some while as PlatformIO will download all the necessary tooling and libraries. Also if platformio is not installed, VSCode will ask you to install it, probably requiring a restart of the program.
|
||||
|
|
|
@ -14,7 +14,7 @@ Chatter V2.0 sports:
|
|||
- an i2c port to easily connect a GPS
|
||||
- a different routing
|
||||
|
||||
Both versions are fully supported by Meshastic with the same firmware.
|
||||
Both versions are fully supported by Meshtastic with the same firmware.
|
||||
|
||||
The Meshtastic firmware works with the stock hardware, however, the LLCC68 LoRa chip cripples the RF capability of the device. As is, the Chatter can only communicate on the Medium-Slow channel.
|
||||
Switching the chip with the pin-compatible and more capable Heltec RA62 (as mentioned in this Github issue https://github.com/meshtastic/firmware/issues/2896) unlock the full potential of the device.
|
||||
|
|
|
@ -204,7 +204,7 @@ This will give you a detailed view of the service status and any potential error
|
|||
|
||||
By following these steps, you set up a systemd service for meshtasticd that will start automatically at boot and restart if it crashes. You can manage it using the standard systemctl commands (start, stop, restart, status, etc.).
|
||||
|
||||
#### View Logs of Mesthastic
|
||||
#### View Logs of Meshtastic
|
||||
To view the log output of the meshtasticd service, use the below command to read them out of the system journal.
|
||||
|
||||
```shell
|
||||
|
|
Loading…
Reference in a new issue