Skip to content

Commit f866fbe

Browse files
Merge pull request #281 from bridadan/windows_detection_update
Windows detection update
2 parents 08f2bcb + 2dae79a commit f866fbe

File tree

3 files changed

+339
-163
lines changed

3 files changed

+339
-163
lines changed

mbed_lstools/lstools_base.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def find_candidates(self):
9292
9393
Note: Should not open any files
9494
95-
@return A dict with the keys 'mount_point', 'serial_port' and 'usb_target_id'
95+
@return A dict with the keys 'mount_point', 'serial_port' and 'target_id_usb_id'
9696
"""
9797
raise NotImplemented
9898

@@ -284,10 +284,6 @@ def retarget(self):
284284
self.retarget_data = self.retarget_read()
285285
return self.retarget_data
286286

287-
# Note: 'Ven_SEGGER' - This is used to detect devices from EFM family, they use Segger J-LInk to wrap MSD and CDC
288-
usb_vendor_list = ['Ven_MBED', 'Ven_SEGGER', 'Ven_ARM_V2M']
289-
290-
291287
def get_dummy_platform(self, platform_name):
292288
"""! Returns simple dummy platform """
293289
if not hasattr(self, "dummy_counter"):

0 commit comments

Comments
 (0)