File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,8 @@ def get_lvgl():
199
199
'--' ,
200
200
f'lib/lvgl'
201
201
]
202
+ print ('collecting LVGL' )
203
+ print ('this might take a while...' )
202
204
result , _ = spawn (cmd_ , spinner = True )
203
205
if result != 0 :
204
206
sys .exit (result )
@@ -214,7 +216,7 @@ def get_micropython():
214
216
'--' ,
215
217
f'lib/micropython'
216
218
]
217
-
219
+ print ( 'collecting MicroPython 1.23.0' )
218
220
result , _ = spawn (cmd_ , spinner = True )
219
221
if result != 0 :
220
222
sys .exit (result )
@@ -230,6 +232,7 @@ def get_pycparser():
230
232
f'lib/pycparser'
231
233
]
232
234
235
+ print ('collecting pycparser' )
233
236
result , _ = spawn (cmd_ )
234
237
if result != 0 :
235
238
sys .exit (result )
Original file line number Diff line number Diff line change @@ -134,6 +134,8 @@ def get_espidf():
134
134
'lib/esp-idf'
135
135
]
136
136
137
+ print ('collecting ESP-IDF v5.2.1' )
138
+ print ('this might take a while...' )
137
139
result , _ = spawn (cmd , spinner = True )
138
140
if result != 0 :
139
141
sys .exit (result )
@@ -566,22 +568,15 @@ def submodules():
566
568
if idf_ver is None or idf_ver != '5.2.1' :
567
569
idf_path = 'lib/esp-idf'
568
570
if not os .path .exists (os .path .join (idf_path , 'export.sh' )):
569
- print ('collecting ESP-IDF v5.2.1' )
570
- print ('this might take a bit...' )
571
- print ()
572
571
get_espidf ()
573
- print ()
574
-
575
572
cmds = [
576
573
[f'export "IDF_PATH={ os .path .abspath (idf_path )} "' ],
577
574
['cd' , idf_path ],
578
575
['./install.sh' , 'all' ]
579
576
]
580
577
581
578
print ('setting up ESP-IDF v5.2.1' )
582
- print ('this might take a bit...' )
583
- print ()
584
-
579
+ print ('this might take a while...' )
585
580
env = {
586
581
k : v for k , v in os .environ .items () if not k .startswith ('IDF' )
587
582
}
You can’t perform that action at this time.
0 commit comments