BlockoS / arduino-dataflash

Support for Atmel Dataflash for the Arduino
http://blockos.github.com/arduino-dataflash
23 stars 14 forks source link

AT45DB041E always busy #25

Open frabert opened 6 years ago

frabert commented 6 years ago

Hi! I'm trying to interface an Arduino Leonardo to an AT45DB041E, but I seem to never be able to write to it, as it always gets stuch waiting for the device to get ready:

  SPI.begin();
  flash.setup(1);
  flash.begin();

  flash.bufferWrite(1, 0); // Aways gets stuck here
  for(int i=0;i < 256; i++)
  {
    SPI.transfer(0x00);
  }
  flash.bufferToPage(1, 0);

Any idea what am I doing wrong?