File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 181
181
u"0839" : u"NUCLEO_WB55RG" ,
182
182
u"0840" : u"B96B_F446VE" ,
183
183
u"0841" : u"NUCLEO_G474RE" ,
184
+ u"0843" : u"NUCLEO_H745ZI_Q" ,
184
185
u"0847" : u"DISCO_H745I" ,
185
186
u"0849" : u"NUCLEO_G070RB" ,
186
187
u"0850" : u"NUCLEO_G431RB" ,
187
188
u"0854" : u"NUCLEO_L552ZE_Q" ,
188
189
u"0855" : u"DISCO_L562QE" ,
189
190
u"0879" : u"NUCLEO_F756ZG" ,
191
+ u"0885" : u"B_L4S5I_IOT01A" ,
190
192
u"0900" : u"XPRO_SAMR21" ,
191
193
u"0905" : u"XPRO_SAMW25" ,
192
194
u"0910" : u"XPRO_SAML21" ,
239
241
u"1308" : u"NUMAKER_IOT_M487" ,
240
242
u"1309" : u"NUMAKER_M252KG" ,
241
243
u"1310" : u"NUMAKER_IOT_M263A" ,
244
+ u"1312" : u"NU_M2354" ,
242
245
u"1500" : u"RHOMBIO_L476DMW1K" ,
243
246
u"1549" : u"LPC1549" ,
244
247
u"1600" : u"LPC4330_M4" ,
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