Browse Source

Merge pull request #10860 from Bob-the-Kuhn/upload-extra-script-fix

[2.0.x] LPC1768 upload_extra_script.py fix (wrong type of exit method)
pull/1/head
Bob Kuhn 6 years ago
committed by GitHub
parent
commit
498a328148
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 254
      Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py

254
Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py

@ -18,133 +18,131 @@ current_OS = platform.system()
#exit(0) #exit(0)
build_type = os.environ.get("BUILD_TYPE", 'Not Set') build_type = os.environ.get("BUILD_TYPE", 'Not Set')
if not(build_type == 'upload' or build_type == 'traceback' or build_type == 'Not Set') : if build_type == 'upload' or build_type == 'traceback' or build_type == 'Not Set' :
exit(0)
if current_OS == 'Windows':
if current_OS == 'Windows': #
# platformio.ini will accept this for a Windows upload port designation: 'upload_port = L:'
# # Windows - doesn't care about the disk's name, only cares about the drive letter
# platformio.ini will accept this for a Windows upload port designation: 'upload_port = L:' #
# Windows - doesn't care about the disk's name, only cares about the drive letter
# #
# get all drives on this computer
# #
# get all drives on this computer
# import subprocess
import subprocess driveStr = subprocess.check_output("fsutil fsinfo drives") # typical result (string): 'Drives: C:\ D:\ E:\ F:\ G:\ H:\ I:\ J:\ K:\ L:\ M:\ Y:\ Z:\'
driveStr = driveStr.strip().lstrip('Drives: ') # typical result (string): 'C:\ D:\ E:\ F:\ G:\ H:\ I:\ J:\ K:\ L:\ M:\ Y:\ Z:\'
driveStr = subprocess.check_output("fsutil fsinfo drives") # typical result (string): 'Drives: C:\ D:\ E:\ F:\ G:\ H:\ I:\ J:\ K:\ L:\ M:\ Y:\ Z:\' drives = driveStr.split() # typical result (array of stings): ['C:\\', 'D:\\', 'E:\\', 'F:\\', 'G:\\', 'H:\\', 'I:\\', 'J:\\', 'K:\\', 'L:\\', 'M:\\', 'Y:\\', 'Z:\\']
driveStr = driveStr.strip().lstrip('Drives: ') # typical result (string): 'C:\ D:\ E:\ F:\ G:\ H:\ I:\ J:\ K:\ L:\ M:\ Y:\ Z:\'
drives = driveStr.split() # typical result (array of stings): ['C:\\', 'D:\\', 'E:\\', 'F:\\', 'G:\\', 'H:\\', 'I:\\', 'J:\\', 'K:\\', 'L:\\', 'M:\\', 'Y:\\', 'Z:\\'] upload_disk = 'Disk not found'
target_file_found = False
upload_disk = 'Disk not found' target_drive_found = False
target_file_found = False for drive in drives:
target_drive_found = False final_drive_name = drive.strip().rstrip('\\') # typical result (string): 'C:'
for drive in drives: try:
final_drive_name = drive.strip().rstrip('\\') # typical result (string): 'C:' volume_info = subprocess.check_output('cmd /C dir ' + final_drive_name, stderr=subprocess.STDOUT)
try: except Exception as e:
volume_info = subprocess.check_output('cmd /C dir ' + final_drive_name, stderr=subprocess.STDOUT) continue
except Exception as e: else:
continue if target_drive in volume_info and target_file_found == False: # set upload if not found target file yet
else: target_drive_found = True
if target_drive in volume_info and target_file_found == False: # set upload if not found target file yet upload_disk = final_drive_name
target_drive_found = True if target_filename in volume_info:
upload_disk = final_drive_name if target_file_found == False:
if target_filename in volume_info: upload_disk = final_drive_name
if target_file_found == False:
upload_disk = final_drive_name
target_file_found = True
#
# set upload_port to drive if found
#
if target_file_found == True or target_drive_found == True:
Import("env")
env.Replace(
UPLOAD_PORT = upload_disk
)
print 'upload disk: ' , upload_disk
else:
print '\nUnable to find destination disk. File must be copied manually. \n'
if current_OS == 'Linux':
#
# platformio.ini will accept this for a Linux upload port designation: 'upload_port = /media/media_name/drive'
#
upload_disk = 'Disk not found'
target_file_found = False
target_drive_found = False
medias = os.listdir('/media') #
for media in medias:
drives = os.listdir('/media/' + media) #
if target_drive in drives and target_file_found == False: # set upload if not found target file yet
target_drive_found = True
upload_disk = '/media/' + media + '/' + target_drive + '/'
for drive in drives:
try:
files = os.listdir('/media/' + media + '/' + drive )
except:
continue
else:
if target_filename in files:
if target_file_found == False:
upload_disk = '/media/' + media + '/' + drive + '/'
target_file_found = True target_file_found = True
# #
# set upload_port to drive if found # set upload_port to drive if found
# #
if target_file_found == True or target_drive_found == True: if target_file_found == True or target_drive_found == True:
Import("env") Import("env")
env.Replace( env.Replace(
UPLOAD_FLAGS = "-P$UPLOAD_PORT", UPLOAD_PORT = upload_disk
UPLOAD_PORT = upload_disk )
) print 'upload disk: ' , upload_disk
print 'upload disk: ' , upload_disk else:
else: print '\nUnable to find destination disk. File must be copied manually. \n'
print '\nUnable to find destination disk. File must be copied manually. \n'
if current_OS == 'Linux':
if current_OS == 'Darwin': # MAC
#
# # platformio.ini will accept this for a Linux upload port designation: 'upload_port = /media/media_name/drive'
# platformio.ini will accept this for a OSX upload port designation: 'upload_port = /media/media_name/drive' #
#
upload_disk = 'Disk not found'
import os target_file_found = False
upload_disk = 'Disk not found' target_drive_found = False
drives = os.listdir('/Volumes') # human readable names medias = os.listdir('/media') #
target_file_found = False for media in medias:
target_drive_found = False drives = os.listdir('/media/' + media) #
if target_drive in drives and target_file_found == False: # set upload if not found target file yet if target_drive in drives and target_file_found == False: # set upload if not found target file yet
target_drive_found = True target_drive_found = True
upload_disk = '/Volumes/' + target_drive + '/' upload_disk = '/media/' + media + '/' + target_drive + '/'
for drive in drives: for drive in drives:
try: try:
filenames = os.listdir('/Volumes/' + drive + '/') # will get an error if the drive is protected files = os.listdir('/media/' + media + '/' + drive )
except: except:
continue continue
else: else:
if target_filename in filenames: if target_filename in files:
if target_file_found == False: if target_file_found == False:
upload_disk = '/Volumes/' + drive + '/' upload_disk = '/media/' + media + '/' + drive + '/'
target_file_found = True target_file_found = True
#
# set upload_port to drive if found #
# # set upload_port to drive if found
#
if target_file_found == True or target_drive_found == True:
Import("env") if target_file_found == True or target_drive_found == True:
env.Replace( Import("env")
UPLOAD_PORT = upload_disk env.Replace(
) UPLOAD_FLAGS = "-P$UPLOAD_PORT",
print '\nupload disk: ' , upload_disk, '\n' UPLOAD_PORT = upload_disk
else: )
print '\nUnable to find destination disk. File must be copied manually. \n' print 'upload disk: ' , upload_disk
else:
print '\nUnable to find destination disk. File must be copied manually. \n'
if current_OS == 'Darwin': # MAC
#
# platformio.ini will accept this for a OSX upload port designation: 'upload_port = /media/media_name/drive'
#
import os
upload_disk = 'Disk not found'
drives = os.listdir('/Volumes') # human readable names
target_file_found = False
target_drive_found = False
if target_drive in drives and target_file_found == False: # set upload if not found target file yet
target_drive_found = True
upload_disk = '/Volumes/' + target_drive + '/'
for drive in drives:
try:
filenames = os.listdir('/Volumes/' + drive + '/') # will get an error if the drive is protected
except:
continue
else:
if target_filename in filenames:
if target_file_found == False:
upload_disk = '/Volumes/' + drive + '/'
target_file_found = True
#
# set upload_port to drive if found
#
if target_file_found == True or target_drive_found == True:
Import("env")
env.Replace(
UPLOAD_PORT = upload_disk
)
print '\nupload disk: ' , upload_disk, '\n'
else:
print '\nUnable to find destination disk. File must be copied manually. \n'

Loading…
Cancel
Save