We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b58e45 commit 13e0b93Copy full SHA for 13e0b93
build/shared/examples/ArduinoISP/ArduinoISP.ino
@@ -66,7 +66,7 @@
66
void pulse(int pin, int times);
67
68
void setup() {
69
- Serial.begin(9600);
+ Serial.begin(19200);
70
pinMode(LED_PMODE, OUTPUT);
71
pulse(LED_PMODE, 2);
72
pinMode(LED_ERR, OUTPUT);
@@ -109,7 +109,7 @@ void heartbeat() {
109
if (hbval < 32) hbdelta = -hbdelta;
110
hbval += hbdelta;
111
analogWrite(LED_HB, hbval);
112
- delay(40);
+ delay(20);
113
}
114
115
hardware/arduino/programmers.txt
@@ -23,4 +23,4 @@ parallel.force=true
23
arduinoisp.name=Arduino as ISP
24
arduinoisp.communication=serial
25
arduinoisp.protocol=stk500v1
26
-arduinoisp.speed=9600
+arduinoisp.speed=19200
0 commit comments