File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -60,15 +60,12 @@ arduino-cli compile --fqbn m5stack:esp32:m5stack_cardputer -e \
6060### Merge bootloader, partiotion table with app
6161
6262``` bash
63-
6463esptool.py --chip esp32 merge_bin -o flash_image.bin @flash_args
6564
6665esptool.py --chip esp32s3 merge_bin --output M5CardRemote.M5Cardputer.bin \
6766 0x0000 build/m5stack.esp32.m5stack_cardputer/M5CardRemote.ino.bootloader.bin \
6867 0x8000 build/m5stack.esp32.m5stack_cardputer/M5CardRemote.ino.partitions.bin \
6968 0x10000 build/m5stack.esp32.m5stack_cardputer/M5CardRemote.ino.bin
70-
71-
7269```
7370
7471---
@@ -81,21 +78,23 @@ esptool.py --chip esp32s3 merge_bin --output M5CardRemote.M5Cardputer.bin \
8178sudo apt-get install git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
8279
8380mkdir ~ /esp
84- cd ~ /esp
8581
86- git clone -b release/v5.3 --recursive https://github.com/espressif/esp-idf.git --depth 1
82+ git clone -b release/v5.3 --recursive https://github.com/espressif/esp-idf.git --depth 1 ~ /esp/esp-idf
8783
8884cd ~ /esp/esp-idf
8985./install.sh
9086
9187source ~ /esp/esp-idf/export.sh
88+ # OR
89+ . ~ /esp/esp-idf/export.sh
9290```
9391
9492
9593### Compile firmware with ESP IDF
96-
97-
94+ - cd into the project
9895``` bash
96+ idf.py menuconfig
97+
9998idf.py build
10099```
101100
You can’t perform that action at this time.
0 commit comments