Windows upload fix, workaround pyserial quirk

This commit is contained in:
Earle F. Philhower, III 2021-03-16 09:49:24 -07:00
parent ca99a6fa03
commit 65c81958f2
2 changed files with 6 additions and 6 deletions

View file

@ -133,9 +133,6 @@ tools.uf2conv.upload.protocol=uf2
tools.uf2conv.upload.params.verbose=
tools.uf2conv.upload.params.quiet=
# First, potentially perform an erase or nothing
# Next, do the binary upload
# Combined in one rule because Arduino doesn't suport upload.1.pattern/upload.3.pattern
tools.uf2conv.upload.pattern="{cmd}" "{runtime.platform.path}/system/uf2conv.py" --serial "{serial.port}" --family RP2040 --deploy "{build.path}/{build.project_name}.uf2"
tools.uf2conv.upload.network_pattern="{cmd}" "{runtime.platform.path}/system/uf2conv.py" --family RP2040 --deploy "{build.path}/{build.project_name}.uf2"
tools.uf2conv.upload.network_pattern="{cmd}" "{runtime.platform.path}/system/uf2conv.py" --serial "{serial.port}" --family RP2040 --deploy "{build.path}/{build.project_name}.uf2"

View file

@ -313,9 +313,12 @@ def main():
if args.serial:
if str(args.serial).startswith("/dev/tty") or str(args.serial).startswith("COM"):
try:
ser = serial.Serial(args.serial, 1200)
ser.dtr = False
print("Resetting "+str(args.serial))
try:
ser = serial.Serial(args.serial, 1200)
ser.dtr = False
except:
pass
# Probably should be smart and check for device appearance or something
time.sleep(10)
except: