WILLY BAYOT / stm32_adafruit

Dependents:   TDEMNucleo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers fatfs_storage.h Source File

fatfs_storage.h

Go to the documentation of this file.
00001 /**
00002   ******************************************************************************
00003   * @file    fatfs_storage.h
00004   * @author  MCD Application Team
00005   * @version V1.0.0
00006   * @date    26-June-2014
00007   * @brief   This file contains all the functions prototypes for the storage
00008   *          firmware driver.
00009   ******************************************************************************
00010   * @attention
00011   *
00012   * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
00013   *
00014   * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
00015   * You may not use this file except in compliance with the License.
00016   * You may obtain a copy of the License at:
00017   *
00018   *        http://www.st.com/software_license_agreement_liberty_v2
00019   *
00020   * Unless required by applicable law or agreed to in writing, software 
00021   * distributed under the License is distributed on an "AS IS" BASIS, 
00022   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00023   * See the License for the specific language governing permissions and
00024   * limitations under the License.
00025   *
00026   ******************************************************************************
00027   */
00028 
00029 /* Define to prevent recursive inclusion -------------------------------------*/
00030 #ifndef __FATFS_STORAGE_H
00031 #define __FATFS_STORAGE_H
00032 
00033 #ifdef __cplusplus
00034 extern "C"
00035 {
00036 #endif
00037 
00038 /* Includes ------------------------------------------------------------------*/
00039 /* Exported types ------------------------------------------------------------*/
00040 /* Exported constants --------------------------------------------------------*/
00041 /* Exported macro ------------------------------------------------------------*/
00042 /* Exported functions ------------------------------------------------------- */
00043 uint32_t Storage_OpenReadFile(uint8_t Xpoz, uint16_t Ypoz, const char *BmpName);
00044 uint32_t Storage_GetDirectoryBitmapFiles(const char* DirName, char* Files[]);
00045 uint32_t Storage_CheckBitmapFile(const char *BmpName, uint32_t *FileLen);
00046 
00047 #ifdef __cplusplus
00048 }
00049 #endif
00050 
00051 #endif /* __FATFS_STORAGE_H */
00052 
00053 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/