File tree 16 files changed +20
-20
lines changed
16 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ Building and flashing
90
90
91
91
First make sure that ``esptool.py `` is installed. This tool is used to convert
92
92
the ELF to a compatible ESP32 image and to flash the image into the board.
93
- It can be installed with: ``pip install esptool ``.
93
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
94
94
95
95
Configure the NuttX project: ``./tools/configure.sh esp32c3-devkit:nsh ``
96
96
Run ``make `` to build the project. Note that the conversion mentioned above is
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ Building and flashing
106
106
107
107
First, make sure that ``esptool.py `` is installed. This tool is used to convert
108
108
the ELF to a compatible ESP32-C3 image and to flash the image into the board.
109
- It can be installed with: ``pip install esptool ``.
109
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
110
110
111
111
Configure the NuttX project: ``./tools/configure.sh esp32c3-generic:nsh ``
112
112
Run ``make `` to build the project. Note that the conversion mentioned above is
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ Building and flashing
105
105
106
106
First, make sure that ``esptool.py `` is installed. This tool is used to convert
107
107
the ELF to a compatible ESP32-C6 image and to flash the image into the board.
108
- It can be installed with: ``pip install esptool ``.
108
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
109
109
110
110
Configure the NuttX project: ``./tools/configure.sh esp32c6-devkitc:nsh ``
111
111
Run ``make `` to build the project. Note that the conversion mentioned above is
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ Building and flashing
105
105
106
106
First, make sure that ``esptool.py `` is installed. This tool is used to convert
107
107
the ELF to a compatible ESP32-H2 image and to flash the image into the board.
108
- It can be installed with: ``pip install esptool ``.
108
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
109
109
110
110
Configure the NuttX project: ``./tools/configure.sh esp32h2-devkit:nsh ``
111
111
Run ``make `` to build the project. Note that the conversion mentioned above is
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ Building and Flashing
129
129
130
130
First, make sure that ``esptool.py `` is installed. This tool is used to convert the ELF to a
131
131
compatible ESP32 image and to flash the image into the board.
132
- It can be installed with: ``pip install esptool ``.
132
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
133
133
134
134
It's a two-step process where the first converts the ELF file into an ESP32 compatible binary
135
135
and the second flashes it to the board. These steps are included in the build system and it is
@@ -573,7 +573,7 @@ Prerequisites
573
573
First of all, we need to install ``imgtool `` (a MCUboot utility application to manipulate binary
574
574
images) and ``esptool `` (the ESP32 toolkit)::
575
575
576
- $ pip install imgtool esptool
576
+ $ pip install imgtool esptool==4.8.dev4
577
577
578
578
We also need to make sure that the python modules are added to ``PATH ``::
579
579
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ Building and Flashing
122
122
123
123
First, make sure that ``esptool.py `` is installed. This tool is used to convert the ELF to a
124
124
compatible ESP32-S2 image and to flash the image into the board.
125
- It can be installed with: ``pip install esptool ``.
125
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
126
126
127
127
It's a two-step process where the first converts the ELF file into an ESP32-S2 compatible binary
128
128
and the second flashes it to the board. These steps are included in the build system and it is
@@ -457,7 +457,7 @@ Prerequisites
457
457
First of all, we need to install ``imgtool `` (a MCUboot utility application to manipulate binary
458
458
images) and ``esptool `` (the ESP32-S2 toolkit)::
459
459
460
- $ pip install imgtool esptool
460
+ $ pip install imgtool esptool==4.8.dev4
461
461
462
462
We also need to make sure that the python modules are added to ``PATH ``::
463
463
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ Building and Flashing
129
129
130
130
First, make sure that ``esptool.py `` is installed. This tool is used to convert the ELF to a
131
131
compatible ESP32-S3 image and to flash the image into the board.
132
- It can be installed with: ``pip install esptool ``.
132
+ It can be installed with: ``pip install esptool==4.8.dev4 ``.
133
133
134
134
It's a two-step process where the first converts the ELF file into an ESP32-S3 compatible binary
135
135
and the second flashes it to the board. These steps are included in the build system and it is
Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ RUN pip3 install cmake-format
387
387
RUN pip3 install cvt2utf
388
388
# Install pytest
389
389
RUN pip3 install cxxfilt
390
- RUN pip3 install esptool
390
+ RUN pip3 install esptool==4.8.dev4
391
391
RUN pip3 install imgtool
392
392
RUN pip3 install kconfiglib
393
393
RUN pip3 install pexpect==4.8.0
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ python_tools() {
213
213
cmake-format \
214
214
cvt2utf \
215
215
cxxfilt \
216
- esptool \
216
+ esptool==4.8.dev4 \
217
217
imgtool==1.9.0 \
218
218
kconfiglib \
219
219
pexpect==4.8.0 \
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ python_tools() {
145
145
CodeChecker \
146
146
cvt2utf \
147
147
cxxfilt \
148
- esptool \
148
+ esptool==4.8.dev4 \
149
149
imgtool \
150
150
kconfiglib \
151
151
pexpect==4.8.0 \
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ python_tools() {
198
198
CodeChecker \
199
199
cvt2utf \
200
200
cxxfilt \
201
- esptool \
201
+ esptool==4.8.dev4 \
202
202
imgtool \
203
203
kconfiglib \
204
204
pexpect==4.8.0 \
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ define MKIMAGE
238
238
$(Q ) echo "MKIMAGE: ESP32 binary"
239
239
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
240
240
echo ""; \
241
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
241
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
242
242
echo ""; \
243
243
echo "Run make again to create the nuttx.bin image."; \
244
244
exit 1; \
@@ -270,7 +270,7 @@ define MKIMAGE
270
270
$(Q ) echo "MKIMAGE: ESP32 binary"
271
271
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
272
272
echo ""; \
273
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
273
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
274
274
echo ""; \
275
275
echo "Run make again to create the nuttx.bin image."; \
276
276
exit 1; \
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ define MKIMAGE
220
220
$(Q ) echo "MKIMAGE: ESP32-C3 binary"
221
221
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
222
222
echo ""; \
223
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
223
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
224
224
echo ""; \
225
225
echo "Run make again to create the nuttx.bin image."; \
226
226
exit 1; \
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ define MKIMAGE
225
225
$(Q ) echo "MKIMAGE: ESP32-S2 binary"
226
226
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
227
227
echo ""; \
228
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
228
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
229
229
echo ""; \
230
230
echo "Run make again to create the nuttx.bin image."; \
231
231
exit 1; \
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ define MKIMAGE
139
139
$(Q ) echo "MKIMAGE: ESP32-S3 binary"
140
140
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
141
141
echo ""; \
142
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
142
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
143
143
echo ""; \
144
144
echo "Run make again to create the nuttx.bin image."; \
145
145
exit 1; \
@@ -171,7 +171,7 @@ define MKIMAGE
171
171
$(Q ) echo "MKIMAGE: ESP32-S3 binary"
172
172
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
173
173
echo ""; \
174
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
174
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
175
175
echo ""; \
176
176
echo "Run make again to create the nuttx.bin image."; \
177
177
exit 1; \
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ define MKIMAGE
139
139
$(Q ) echo "MKIMAGE: NuttX binary"
140
140
$(Q ) if ! esptool.py version 1>/dev/null 2>&1; then \
141
141
echo ""; \
142
- echo "esptool.py not found. Please run: \"pip install esptool\""; \
142
+ echo "esptool.py not found. Please run: \"pip install esptool==4.8.dev4 \""; \
143
143
echo ""; \
144
144
echo "Run make again to create the nuttx.bin image."; \
145
145
exit 1; \
You can’t perform that action at this time.
0 commit comments