Select one of the symbols to view example projects that use it.
 
Outline
#define __FATFS_STORAGE_H
Exported types
BmpHeader
Storage_OpenReadFile(uint8_t, uint16_t, const char *);
Storage_CopyFile(const char *, const char *);
Storage_GetDirectoryBitmapFiles(const char *, char **);
Storage_CheckBitmapFile(const char *, uint32_t *);
Buffercmp(uint8_t *, uint8_t *, uint16_t);
Files
loading...
CodeScopeSTM32 Libraries and SamplesDemonstrationsInc/fatfs_storage.h
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file fatfs_storage.h * @author MCD Application Team * @brief This file contains all the functions prototypes for the storage * firmware driver. ****************************************************************************** * @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. * ****************************************************************************** *//* ... */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __FATFS_STORAGE_H #define __FATFS_STORAGE_H #ifdef __cplusplus extern "C" {/* ... */ #endif /* Includes ------------------------------------------------------------------*/ /* Exported types ------------------------------------------------------------*/ /* Header of a bitmap file */ #pragma pack(1) /* Mandatory to remove any padding */ typedef struct BmpHeader { uint8_t B; uint8_t M; uint32_t fsize; uint16_t res1; uint16_t res2; uint32_t offset; uint32_t hsize; uint32_t w; uint32_t h; uint16_t planes; uint16_t bpp; uint32_t ctype; uint32_t dsize; uint32_t hppm; uint32_t vppm; uint32_t colorsused; uint32_t colorreq; ...}BmpHeader; Exported types /* Exported constants --------------------------------------------------------*/ /* Exported macro ------------------------------------------------------------*/ /* Exported functions ------------------------------------------------------- */ uint32_t Storage_OpenReadFile(uint8_t Xpoz, uint16_t Ypoz, const char *BmpName); uint32_t Storage_CopyFile(const char *BmpName1, const char *BmpName2); uint32_t Storage_GetDirectoryBitmapFiles(const char* DirName, char* Files[]); uint32_t Storage_CheckBitmapFile(const char *BmpName, uint32_t *FileLen); uint8_t Buffercmp(uint8_t *pBuffer1, uint8_t *pBuffer2, uint16_t BufferLength); #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif /* __FATFS_STORAGE_H */