arduino: make avrdude command line compatible with Windows

On Windows, it is common that there is a colon in the path. avrdude will
treat that as a separator and everything behind it as the file format
specifier instead of defaulting to Intel hex format.

By explicitly specifying the Intel hex format (with `:i`), this issue
should be fixed.
Этот коммит содержится в:
Ayke van Laethem 2020-01-20 18:47:12 +01:00 коммит произвёл Ron Evans
родитель e17a2e6776
коммит 4c0ebb5b41

Просмотреть файл

@ -15,5 +15,5 @@
"targets/avr.S",
"src/device/avr/atmega328p.s"
],
"flash-command": "avrdude -c arduino -p atmega328p -P {port} -U flash:w:{hex}"
"flash-command": "avrdude -c arduino -p atmega328p -P {port} -U flash:w:{hex}:i"
}