Skip to content

Commit 615b263

Browse files
committed
changes
1 parent d0e824d commit 615b263

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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-
6463
esptool.py --chip esp32 merge_bin -o flash_image.bin @flash_args
6564

6665
esptool.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 \
8178
sudo 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

8380
mkdir ~/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

8884
cd ~/esp/esp-idf
8985
./install.sh
9086

9187
source ~/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+
9998
idf.py build
10099
```
101100

0 commit comments

Comments
 (0)