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] |