Skip to content

Commit

Permalink
Merge pull request #100 from jzarca01/patch-1
Browse files Browse the repository at this point in the history
Clarify how to successfully build esp32
  • Loading branch information
adamcohenhillel authored Apr 8, 2024
2 parents 111e7be + 8c608a0 commit a4056a7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/guides/esp32-c3.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,20 @@ We recommend soldering a battery first.
### 1. Install ESP-IDF
[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)

> **_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.
### 2. Flash the device
### 2. Install Arduino dependencies
```
cd devices/esp32-c3
cd components && \
git clone https://github.com/espressif/arduino-esp32.git arduino && \
cd arduino && \
git submodule update --init --recursive && \
cd ../.. && \
idf.py menuconfig
```

### 3. Flash the device
```
cd devices/esp32-c3
idf.py flash
Expand Down

0 comments on commit a4056a7

Please sign in to comment.