@@ -74,29 +74,36 @@ 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_dev https://github.com/pycom/pycom-esp-idf.git
77
+ $ git clone --recursive -b idf_v3.1 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
81
81
$ cd pycom-esp-idf
82
82
$ git submodule update --init
83
+
84
+
85
+ ``` text
86
+ If you updated the repository from a previous revision and/or if switching between branches,<br>
87
+ make sure to also update the submodules with the command above.
88
+ ```
83
89
84
90
Finally, before building, export the IDF_PATH variable
85
91
86
92
$ export IDF_PATH=~/pycom-esp-idf
87
93
88
- This repository contains submodules! Either clone using the --recursive option:
94
+ This repository contains submodules! Clone using the --recursive option:
89
95
90
96
$ git clone --recursive https://github.com/pycom/pycom-micropython-sigfox.git
91
97
92
- Alternative checkout the modules manually:
98
+ Alternatively checkout the modules manually:
93
99
94
100
$ cd pycom-micropython-sigfox
95
101
$ git submodule update --init
96
102
97
- If you updated the repository from a previous version and/or if switching to the development branch,<br >
98
- make sure to also update the submodules with the command above as a new submodule has been added<br >
99
- in the development branch!
103
+ ``` text
104
+ If you updated the repository from a previous revision and/or if switching between branches,<br>
105
+ make sure to also update the submodules with the command above.
106
+ ```
100
107
101
108
Prior to building the main firmware, you need to build mpy-cross
102
109
0 commit comments