arduino-dataflash icon indicating copy to clipboard operation
arduino-dataflash copied to clipboard

AT45DB041E always busy

Open frabert opened this issue 7 years ago • 0 comments

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?

frabert avatar Jun 17 '18 15:06 frabert