├── .travis.yml ├── LICENSE ├── README.md ├── SDBlockDevice.cpp ├── SDBlockDevice.h ├── TESTS ├── block_device │ └── basic │ │ └── basic.cpp └── filesystem │ ├── basic │ └── basic.cpp │ ├── dirs │ └── main.cpp │ ├── files │ └── main.cpp │ ├── fopen │ └── fopen.cpp │ ├── parallel │ └── main.cpp │ └── seek │ └── main.cpp ├── config └── mbed_lib.json ├── docs └── pics │ └── NUCLEO_F429ZI_wiring_with_ci_test_shield.png └── util ├── fsfat_debug.h ├── fsfat_test.c └── fsfat_test.h /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/README.md -------------------------------------------------------------------------------- /SDBlockDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/SDBlockDevice.cpp -------------------------------------------------------------------------------- /SDBlockDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/SDBlockDevice.h -------------------------------------------------------------------------------- /TESTS/block_device/basic/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/block_device/basic/basic.cpp -------------------------------------------------------------------------------- /TESTS/filesystem/basic/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/filesystem/basic/basic.cpp -------------------------------------------------------------------------------- /TESTS/filesystem/dirs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/filesystem/dirs/main.cpp -------------------------------------------------------------------------------- /TESTS/filesystem/files/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/filesystem/files/main.cpp -------------------------------------------------------------------------------- /TESTS/filesystem/fopen/fopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/filesystem/fopen/fopen.cpp -------------------------------------------------------------------------------- /TESTS/filesystem/parallel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/filesystem/parallel/main.cpp -------------------------------------------------------------------------------- /TESTS/filesystem/seek/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/TESTS/filesystem/seek/main.cpp -------------------------------------------------------------------------------- /config/mbed_lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/config/mbed_lib.json -------------------------------------------------------------------------------- /docs/pics/NUCLEO_F429ZI_wiring_with_ci_test_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/docs/pics/NUCLEO_F429ZI_wiring_with_ci_test_shield.png -------------------------------------------------------------------------------- /util/fsfat_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/util/fsfat_debug.h -------------------------------------------------------------------------------- /util/fsfat_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/util/fsfat_test.c -------------------------------------------------------------------------------- /util/fsfat_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PelionIoT/sd-driver/HEAD/util/fsfat_test.h --------------------------------------------------------------------------------