SPI Flash Allocation Table

I think the play objects need to gain some lower latency features (mainly, keeping the file open and ready) on the next major round of audio library work.
 
Paul,

currently, i'm rewriting my sdfile-flashing-utility.
Are there known issues with SerialFlash.eraseAll(); ?
It does not work for me. I'm using it for the Audioshield, together with SD.h

Code:
  SPI.setSCK(14);  // Audio shield has SCK on pin 14
  SPI.setMOSI(7);  // Audio shield has MOSI on pin 7
..
  SerialFlash.begin();    
..
  SerialFlash.eraseAll();
  while (!SerialFlash.ready()) {
  }

Edit:
- is eraseAll() the correct function to erase the whole chip ?
 
Last edited:
Is there any way to copy data to SPI flash (via AVR) directly from computer? Like in Copy from SD example? :)
 
Back
Top