mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
changes based on feedback
This commit is contained in:
parent
d9131a7077
commit
a3293a20c3
|
@ -35,7 +35,7 @@ Before proceeding with the setup, ensure the device meets the following requirem
|
||||||
- Necessary system libraries should be installed before building or installing Meshtastic.
|
- Necessary system libraries should be installed before building or installing Meshtastic.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
sudo apt install libgpiod-dev libyaml-cpp-dev
|
sudo apt install libgpiod-dev libyaml-cpp-dev libbluetooth-dev
|
||||||
```
|
```
|
||||||
- And optionally for web server support
|
- And optionally for web server support
|
||||||
```shell
|
```shell
|
||||||
|
@ -94,14 +94,18 @@ Webserver:
|
||||||
|
|
||||||
### GPS Support
|
### GPS Support
|
||||||
|
|
||||||
- Enabling UART for GPS hats on Pi5 requires modifications in `/boot/firmware/config.txt`:
|
Enabling UART for GPS hats requires modifications in `/boot/firmware/config.txt`:
|
||||||
|
|
||||||
```plaintext
|
```plaintext
|
||||||
|
# Needed for all Pi device.
|
||||||
enable_uart=1
|
enable_uart=1
|
||||||
|
|
||||||
|
# Needed for the Pi 5 only.
|
||||||
dtoverlay=uart0
|
dtoverlay=uart0
|
||||||
```
|
```
|
||||||
|
|
||||||
The correct port for UART GPS after a reboot is `/dev/ttyAMA0`.
|
- The correct port for UART GPS on the Pi 5 after a reboot is `/dev/ttyAMA0`.
|
||||||
|
- The correct port for UART GPS on earlier Pi versions after a reboot is `/dev/ttyS0`.
|
||||||
|
|
||||||
### Persistence
|
### Persistence
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue