SD card

From Gamebuino Wiki
Revision as of 2014-07-16T11:46:51 by Rodot (talk | contribs)
Jump to: navigation, search

Libraries

Arduino default library (included with Arduino)

  • FAT16 and FAT32 support on both standard and high-capacity SD cards
  • File: create, read, write, delete and truncate
  • Directory: create, read, write and delete
  • Multiple volume/partition support

fat16lib

  • FAT16 support on standard SD cards only
  • File: create, read and write
  • Root-directory support only

tinyFAT (included with Gamebuino)

  • FAT16 on SD cards
  • File: create, read, write, rename, delete (ASCII and Binary I/O)
  • Root-directory support only, only one file open at a time

Petit FatFs (included with Gamebuino)

  • FAT16 and FAT32 support
  • File: open, read, streaming-read, seek
  • Directory: read
  • Single volume and single file
  • REALLY small RAM footprint

Sources