src/eric7/MicroPython/Devices/CircuitPythonDevices.py

branch
eric7
changeset 11174
ab097070aedf
parent 11167
a3f5af773bc7
child 11208
f776db7cc222
equal deleted inserted replaced
11173:d63911a89570 11174:ab097070aedf
287 @rtype str 287 @rtype str
288 """ 288 """
289 # Attempts to find the paths on the filesystem that represents the 289 # Attempts to find the paths on the filesystem that represents the
290 # plugged in CIRCUITPY boards. 290 # plugged in CIRCUITPY boards.
291 deviceDirectories = FileSystemUtilities.findVolume( 291 deviceDirectories = FileSystemUtilities.findVolume(
292 self.DeviceVolumeName, findAll=True 292 self.DeviceVolumeName, findAll=True, markerFile="boot_out.txt"
293 ) 293 )
294 294
295 if deviceDirectories: 295 if deviceDirectories:
296 if len(deviceDirectories) == 1: 296 if len(deviceDirectories) == 1:
297 return deviceDirectories[0] 297 return deviceDirectories[0]

eric ide

mercurial