add steps to install on linux

This may help some users to easily upload firmware to the board.
pull/87/head
Tomáš Kukrál 2023-01-20 22:31:31 +01:00
rodzic 0d07288fb7
commit 01dd36946a
1 zmienionych plików z 18 dodań i 0 usunięć

Wyświetl plik

@ -30,6 +30,7 @@ The best success is to use PlatformIO (and it is the only platform where I can s
* When installed click 'the ant head' on the left and choose import the project on the right.
* Just open the folder and you can compile the Firmware.
### Configuration
* You can find all nessesary settings to change for your configuration in **data/tracker.json**.
@ -37,6 +38,23 @@ The best success is to use PlatformIO (and it is the only platform where I can s
* To upload it to your board you have to do this via **Upload File System image** in PlatformIO!
* To find the 'Upload File System image' click the PlatformIO symbol (the little alien) on the left side, choos your configuration, click on 'Platform' and search for 'Upload File System image'.
#### Step on console
You may not need to use PlatformIO because compilation and configuration can be done via console.
```
# switch to virtual env, for example using pipenv
pipenv shell
# install platformio
pipenv install platformio
# upload to board
pio run -t upload
```
## LoRa iGate
Look at my other project: a [LoRa iGate](https://github.com/peterus/LoRa_APRS_iGate)