├── README.md ├── SerialFlash.h ├── SerialFlashChip.cpp ├── SerialFlashDirectory.cpp ├── doc └── w25q128fv.jpg ├── docs └── issue_template.md ├── examples ├── CopyFromSD │ └── CopyFromSD.ino ├── CopyFromSerial │ └── CopyFromSerial.ino ├── EraseEverything │ └── EraseEverything.ino ├── ListFiles │ └── ListFiles.ino ├── MP3Player │ └── MP3Player.ino ├── RawHardwareTest │ └── RawHardwareTest.ino └── ReadBenchmark │ └── ReadBenchmark.ino ├── extras └── rawfile-uploader.py ├── keywords.txt ├── library.json ├── library.properties ├── tests.txt └── util └── SerialFlash_directwrite.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/README.md -------------------------------------------------------------------------------- /SerialFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/SerialFlash.h -------------------------------------------------------------------------------- /SerialFlashChip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/SerialFlashChip.cpp -------------------------------------------------------------------------------- /SerialFlashDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/SerialFlashDirectory.cpp -------------------------------------------------------------------------------- /doc/w25q128fv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/doc/w25q128fv.jpg -------------------------------------------------------------------------------- /docs/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/docs/issue_template.md -------------------------------------------------------------------------------- /examples/CopyFromSD/CopyFromSD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/CopyFromSD/CopyFromSD.ino -------------------------------------------------------------------------------- /examples/CopyFromSerial/CopyFromSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/CopyFromSerial/CopyFromSerial.ino -------------------------------------------------------------------------------- /examples/EraseEverything/EraseEverything.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/EraseEverything/EraseEverything.ino -------------------------------------------------------------------------------- /examples/ListFiles/ListFiles.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/ListFiles/ListFiles.ino -------------------------------------------------------------------------------- /examples/MP3Player/MP3Player.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/MP3Player/MP3Player.ino -------------------------------------------------------------------------------- /examples/RawHardwareTest/RawHardwareTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/RawHardwareTest/RawHardwareTest.ino -------------------------------------------------------------------------------- /examples/ReadBenchmark/ReadBenchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/examples/ReadBenchmark/ReadBenchmark.ino -------------------------------------------------------------------------------- /extras/rawfile-uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/extras/rawfile-uploader.py -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/library.properties -------------------------------------------------------------------------------- /tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/tests.txt -------------------------------------------------------------------------------- /util/SerialFlash_directwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/SerialFlash/HEAD/util/SerialFlash_directwrite.h --------------------------------------------------------------------------------