PIX: ChibiOS compatibility: Add use of APJ FW file extensions

This commit is contained in:
Matt Lawrence 2019-01-05 10:22:06 -05:00 committed by Matt
parent b64bb6f72b
commit 0188446013

View File

@ -500,6 +500,8 @@ def removeFWfiles(dir):
filelist=glob.glob('/firmware/3dr/*.*') filelist=glob.glob('/firmware/3dr/*.*')
elif dir == 'green': elif dir == 'green':
filelist=glob.glob('/firmware/green/*.*') filelist=glob.glob('/firmware/green/*.*')
elif dir == 'main':
filelist=glob.glob('/firmware/*.px4') + glob.glob('/firmware/*.apj')
for file in filelist: for file in filelist:
os.remove(file) os.remove(file)
@ -640,7 +642,7 @@ def verify_usb():
# full_path is the full path to the file, or None if no file # full_path is the full path to the file, or None if no file
# if full_path is not None, versions is a dictionary of version info # if full_path is not None, versions is a dictionary of version info
def find_firmware(dir): def find_firmware(dir):
files = glob.glob("%s/*.px4" % dir) files = glob.glob("%s/*.apj" % dir) + glob.glob("%s/*.px4" % dir)
if len(files) == 0: if len(files) == 0:
return (None, None) return (None, None)
# read git hashes # read git hashes