1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
25
26
27
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
63
75
76
81
92
93
101
102
103
104
105
106
107
108
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
155
156
157
158
159
160
161
162
169
170
171
172
173
174
175
176
177
178
179
180
185
192
199
204
206
207
208
209
210
/* ... */
#include <string.h>
#include "ff_gen_drv.h"
#include "stm32f413h_discovery.h"
#include "stm32f413h_discovery_sd.h"
Includes
static volatile DSTATUS Stat = STA_NOINIT;
Private variables
DSTATUS SD_initialize (BYTE);
DSTATUS SD_status (BYTE);
DRESULT SD_read (BYTE, BYTE*, DWORD, UINT);
#if _USE_WRITE == 1
DRESULT SD_write (BYTE, const BYTE*, DWORD, UINT);
#endif
#if _USE_IOCTL == 1
DRESULT SD_ioctl (BYTE, BYTE, void*);
#endif
const Diskio_drvTypeDef SD_Driver =
{
SD_initialize,
SD_status,
SD_read,
#if _USE_WRITE == 1
SD_write,
#endif
#if _USE_IOCTL == 1
SD_ioctl,
#endif
...};
Private function prototypes
/* ... */
DSTATUS SD_initialize(BYTE lun)
{
Stat = STA_NOINIT;
if(BSP_SD_Init() == MSD_OK)
{
Stat &= ~STA_NOINIT;
}if (BSP_SD_Init() == MSD_OK) { ... }
return Stat;
}{ ... }
/* ... */
DSTATUS SD_status(BYTE lun)
{
Stat = STA_NOINIT;
if(BSP_SD_GetCardState() == MSD_OK)
{
Stat &= ~STA_NOINIT;
}if (BSP_SD_GetCardState() == MSD_OK) { ... }
return Stat;
}{ ... }
/* ... */
DRESULT SD_read(BYTE lun, BYTE *buff, DWORD sector, UINT count)
{
DRESULT res = RES_ERROR;
uint32_t timeout = 100000;
__disable_irq();
if(BSP_SD_ReadBlocks((uint32_t*)buff,
(uint32_t) (sector),
count, SD_DATATIMEOUT) == MSD_OK)
{
while(BSP_SD_GetCardState()!= MSD_OK)
{
if (timeout-- == 0)
{
return RES_ERROR;
}if (timeout-- == 0) { ... }
}while (BSP_SD_GetCardState()!= MSD_OK) { ... }
res = RES_OK;
}if (BSP_SD_ReadBlocks((uint32_t*)buff, (uint32_t) (sector), count, SD_DATATIMEOUT) == MSD_OK) { ... }
__enable_irq();
return res;
}{ ... }
/* ... */
#if _USE_WRITE == 1
DRESULT SD_write(BYTE lun, const BYTE *buff, DWORD sector, UINT count)
{
DRESULT res = RES_ERROR;
uint32_t timeout = 100000;
__disable_irq();
if(BSP_SD_WriteBlocks((uint32_t*)buff,
(uint32_t)(sector),
count, SD_DATATIMEOUT) == MSD_OK)
{
while(BSP_SD_GetCardState()!= MSD_OK)
{
if (timeout-- == 0)
{
return RES_ERROR;
}if (timeout-- == 0) { ... }
}while (BSP_SD_GetCardState()!= MSD_OK) { ... }
res = RES_OK;
}if (BSP_SD_WriteBlocks((uint32_t*)buff, (uint32_t)(sector), count, SD_DATATIMEOUT) == MSD_OK) { ... }
__enable_irq();
return res;
}{ ... }
/* ... */#endif
/* ... */
#if _USE_IOCTL == 1
DRESULT SD_ioctl(BYTE lun, BYTE cmd, void *buff)
{
DRESULT res = RES_ERROR;
BSP_SD_CardInfo CardInfo;
if (Stat & STA_NOINIT) return RES_NOTRDY;
switch (cmd)
{
case CTRL_SYNC :
res = RES_OK;
break;
case CTRL_SYNC :
case GET_SECTOR_COUNT :
BSP_SD_GetCardInfo(&CardInfo);
*(DWORD*)buff = CardInfo.LogBlockNbr;
res = RES_OK;
break;
case GET_SECTOR_COUNT :
case GET_SECTOR_SIZE :
BSP_SD_GetCardInfo(&CardInfo);
*(WORD*)buff = CardInfo.LogBlockSize;
res = RES_OK;
break;
case GET_SECTOR_SIZE :
case GET_BLOCK_SIZE :
BSP_SD_GetCardInfo(&CardInfo);
*(DWORD*)buff = CardInfo.LogBlockSize;
break;
case GET_BLOCK_SIZE :
default:
res = RES_PARERR;default
}switch (cmd) { ... }
return res;
}{ ... }
/* ... */#endifPrivate functions