Arduino_Apollo3
Arduino_Apollo3 copied to clipboard
Platform.txt Missing Quotes on MacOS Causes Upload Failure
If your MacOS hard drive has spaces in its name, then it will fail to upload to any board.
In the Platform.txt file, these lines:
tools.svl.pgm.macosx={runtime.platform.path}/tools/uploaders/svl/dist/macosx/svl
tools.asb.pgm.macosx={runtime.platform.path}/tools/uploaders/asb/dist/macosx/asb
Should instead be:
tools.svl.pgm.macosx="{runtime.platform.path}/tools/uploaders/svl/dist/macosx/svl"
tools.asb.pgm.macosx="{runtime.platform.path}/tools/uploaders/asb/dist/macosx/asb"
Which prevents the space from confusing the terminal command. It is like this on all versions of this core and should be fixed.