PaulStoffregen 9 years ago
parent
commit
2ab60772d8
4 changed files with 20 additions and 0 deletions
  1. +5
    -0
      examples/CopyFromSD/CopyFromSD.ino
  2. +5
    -0
      examples/EraseEverything/EraseEverything.ino
  3. +5
    -0
      examples/ListFiles/ListFiles.ino
  4. +5
    -0
      examples/RawHardwareTest/RawHardwareTest.ino

+ 5
- 0
examples/CopyFromSD/CopyFromSD.ino View File

//SPI.setSCK(14); // Audio shield has SCK on pin 14 //SPI.setSCK(14); // Audio shield has SCK on pin 14
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7 //SPI.setMOSI(7); // Audio shield has MOSI on pin 7


//uncomment these if you have other SPI chips connected
//to keep them disabled while using only SerialFlash
//pinMode(4, INPUT_PULLUP);
//pinMode(10, INPUT_PULLUP);

// wait up to 10 seconds for Arduino Serial Monitor // wait up to 10 seconds for Arduino Serial Monitor
unsigned long startMillis = millis(); unsigned long startMillis = millis();
while (!Serial && (millis() - startMillis < 10000)) ; while (!Serial && (millis() - startMillis < 10000)) ;

+ 5
- 0
examples/EraseEverything/EraseEverything.ino View File

//SPI.setSCK(14); // Audio shield has SCK on pin 14 //SPI.setSCK(14); // Audio shield has SCK on pin 14
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7 //SPI.setMOSI(7); // Audio shield has MOSI on pin 7


//uncomment these if you have other SPI chips connected
//to keep them disabled while using only SerialFlash
//pinMode(4, INPUT_PULLUP);
//pinMode(10, INPUT_PULLUP);

// wait up to 10 seconds for Arduino Serial Monitor // wait up to 10 seconds for Arduino Serial Monitor
unsigned long startMillis = millis(); unsigned long startMillis = millis();
while (!Serial && (millis() - startMillis < 10000)) ; while (!Serial && (millis() - startMillis < 10000)) ;

+ 5
- 0
examples/ListFiles/ListFiles.ino View File

//SPI.setSCK(14); // Audio shield has SCK on pin 14 //SPI.setSCK(14); // Audio shield has SCK on pin 14
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7 //SPI.setMOSI(7); // Audio shield has MOSI on pin 7


//uncomment these if you have other SPI chips connected
//to keep them disabled while using only SerialFlash
//pinMode(4, INPUT_PULLUP);
//pinMode(10, INPUT_PULLUP);

// wait for Arduino Serial Monitor // wait for Arduino Serial Monitor
while (!Serial) ; while (!Serial) ;
delay(100); delay(100);

+ 5
- 0
examples/RawHardwareTest/RawHardwareTest.ino View File

//SPI.setSCK(14); // Audio shield has SCK on pin 14 //SPI.setSCK(14); // Audio shield has SCK on pin 14
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7 //SPI.setMOSI(7); // Audio shield has MOSI on pin 7


//uncomment these if you have other SPI chips connected
//to keep them disabled while using only SerialFlash
//pinMode(4, INPUT_PULLUP);
//pinMode(10, INPUT_PULLUP);

while (!Serial) ; while (!Serial) ;
delay(100); delay(100);



Loading…
Cancel
Save