Mercurial > ~darius > hgwebdir.cgi > stm32temp
comparison fatfs/option/unicode.c @ 49:ace431a0d0f5
Add SDIO code poached from STM. Use FatFS to read from SD card.
LFN doesn't work reliably so it's disabled for now.
author | Daniel O'Connor <darius@dons.net.au> |
---|---|
date | Wed, 03 Apr 2013 23:34:20 +1030 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:2f336d212c74 | 49:ace431a0d0f5 |
---|---|
1 #include "../ff.h" | |
2 | |
3 #if _USE_LFN != 0 | |
4 | |
5 #if _CODE_PAGE == 932 | |
6 #include "cc932.c" | |
7 #elif _CODE_PAGE == 936 | |
8 #include "cc936.c" | |
9 #elif _CODE_PAGE == 949 | |
10 #include "cc949.c" | |
11 #elif _CODE_PAGE == 950 | |
12 #include "cc950.c" | |
13 #else | |
14 #include "ccsbcs.c" | |
15 #endif | |
16 | |
17 #endif |