500MB Data Storage without SD Card

I want to save 300 - 500 MB (Mega Byte) data on a device using nrf52832 but unfortunately I can not use removable device like SD card. I am also aware that nrf do not provide support for eMMC or NAND flash. NOR flash can not save that much data and even even if it can do, the hardware is not available at stores. Kindly guide me in this regard. 

Thanks

Parents
  • NAND Flash is just a simple SPI with DMA interface == SPIM, try an 8-pin 4GBit == 512MByte chip, lots available eg MT29F4G01ABBFDWB-IT-F or W25X40CLSNIG. Use in SPI or QSPI mode;  I use Micron parts on the nRF52832.

    Bad bits? Yes there are some but not many and most parts have these mapped out on receipt; manage as required unlike the SD card interface which does that for you. Bits can go bad in later usage, usually a read after write or software error correction handles that. Many applications eg medical device are write-once read back at depot; if a sector is bad after a write just write the same data in the next sector (example).

  • I am new to nrf so can you share the library that I can use for storing and fetching files from this flash memory? 
    According to my understanding I can not use it with SD card drivers and I can not work on custom drivers. 

    Any kind of documentation url will be helpful. 

Reply Children
Related