From 56e09109dfd051c4af8bee8e21972a87ac05faa4 Mon Sep 17 00:00:00 2001 From: Peter Van Hoyweghen Date: Wed, 25 Feb 2015 21:30:34 +0100 Subject: [PATCH] The delay between reset and the enter progmode command got lost when introducing the SPI library. Put it back in. --- build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino b/build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino index bff56fd54..2f31d6269 100644 --- a/build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino +++ b/build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino @@ -251,6 +251,7 @@ void start_pmode() { digitalWrite(SCK, LOW); delay(20); digitalWrite(RESET, LOW); + delay(50); spi_transaction(0xAC, 0x53, 0x00, 0x00); pmode = 1; }