Library for SD card

Dependents:   City_Game_JSON saver-noenvio-1 SNOCC_V2 lab7_prog1 ... more

Committer:
AlexVC97
Date:
Wed Mar 29 07:00:22 2017 +0000
Revision:
0:3bdfc1556537
SDFileSystem Library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AlexVC97 0:3bdfc1556537 1 /*-------------------------------------------*/
AlexVC97 0:3bdfc1556537 2 /* Integer type definitions for FatFs module */
AlexVC97 0:3bdfc1556537 3 /*-------------------------------------------*/
AlexVC97 0:3bdfc1556537 4
AlexVC97 0:3bdfc1556537 5 #ifndef _FF_INTEGER
AlexVC97 0:3bdfc1556537 6 #define _FF_INTEGER
AlexVC97 0:3bdfc1556537 7
AlexVC97 0:3bdfc1556537 8 #ifdef _WIN32 /* Development platform */
AlexVC97 0:3bdfc1556537 9
AlexVC97 0:3bdfc1556537 10 #include <windows.h>
AlexVC97 0:3bdfc1556537 11 #include <tchar.h>
AlexVC97 0:3bdfc1556537 12
AlexVC97 0:3bdfc1556537 13 #else /* Embedded platform */
AlexVC97 0:3bdfc1556537 14
AlexVC97 0:3bdfc1556537 15 /* This type MUST be 8-bit */
AlexVC97 0:3bdfc1556537 16 typedef unsigned char BYTE;
AlexVC97 0:3bdfc1556537 17
AlexVC97 0:3bdfc1556537 18 /* These types MUST be 16-bit */
AlexVC97 0:3bdfc1556537 19 typedef short SHORT;
AlexVC97 0:3bdfc1556537 20 typedef unsigned short WORD;
AlexVC97 0:3bdfc1556537 21 typedef unsigned short WCHAR;
AlexVC97 0:3bdfc1556537 22
AlexVC97 0:3bdfc1556537 23 /* These types MUST be 16-bit or 32-bit */
AlexVC97 0:3bdfc1556537 24 typedef int INT;
AlexVC97 0:3bdfc1556537 25 typedef unsigned int UINT;
AlexVC97 0:3bdfc1556537 26
AlexVC97 0:3bdfc1556537 27 /* These types MUST be 32-bit */
AlexVC97 0:3bdfc1556537 28 typedef long LONG;
AlexVC97 0:3bdfc1556537 29 typedef unsigned long DWORD;
AlexVC97 0:3bdfc1556537 30
AlexVC97 0:3bdfc1556537 31 #endif
AlexVC97 0:3bdfc1556537 32
AlexVC97 0:3bdfc1556537 33 #endif