You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,9 +53,21 @@ To use the SDKs from this repository in the Arduino IDE, follow these steps:
53
53
2. Ensure that the version of arduino-esp32 matches the version of the released SDKs in this repository.
54
54
3. If yes, download the released SDKs from this repository and replace the corresponding libraries in the arduino-esp32 SDK:
55
55
* Step 1: Find the default root path of the arduino-esp32 SDK. It should be different for different operating systems:
56
-
* For Windows, the default path is `C:\Users\<user name>\AppData\Local\Arduino15\packages\esp32`.
57
-
* For Linux, the default path is `~/.arduino15/packages/esp32`.
56
+
* For **Windows**, the default path is `C:\Users\<user name>\AppData\Local\Arduino15\packages\esp32`.
57
+
* For **Linux**, the default path is `~/.arduino15/packages/esp32`.
58
+
* For **MacOS**, the default path is `~/Library/Arduino15/packages/esp32`.
58
59
* Step 2: Find the default path of the SDK libraries. It should be different for different versions of arduino-esp32:
59
60
* For arduino-esp32 `v2.x.x`, the default path is `hardware > esp32 > 2.x.x > tools > sdk`.
60
61
* For arduino-esp32 `v3.x.x`, the default path is `tools > esp32-arduino-libs > idf-release_x`.
62
+
* Step 3: The structure of the SDK libraries should be as follows, replace them with the libraries extracted from the downloaded SDK:
63
+
```
64
+
idf-release_x
65
+
├── esp32
66
+
├── esp32c3
67
+
├── esp32c6
68
+
├── ...
69
+
├── packages.json
70
+
├── tools.json
71
+
├── versions.txt
72
+
```
61
73
4. If not, open an issue in this repository to request a new release or refer to the [documentation](https://docs.espressif.com/projects/arduino-esp32/en/latest/lib_builder.html) for compilation instructions.
0 commit comments