Skip to content

Commit a4056a7

Browse files
Merge pull request #100 from jzarca01/patch-1
Clarify how to successfully build esp32
2 parents 111e7be + 8c608a0 commit a4056a7

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

docs/guides/esp32-c3.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,20 @@ We recommend soldering a battery first.
5050
### 1. Install ESP-IDF
5151
[Manual Installation](https://docs.espressif.com/projects/esp-idf/en/v5.2/esp32c3/get-started/linux-macos-setup.html#for-macos-users) or [VS Code](https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/tutorial/install.md)
5252

53+
> **_WARNING:_** Currently, this project can be used with ESP-IDF versions between 5.1.0 and 5.1.99, it won't work with a newer version.
5354
54-
### 2. Flash the device
55+
### 2. Install Arduino dependencies
56+
```
57+
cd devices/esp32-c3
58+
cd components && \
59+
git clone https://github.com/espressif/arduino-esp32.git arduino && \
60+
cd arduino && \
61+
git submodule update --init --recursive && \
62+
cd ../.. && \
63+
idf.py menuconfig
64+
```
65+
66+
### 3. Flash the device
5567
```
5668
cd devices/esp32-c3
5769
idf.py flash

0 commit comments

Comments
 (0)