1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/mtd_sdcard
Benjamin Valentin 7d291b5707 drivers/mtd_sdard: implement page-wise read() and write()
SD cards are usually larger than 4 GiB, so using 32 bit addressing will
break once they are filled to a certain extend.

Implement read_page() and write_page() which at a page size of 512
should work for SD cards of up to 2 TiB.

The read() and write() functions will ignore any offset that is not aligned
with the page boundary, so do the same for the new functions, but at least
report an error.
2020-08-18 17:25:39 +02:00
..
Kconfig drivers/mtd_sdcard : Expose to kconfig 2020-05-04 22:12:13 +05:30
Makefile Merge pull request #7324 from MichelRottleuthner/sdcard_mtd 2017-08-09 11:30:41 +02:00
mtd_sdcard.c drivers/mtd_sdard: implement page-wise read() and write() 2020-08-18 17:25:39 +02:00