tinygo/targets/arduino-mega2560.json
Ayke van Laethem 51238fba50 arduino-mega2560: fix flashing on Windows
Without the extra `:i` at the end, avrdude will misinterpret the colon
in Windows paths.
2020-09-03 06:24:18 +02:00

8 строки
244 Б
JSON

{
"inherits": ["atmega2560"],
"build-tags": ["arduino_mega2560"],
"ldflags": [
"-Wl,--defsym=_bootloader_size=8192"
],
"flash-command":"avrdude -c wiring -b 115200 -p atmega2560 -P {port} -U flash:w:{hex}:i -v -D"
}