Skip to content

Commit 36972ed

Browse files
committed
Update README.md
1 parent d8f7fd0 commit 36972ed

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

examples/indicator_lorahub/README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ This project demonstrates how to implement a single channel LoRa gateway (LoRaHu
55
using SenseCAP Indicator.
66

77
This project contains the following components:
8-
* `firmware`: contains precompiled binaries for all supported platforms.
98
* `components/liblorahub`: the Hardware Abstraction Layer (HAL) on top of the radio driver.
109
* `components/radio_drivers`: the sx126x, llcc68, lr11xx radio drivers and associated hardware abstraction layer.
1110
* `components/smtc_ral`: the radio abstraction layer and board/shields definitions.
@@ -89,17 +88,13 @@ radio usage.
8988
# 3. Usage
9089

9190
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.
9492

9593
For flashing without the ESP-IDF installed, skip directly to the "flash with
9694
esptool" section below.
9795

9896
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
10398

10499
## 3.1. Install environment
105100

@@ -206,13 +201,13 @@ provided binary files using the `esptool` utility.
206201
https://docs.espressif.com/projects/esptool/en/latest/esp32/
207202

208203
```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
210205
```
211206

212207
On a Windows setup the esptool command for flashing would be:
213208

214209
```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
216211
```
217212

218213
# 4. Known limitations

0 commit comments

Comments
 (0)