From cc14152c54d597518550b49e1bc8bc16396936a8 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Thu, 19 Mar 2015 16:31:29 +0100 Subject: [PATCH] Slow SPI devices like the Galileo might actually read it as stabilised in the first go --- examples/board_qc/board_qc.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/board_qc/board_qc.ino b/examples/board_qc/board_qc.ino index 2d8529e4..573c3ce0 100644 --- a/examples/board_qc/board_qc.ino +++ b/examples/board_qc/board_qc.ino @@ -121,7 +121,7 @@ void setup() { } Usb.regWr(rUSBCTL, 0x00); //release from reset uint16_t j = 0; - for(j = 0; j < 65535; j++) { //tracking off to on time + for(j = 1; j < 65535; j++) { //tracking off to on time if(Usb.regRd(rUSBIRQ) & bmOSCOKIRQ) { E_Notify(PSTR(" Time to stabilize - "), 0x80); Serial.print(j, DEC);