More actions
No edit summary |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Infobox 3DS Homebrews | {{Infobox 3DS Homebrews | ||
|title=SDFAT | |title=SDFAT | ||
|image=3ds.png | |||
|description=Minimalist SD FAT filesystem IO. | |description=Minimalist SD FAT filesystem IO. | ||
|author=nop90 | |author=nop90 | ||
Line 7: | Line 8: | ||
|version=2014 | |version=2014 | ||
|license=Mixed | |license=Mixed | ||
|download=https://dlhb.gamebrew.org/ | |download=[https://dlhb.gamebrew.org/3dshomebrews/sdfat.zip Source Only] | ||
|website=https://github.com/nop90/SDFAT | |website=https://github.com/nop90/SDFAT | ||
|source=https://github.com/nop90/SDFAT | |source=https://github.com/nop90/SDFAT | ||
Line 13: | Line 14: | ||
SDFAT is a minimalist SD FAT filesystem IO. It is in alpha state, but almost stable and usable. | SDFAT is a minimalist SD FAT filesystem IO. It is in alpha state, but almost stable and usable. | ||
It uses 3DS SDIO Handling code from Kane49 | It uses 3DS SDIO Handling code from Kane49 adaptation of the sdmmc module made for libnds (sources included), based on information from http://www.pjrc.com/tech/8051/ide/fat32.html. | ||
==User guide== | |||
Limitations | ===Limitations=== | ||
* Only FAT16 and FAT 32. | * Only FAT16 and FAT 32. | ||
* Only 8.3 file name support. | * Only 8.3 file name support. | ||
Line 30: | Line 31: | ||
==External links== | ==External links== | ||
* GitHub - https://github.com/nop90/SDFAT | * GitHub - https://github.com/nop90/SDFAT | ||
Latest revision as of 11:45, 22 Haziran 2024
SDFAT | |
---|---|
General | |
Author | nop90 |
Type | System Tools |
Version | 2014 |
License | Mixed |
Last Updated | 2014/03/12 |
Links | |
[Source Only Download] | |
Website | |
Source | |
SDFAT is a minimalist SD FAT filesystem IO. It is in alpha state, but almost stable and usable.
It uses 3DS SDIO Handling code from Kane49 adaptation of the sdmmc module made for libnds (sources included), based on information from http://www.pjrc.com/tech/8051/ide/fat32.html.
User guide
Limitations
- Only FAT16 and FAT 32.
- Only 8.3 file name support.
- Only 1 file opened at a time.
- No file or directory creation.
- No file resizing, can write only on already allocated sectors.
Known issues
- Wrong file/folder addressing on FAT 16 (problem identified, but in low periority to fix).
- Reading a file can affect the directory listing if the dir has more than few files. Fixing in progress.
- Cluster change not fully tested and probably still buggy.
External links
- GitHub - https://github.com/nop90/SDFAT