arduino-mega2560: fix flashing on Windows

Without the extra `:i` at the end, avrdude will misinterpret the colon
in Windows paths.
Этот коммит содержится в:
Ayke van Laethem 2020-09-02 13:26:15 +02:00 коммит произвёл Ron Evans
родитель 7f829fe153
коммит 51238fba50

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

@ -4,5 +4,5 @@
"ldflags": [
"-Wl,--defsym=_bootloader_size=8192"
],
"flash-command":"avrdude -c wiring -b 115200 -p atmega2560 -P {port} -U flash:w:{hex} -v -D"
"flash-command":"avrdude -c wiring -b 115200 -p atmega2560 -P {port} -U flash:w:{hex}:i -v -D"
}