69 lines
2.1 KiB
C
69 lines
2.1 KiB
C
/**
|
|
******************************************************************************
|
|
* @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 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
|
|
}
|
|
#endif
|
|
|
|
#endif /* __FATFS_STORAGE_H */
|