File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Then when you need the toolchain you can type ``get_esp32`` on the command line
74
74
You also need the ESP IDF along side this repository in order to build the ESP32 port.
75
75
To get it:
76
76
77
- $ git clone --recursive -b idf_v3.1 https://github.com/pycom/pycom-esp-idf.git
77
+ $ git clone --recursive -b idf_v3.2 https://github.com/pycom/pycom-esp-idf.git
78
78
79
79
After cloning, if you did not specify the --recursive option, make sure to checkout all the submodules:
80
80
@@ -109,7 +109,7 @@ Prior to building the main firmware, you need to build mpy-cross
109
109
110
110
$ cd mpy-cross && make clean && make && cd ..
111
111
112
- By default the firmware is built for the WIPY2 :
112
+ By default the firmware is built for the WIPY :
113
113
114
114
$ cd esp32
115
115
$ make clean
@@ -192,7 +192,17 @@ To create a release package for all currently supported Pycom boards in a direct
192
192
$ cd esp32
193
193
$ for BOARD in WIPY LOPY SIPY GPY FIPY LOPY4; do make BOARD=$BOARD clean && make BOARD=$BOARD RELEASE_DIR=~/pycom-packages release; done
194
194
195
+ To inclue a step for copying IDF libs from IDF_PATH specify the following variable in the make command
195
196
197
+ COPY_IDF_LIB=1
198
+
199
+ To Buiild the firmware with Pybytes libs use the following make variable
200
+
201
+ VARIANT=PYBYTES
202
+
203
+ To Disable RGB Led control use the following make variable
204
+
205
+ RGB_LED=disable
196
206
197
207
## Steps for using Secure Boot and Flash Encryption
198
208
You can’t perform that action at this time.
0 commit comments