Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify how to successfully build esp32 #100

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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