mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-18 07:52:14 +01:00
Adding a one-second delay between the two steps in burning the bootloader. This fixes bootloader burning with an AVRISP mkII on my Windows Vista machine.
This commit is contained in:
parent
673e2513b8
commit
1bd1284a8b
@ -115,6 +115,10 @@ public class AvrdudeUploader extends Uploader {
|
||||
|
||||
if (!avrdude(params, fuses))
|
||||
return false;
|
||||
|
||||
try {
|
||||
Thread.sleep(1000);
|
||||
} catch (InterruptedException e) {}
|
||||
|
||||
List bootloader = new ArrayList();
|
||||
bootloader.add("-Uflash:w:" + "hardware" + File.separator + "bootloaders" + File.separator +
|
||||
|
Loading…
x
Reference in New Issue
Block a user