mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Slow SPI devices like the Galileo might actually read it as stabilised in the first go
This commit is contained in:
parent
dd0296ca65
commit
cc14152c54
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ void setup() {
|
||||||
}
|
}
|
||||||
Usb.regWr(rUSBCTL, 0x00); //release from reset
|
Usb.regWr(rUSBCTL, 0x00); //release from reset
|
||||||
uint16_t j = 0;
|
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) {
|
if(Usb.regRd(rUSBIRQ) & bmOSCOKIRQ) {
|
||||||
E_Notify(PSTR(" Time to stabilize - "), 0x80);
|
E_Notify(PSTR(" Time to stabilize - "), 0x80);
|
||||||
Serial.print(j, DEC);
|
Serial.print(j, DEC);
|
||||||
|
|
Loading…
Reference in a new issue