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:
David A. Mellis 2012-03-15 19:00:24 -04:00
parent 1b58e45f74
commit 13e0b9335c
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -23,4 +23,4 @@ parallel.force=true
arduinoisp.name=Arduino as ISP
arduinoisp.communication=serial
arduinoisp.protocol=stk500v1
arduinoisp.speed=9600
arduinoisp.speed=19200