We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15da182 commit a17a757Copy full SHA for a17a757
build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino
@@ -274,6 +274,10 @@ void start_pmode() {
274
275
void end_pmode() {
276
SPI.end();
277
+ // We're about to take the target out of reset
278
+ // so configure SPI pins as input
279
+ pinMode(MOSI, INPUT);
280
+ pinMode(SCK, INPUT);
281
reset_target(false);
282
pinMode(RESET, INPUT);
283
pmode = 0;
0 commit comments