Select one of the symbols to view example projects that use it.
 
Outline
#include "fatfs_storage.h"
sector
fs
fno
dir
F
SlidesCheck
BytesRead
Storage_Init()
Storage_OpenReadFile(uint8_t *, const char *)
Storage_CheckBitmapFile(const char *, uint32_t *)
Storage_GetDirectoryBitmapFiles(const char *, char **)
Buffercmp(uint8_t *, uint8_t *, uint16_t)
Files
loading...
CodeScopeSTM32 Libraries and SamplesLCD_AnimatedPictureFromSDCardSrc/fatfs_storage.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file Display/LTDC_AnimatedPictureFromSDCard/Src/fatfs_storage.c * @author MCD Application Team * @brief This file includes the Storage (FatFs) driver for the STM32469I-EVAL * application. ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Includes ------------------------------------------------------------------*/ #include "fatfs_storage.h" /** @addtogroup STM32469I_EVAL_FAT_FS * @{ *//* ... */ /** @defgroup FATFS_STORAGE * @brief This file includes the Storage (FatFs) driver for the STM32469I-EVAL * application. * @{ *//* ... */ /** @defgroup FATFS_STORAGE_Private_Types * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup FATFS_STORAGE_Private_Defines * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup FATFS_STORAGE_Private_Macros * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup FATFS_STORAGE_Private_Variables * @{ *//* ... */ uint8_t sector[512]; FATFS fs; FILINFO fno; DIR dir; FIL F; const uint8_t SlidesCheck[2] = { 0x42, 0x4D ...}; uint32_t BytesRead = 0; /** * @} *//* ... */ /** @defgroup FATFS_STORAGE_Private_FunctionPrototypes * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup FATFS_STORAGE_Private_Functions * @{ *//* ... */ /** * @brief SDCARD Initialization for FatFs * @param None * @retval err : Error status (0=> success, 1=> fail) *//* ... */ uint32_t Storage_Init(void) { BSP_SD_Init(); /****************** FatFs Volume Access ******************************/ if(f_mount(&fs, (TCHAR const*)"",0)) { return 1; }if (f_mount(&fs, (TCHAR const*)"",0)) { ... } return 0; }{ ... } /** * @brief Open a file and copy its content to a buffer * @param DirName: the Directory name to open * @param FileName: the file name to open * @param BufferAddress: A pointer to a buffer to copy the file to * @param FileLen: the File length * @retval err: Error status (0=> success, 1=> fail) *//* ... */ uint32_t Storage_OpenReadFile(uint8_t *Address, const char* BmpName) { uint32_t index = 0, size = 0, i1 = 0; uint32_t BmpAddress; FIL F1; if (f_open(&F1, (TCHAR const*)BmpName, FA_READ) != FR_OK) { while(1) { }while (1) { ... } }if (f_open(&F1, (TCHAR const*)BmpName, FA_READ) != FR_OK) { ... } if (f_read (&F1, sector, 30, (UINT *)&BytesRead) != FR_OK) { while(1) { }while (1) { ... } }if (f_read (&F1, sector, 30, (UINT *)&BytesRead) != FR_OK) { ... } BmpAddress = (uint32_t)sector; /* Read bitmap size */ size = *(uint16_t *) (BmpAddress + 2); size |= (*(uint16_t *) (BmpAddress + 4)) << 16; /* Get bitmap data address offset */ index = *(uint16_t *) (BmpAddress + 10); index |= (*(uint16_t *) (BmpAddress + 12)) << 16; f_close (&F1); f_open (&F1, (TCHAR const*)BmpName, FA_READ); do { if (size < 256*2) { i1 = size; }if (size < 256*2) { ... } else { i1 = 256*2; }else { ... } size -= i1; f_read (&F1, sector, i1, (UINT *)&BytesRead); for (index = 0; index < i1; index++) { *(__IO uint8_t*) (Address) = *(__IO uint8_t *)BmpAddress; BmpAddress++; Address++; }for (index = 0; index < i1; index++) { ... } BmpAddress = (uint32_t)sector; ...} while (size > 0); f_close (&F1); return 1; }{ ... } /** * @brief Open a file and copy its content to a buffer * @param DirName: the Directory name to open * @param FileName: the file name to open * @param BufferAddress: A pointer to a buffer to copy the file to * @param FileLen: the File length * @retval err: Error status (0=> success, 1=> fail) *//* ... */ uint32_t Storage_CheckBitmapFile(const char* BmpName, uint32_t *FileLen) { if(f_mount(&fs, (TCHAR const*)"",0)) { return 1; }if (f_mount(&fs, (TCHAR const*)"",0)) { ... } if(f_open (&F, (TCHAR const*)BmpName, FA_READ)) { return 2; }if (f_open (&F, (TCHAR const*)BmpName, FA_READ)) { ... } f_read(&F, sector, 6, (UINT *)&BytesRead); if(Buffercmp((uint8_t *)SlidesCheck, (uint8_t *) sector, 2) != 0) { return 3; }if (Buffercmp((uint8_t *)SlidesCheck, (uint8_t *) sector, 2) != 0) { ... } return 0; }{ ... } /** * @brief List up to 25 file on the root directory with extension .BMP * @param None * @retval The number of the found files *//* ... */ uint32_t Storage_GetDirectoryBitmapFiles (const char* DirName, char* Files[]) { FATFS fs; FILINFO fno; DIR dir; uint32_t counter = 0, index = 0; FRESULT res; /* Open filesystem */ if(f_mount(&fs, (TCHAR const*)"",0) != FR_OK) { return 0; }if (f_mount(&fs, (TCHAR const*)"",0) != FR_OK) { ... } /* Open directory */ res = f_opendir(&dir, (TCHAR const*)DirName); if (res == FR_OK) { for (;;) { res = f_readdir(&dir, &fno); if (res != FR_OK || fno.fname[0] == 0) break; if (fno.fname[0] == '.') continue; if (!(fno.fattrib & AM_DIR)) { do { counter++; ...} while (fno.fname[counter] != 0x2E); /* . */ if (index < MAX_BMP_FILES) { if ((fno.fname[counter + 1] == 'B') && (fno.fname[counter + 2] == 'M') && (fno.fname[counter + 3] == 'P')) { if(sizeof(fno.fname) <= (MAX_BMP_FILE_NAME + 2)) { sprintf (Files[index], "%s", fno.fname); index++; }if (sizeof(fno.fname) <= (MAX_BMP_FILE_NAME + 2)) { ... } }if ((fno.fname[counter + 1] == 'B') && (fno.fname[counter + 2] == 'M') && (fno.fname[counter + 3] == 'P')) { ... } }if (index < MAX_BMP_FILES) { ... } counter = 0; }if (!(fno.fattrib & AM_DIR)) { ... } }for (;;) { ... } }if (res == FR_OK) { ... } f_mount(NULL, (TCHAR const*)"",0); return index; }{ ... } /** * @brief Compares two buffers. * @param pBuffer1, pBuffer2: buffers to be compared. * @param BufferLength: buffer's length. * @retval 0: pBuffer1 identical to pBuffer2 * 1: pBuffer1 differs from pBuffer2 *//* ... */ uint8_t Buffercmp(uint8_t* pBuffer1, uint8_t* pBuffer2, uint16_t BufferLength) { while (BufferLength--) { if (*pBuffer1 != *pBuffer2) { return 1; }if (*pBuffer1 != *pBuffer2) { ... } pBuffer1++; pBuffer2++; }while (BufferLength--) { ... } return 0; }{ ... } /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */