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
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,17 @@ The repo's structure is designed to be easily implemented.
9
9
We have two possible cmakes to use:
10
10
- src/base.cmake (Includes only tflite micro)
11
11
- src/full.cmake (Includes additional libraries like ulab)
12
+
13
+
## Building for ESP-IDF 5.4
14
+
15
+
A helper script `scripts/build_and_check.sh` can be used to build the firmware for a given board using ESP-IDF 5.4. The script follows the same steps as the GitHub workflow and will fetch the required ESP-IDF release if missing.
16
+
17
+
```bash
18
+
# Build firmware for the default MICROLITE board
19
+
./scripts/build_and_check.sh
20
+
21
+
# Or specify a board
22
+
./scripts/build_and_check.sh MICROLITE_S3
23
+
```
24
+
25
+
The script expects the submodules to be accessible over the network in order to fetch Micropython and related dependencies.
0 commit comments