@@ -5,7 +5,6 @@ This project demonstrates how to implement a single channel LoRa gateway (LoRaHu
5
5
using SenseCAP Indicator.
6
6
7
7
This project contains the following components:
8
- * ` firmware ` : contains precompiled binaries for all supported platforms.
9
8
* ` components/liblorahub ` : the Hardware Abstraction Layer (HAL) on top of the radio driver.
10
9
* ` components/radio_drivers ` : the sx126x, llcc68, lr11xx radio drivers and associated hardware abstraction layer.
11
10
* ` components/smtc_ral ` : the radio abstraction layer and board/shields definitions.
@@ -89,17 +88,13 @@ radio usage.
89
88
# 3. Usage
90
89
91
90
This project comes with precompiled binaries that can be flashed on the
92
- supported platforms listed above. The files are located in the ` firmware ` directory
93
- of this project.
91
+ supported platforms listed above.
94
92
95
93
For flashing without the ESP-IDF installed, skip directly to the "flash with
96
94
esptool" section below.
97
95
98
96
For each supported platform/radio, the following binary files are provided:
99
- * ` xxx_bootloader.bin ` : esp32 bootloader
100
- * ` xxx_partition-table.bin ` : esp32 flash partition table
101
- * ` xxx_lorahub.bin ` : the LoRaHub firmware
102
-
97
+ * ` Indicator_Lorahub_v1.0.0.bin ` : indicator_lorahub firmware
103
98
104
99
## 3.1. Install environment
105
100
@@ -206,13 +201,13 @@ provided binary files using the `esptool` utility.
206
201
https://docs.espressif.com/projects/esptool/en/latest/esp32/
207
202
208
203
``` console
209
- esptool.py --chip esp32s3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader.bin 0x10000 lorahub.bin 0x8000 partition-table .bin
204
+ esptool.py --chip esp32s3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 Indicator_Lorahub_v1.0.0 .bin
210
205
```
211
206
212
207
On a Windows setup the esptool command for flashing would be:
213
208
214
209
``` console
215
- py -m esptool --chip esp32s3 -p COM14 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader.bin 0x10000 lorahub.bin 0x8000 partition-table .bin
210
+ py -m esptool --chip esp32s3 -p COM14 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 Indicator_Lorahub_v1.0.0 .bin
216
211
```
217
212
218
213
# 4. Known limitations
0 commit comments