1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Fixing ArduinoISP sketch by lowering baud rate to 9600 (from 19200).

http://code.google.com/p/arduino/issues/detail?id=661
This commit is contained in:
David A. Mellis
2011-12-28 18:43:36 -05:00
parent 3942e85c2c
commit 80a2154279
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@
void pulse(int pin, int times);
void setup() {
Serial.begin(19200);
Serial.begin(9600);
pinMode(LED_PMODE, OUTPUT);
pulse(LED_PMODE, 2);
pinMode(LED_ERR, OUTPUT);