1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
23
24
28
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
85
86
94
95
96
97
98
99
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
125
126
127
128
129
130
137
138
139
140
141
142
143
144
145
146
147
152
158
164
169
171
172
173
174
175
/* ... */
#include "ff_gen_drv.h"
#include "sram_diskio.h"
Includes
#define BLOCK_SIZE 512
Private define
static volatile DSTATUS Stat = STA_NOINIT;
Private variables
DSTATUS SRAMDISK_initialize (BYTE);
DSTATUS SRAMDISK_status (BYTE);
DRESULT SRAMDISK_read (BYTE, BYTE*, DWORD, UINT);
#if _USE_WRITE == 1
DRESULT SRAMDISK_write (BYTE, const BYTE*, DWORD, UINT);
#endif
#if _USE_IOCTL == 1
DRESULT SRAMDISK_ioctl (BYTE, BYTE, void*);
#endif
const Diskio_drvTypeDef SRAMDISK_Driver =
{
SRAMDISK_initialize,
SRAMDISK_status,
SRAMDISK_read,
#if _USE_WRITE == 1
SRAMDISK_write,
#endif
#if _USE_IOCTL == 1
SRAMDISK_ioctl,
#endif
...};
Private function prototypes
/* ... */
DSTATUS SRAMDISK_initialize(BYTE lun)
{
Stat = STA_NOINIT;
if(BSP_SRAM_Init() == SRAM_OK)
{
Stat &= ~STA_NOINIT;
}if (BSP_SRAM_Init() == SRAM_OK) { ... }
return Stat;
}{ ... }
/* ... */
DSTATUS SRAMDISK_status(BYTE lun)
{
return Stat;
}{ ... }
/* ... */
DRESULT SRAMDISK_read(BYTE lun, BYTE *buff, DWORD sector, UINT count)
{
uint32_t BufferSize = (BLOCK_SIZE * count);
uint8_t *pMem = (uint8_t *) (SRAM_DEVICE_ADDR + (sector * BLOCK_SIZE));
for(; BufferSize != 0; BufferSize--)
{
*buff++ = *(__IO uint8_t *)pMem++;
}for (; BufferSize != 0; BufferSize--) { ... }
return RES_OK;
}{ ... }
/* ... */
#if _USE_WRITE == 1
DRESULT SRAMDISK_write(BYTE lun, const BYTE *buff, DWORD sector, UINT count)
{
uint32_t BufferSize = (BLOCK_SIZE * count);
uint8_t *pMem = (uint8_t *) (SRAM_DEVICE_ADDR + (sector * BLOCK_SIZE));
for(; BufferSize != 0; BufferSize--)
{
*(__IO uint8_t *)pMem++ = *buff++;
}for (; BufferSize != 0; BufferSize--) { ... }
return RES_OK;
}{ ... }
/* ... */#endif
/* ... */
#if _USE_IOCTL == 1
DRESULT SRAMDISK_ioctl(BYTE lun, BYTE cmd, void *buff)
{
DRESULT res = RES_ERROR;
if (Stat & STA_NOINIT) return RES_NOTRDY;
switch (cmd)
{
case CTRL_SYNC :
res = RES_OK;
break;
case CTRL_SYNC :
case GET_SECTOR_COUNT :
*(DWORD*)buff = SRAM_DEVICE_SIZE / BLOCK_SIZE;
res = RES_OK;
break;
case GET_SECTOR_COUNT :
case GET_SECTOR_SIZE :
*(WORD*)buff = BLOCK_SIZE;
res = RES_OK;
break;
case GET_SECTOR_SIZE :
case GET_BLOCK_SIZE :
*(DWORD*)buff = 1;
res = RES_OK;
break;
case GET_BLOCK_SIZE :
default:
res = RES_PARERR;default
}switch (cmd) { ... }
return res;
}{ ... }
/* ... */#endifPrivate functions