8000 Resolved merge conflict · ARMmbed/mbed-os-tools@93acea8 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 93acea8

Browse files
author
Marcelo Salazar
committed
Resolved merge conflict
2 parents dd68f73 + 86272fc commit 93acea8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/mbed_os_tools/detect/platform_database.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
u"0839": u"NUCLEO_WB55RG",
169169
u"0840": u"B96B_F446VE",
170170
u"0841": u"NUCLEO_G474RE",
171+
u"0843": u"NUCLEO_H745ZI_Q",
171172
u"0847": u"DISCO_H745I",
172173
u"0849": u"NUCLEO_G070RB",
173174
u"0850": u"NUCLEO_G431RB",
@@ -223,8 +224,9 @@
223224
u"1306": u"NUMAKER_PFM_NANO130",
224225
u"1307": u"NUMAKER_PFM_NUC240",
225226
u"1308": u"NUMAKER_IOT_M487",
226-
u"1309": u"NUMAKER_M252KG",
227+
u"1309": u"NUMAKER_IOT_M252",
227228
u"1310": u"NUMAKER_IOT_M263A",
229+
u"1312": u"NU_M2354",
228230
u"1500": u"RHOMBIO_L476DMW1K",
229231
u"1549": u"LPC1549",
230232
u"1600": u"LPC4330_M4",
@@ -276,6 +278,7 @@
276278
u"3105": u"SDT64B",
277279
u"3701": u"S5JS100",
278280
u"3702": u"S3JT100",
281+
u"3703": u"S1SBP6A",
279282
u"4000": u"LPC11U35_Y5_MBUG",
280283
u"4005": u"NRF51822_Y5_MBUG",
281284
u"4100": u"MOTE_L152RC",

src/mbed_os_tools/detect/windows.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ def _is_mbed_volume(volume_string):
7070

7171
def _get_cached_mounted_points():
7272
"""! 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'}, ...]
7575
"""
7676
result = []
7777
try:
@@ -80,7 +80,7 @@ def _get_cached_mounted_points():
8080
winreg.HKEY_LOCAL_MACHINE, "SYSTEM\\MountedDevices"
8181
)
8282
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:
8484
if "DosDevices" not in v[0]:
8585
continue
8686

0 commit comments

Comments
 (0)
0