Closed GoogleCodeExporter closed 9 years ago
Addendum- the offending line is line 88 in the AvrdudeUploader.java file.
Changing:
if((boardPreferences.get("uplo.path") != null &&
boardPreferences.get("bootloader.path").equals("caterina")))
to
if(protocol.equals("avr109"))
resolves the issue by checking the protocol used by the board rather than the
bootloader name. This allows custom bootloader paths.
Original comment by mike.h...@gmail.com
on 9 Aug 2012 at 9:09
This is solved in Arduino 1.5 with the keyword:
upload.use_1200bps_touch=true
see:
https://github.com/arduino/Arduino/blob/429b5168d82a76b94e9360d9b416e5808e420119
/hardware/arduino/avr/boards.txt#L224
https://github.com/arduino/Arduino/pull/1547
C
Original comment by c.mag...@arduino.cc
on 18 Oct 2013 at 10:24
Original issue reported on code.google.com by
mike.h...@gmail.com
on 9 Aug 2012 at 6:07