diskioStructs.h
Go to the documentation of this file.
1 #ifndef DISKIOSTRUCTS_H_
2 #define DISKIOSTRUCTS_H_
3 
4 #include "integer.h"
5 typedef unsigned char DSTATUS;
6 
7 
9 typedef enum
10 {
11  RES_OK = 0, /* 0: Successful */
12  RES_ERROR, /* 1: R/W Error */
13  RES_WRPRT, /* 2: Write Protected */
14  RES_NOTRDY, /* 3: Not Ready */
15  RES_PARERR /* 4: Invalid Parameter */
16 } DRESULT;
17 
18 
19 #endif /* DISKIOSTRUCTS_H_ */
Definition: diskioStructs.h:11
Definition: diskioStructs.h:13
unsigned char DSTATUS
Status of Disk Functions.
Definition: diskioStructs.h:5
Definition: diskioStructs.h:12
Definition: diskioStructs.h:15
DRESULT
Results of Disk Functions.
Definition: diskioStructs.h:9
Definition: diskioStructs.h:14