Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrouch authored Nov 30, 2024
1 parent ba52dee commit a9940c0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ https://github.com/bareboat-necessities/bbn-m5stack-tough/releases/tag/main

## Using command line to upload firmware

Unzip downloaded archives

Examples:

Linux:
Expand All @@ -226,6 +228,20 @@ python3 "~/.arduino15/packages/esp32/tools/esptool_py/4.5.1/esptool.py" \
````

BBN OS Linux:

````
/srv/esphome/bin/esptool.py \
--chip esp32 --port "/dev/ttyACM1" --baud 921600 \
--before default_reset --after hard_reset write_flash -z \
--flash_mode dio --flash_freq 80m --flash_size 16MB \
0x1000 "bbn_m5tough_active_boat.ino.bootloader.bin" \
0x8000 "bbn_m5tough_active_boat.ino.partitions.bin" \
0xe000 "$HOME/.arduino15/packages/esp32/hardware/esp32/2.0.15/tools/partitions/boot_app0.bin" \
0x10000 "bbn_m5tough_active_boat.ino.bin"
````


Windows:

````
Expand Down

0 comments on commit a9940c0

Please sign in to comment.