File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 168
168
u"0839" : u"NUCLEO_WB55RG" ,
169
169
u"0840" : u"B96B_F446VE" ,
170
170
u"0841" : u"NUCLEO_G474RE" ,
171
+ u"0843" : u"NUCLEO_H745ZI_Q" ,
171
172
u"0847" : u"DISCO_H745I" ,
172
173
u"0849" : u"NUCLEO_G070RB" ,
173
174
u"0850" : u"NUCLEO_G431RB" ,
223
224
u"1306" : u"NUMAKER_PFM_NANO130" ,
224
225
u"1307" : u"NUMAKER_PFM_NUC240" ,
225
226
u"1308" : u"NUMAKER_IOT_M487" ,
226
- u"1309" : u"NUMAKER_M252KG " ,
227
+ u"1309" : u"NUMAKER_IOT_M252 " ,
227
228
u"1310" : u"NUMAKER_IOT_M263A" ,
229
+ u"1312" : u"NU_M2354" ,
228
230
u"1500" : u"RHOMBIO_L476DMW1K" ,
229
231
u"1549" : u"LPC1549" ,
230
232
u"1600" : u"LPC4330_M4" ,
276
278
u"3105" : u"SDT64B" ,
277
279
u"3701" : u"S5JS100" ,
278
280
u"3702" : u"S3JT100" ,
281
+ u"3703" : u"S1SBP6A" ,
279
282
u"4000" : u"LPC11U35_Y5_MBUG" ,
280
283
u"4005" : u"NRF51822_Y5_MBUG" ,
281
284
u"4100" : u"MOTE_L152RC" ,
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ def _is_mbed_volume(volume_string):
70
70
71
71
def _get_cached_mounted_points ():
72
72
"""! Get the volumes present on the system
73
- @return List of mount points and their associated target id
74
- Ex. [{ 'mount_point': 'D:', 'target_id_usb_id ': 'xxxx'}, ...]
73
+ @return List of mount points and their associated volume string
74
+ Ex. [{ 'mount_point': 'D:', 'volume_string ': 'xxxx'}, ...]
75
75
"""
76
76
result = []
77
77
try :
@@ -80,7 +80,7 @@ def _get_cached_mounted_points():
80
80
winreg .HKEY_LOCAL_MACHINE , "SYSTEM\\ MountedDevices"
81
81
)
82
82
for v in _iter_vals (mounted_devices_key ):
83
- # Valid entries have the following format: \DosDevices\D:
83
+ # Valid entries have the following format: \\ DosDevices\ \D:
84
84
if "DosDevices" not in v [0 ]:
85
85
continue
86
86
You can’t perform that action at this time.
0 commit comments