Skip to content

Commit 13e0b93

Browse files
committed
Putting ArduinoISP back to 19200 baud.
From 9600. And lowering the delay in the heartbeat from 40 to 20, which seems to fix things again.
1 parent 1b58e45 commit 13e0b93

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/shared/examples/ArduinoISP/ArduinoISP.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
void pulse(int pin, int times);
6767

6868
void setup() {
69-
Serial.begin(9600);
69+
Serial.begin(19200);
7070
pinMode(LED_PMODE, OUTPUT);
7171
pulse(LED_PMODE, 2);
7272
pinMode(LED_ERR, OUTPUT);
@@ -109,7 +109,7 @@ void heartbeat() {
109109
if (hbval < 32) hbdelta = -hbdelta;
110110
hbval += hbdelta;
111111
analogWrite(LED_HB, hbval);
112-
delay(40);
112+
delay(20);
113113
}
114114

115115

hardware/arduino/programmers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ parallel.force=true
2323
arduinoisp.name=Arduino as ISP
2424
arduinoisp.communication=serial
2525
arduinoisp.protocol=stk500v1
26-
arduinoisp.speed=9600
26+
arduinoisp.speed=19200

0 commit comments

Comments
 (0)