mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-19 13:54:23 +01:00
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.
This commit is contained in:
parent
1b58e45f74
commit
13e0b9335c
@ -66,7 +66,7 @@
|
||||
void pulse(int pin, int times);
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
Serial.begin(19200);
|
||||
pinMode(LED_PMODE, OUTPUT);
|
||||
pulse(LED_PMODE, 2);
|
||||
pinMode(LED_ERR, OUTPUT);
|
||||
@ -109,7 +109,7 @@ void heartbeat() {
|
||||
if (hbval < 32) hbdelta = -hbdelta;
|
||||
hbval += hbdelta;
|
||||
analogWrite(LED_HB, hbval);
|
||||
delay(40);
|
||||
delay(20);
|
||||
}
|
||||
|
||||
|
||||
|
@ -23,4 +23,4 @@ parallel.force=true
|
||||
arduinoisp.name=Arduino as ISP
|
||||
arduinoisp.communication=serial
|
||||
arduinoisp.protocol=stk500v1
|
||||
arduinoisp.speed=9600
|
||||
arduinoisp.speed=19200
|
||||
|
Loading…
x
Reference in New Issue
Block a user