diff options
| author | hathach <[email protected]> | 2018-12-12 00:51:56 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-12-12 00:51:56 +0700 |
| commit | b7ad49332cd9a5539e35a75785adb5ca2e79715a (patch) | |
| tree | 21530d34defa6dd890de30fcf4ace8ec21c5a49a /lib | |
| parent | b2ec8230d9acffbc0df280832b0341b82584b226 (diff) | |
| parent | c88e16bd116a826ebd2d9fb348fd3704f6b1f14d (diff) | |
Merge pull request #20 from hathach/devlocal
Host stack rework
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fatfs/ccsbcs.c | 4 | ||||
| -rw-r--r-- | lib/fatfs/diskio.c | 4 | ||||
| -rw-r--r-- | lib/fatfs/ff.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/fatfs/ccsbcs.c b/lib/fatfs/ccsbcs.c index 5cf0dd503..07d6f0983 100644 --- a/lib/fatfs/ccsbcs.c +++ b/lib/fatfs/ccsbcs.c @@ -27,7 +27,7 @@ #include "ff.h" -#if CFG_TUSB_HOST_MSC +#if CFG_TUH_MSC #if _CODE_PAGE == 437 #define _TBLDEF 1 @@ -540,4 +540,4 @@ WCHAR ff_wtoupper ( /* Upper converted character */ return tbl_lower[i] ? tbl_upper[i] : chr; } -#endif // CFG_TUSB_HOST_MSC +#endif // CFG_TUH_MSC diff --git a/lib/fatfs/diskio.c b/lib/fatfs/diskio.c index 54a228019..939015c00 100644 --- a/lib/fatfs/diskio.c +++ b/lib/fatfs/diskio.c @@ -38,7 +38,7 @@ #include "tusb.h" -#if CFG_TUSB_HOST_MSC +#if CFG_TUH_MSC //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ @@ -204,4 +204,4 @@ DWORD get_fattime (void) return timestamp.value; } -#endif // CFG_TUSB_HOST_MSC +#endif // CFG_TUH_MSC diff --git a/lib/fatfs/ff.c b/lib/fatfs/ff.c index 897965332..79414af07 100644 --- a/lib/fatfs/ff.c +++ b/lib/fatfs/ff.c @@ -99,7 +99,7 @@ #include "ff.h" /* FatFs configurations and declarations */ #include "diskio.h" /* Declarations of low level disk I/O functions */ -#if CFG_TUSB_HOST_MSC +#if CFG_TUH_MSC /*-------------------------------------------------------------------------- Module Private Definitions @@ -4327,4 +4327,4 @@ int f_printf ( #endif /* !_FS_READONLY */ #endif /* _USE_STRFUNC */ -#endif // CFG_TUSB_HOST_MSC +#endif // CFG_TUH_MSC |
