55 lines
1.7 KiB
C
55 lines
1.7 KiB
C
/*!
|
|
* \file fatfs.h
|
|
*
|
|
* \brief Target FatFS implementation
|
|
*
|
|
* \copyright Revised BSD License, see section \ref LICENSE.
|
|
*
|
|
* \code
|
|
*
|
|
* _ __ _ ________ _
|
|
* | |/ /(_)___ / ____/ /_ (_)___
|
|
* | // / __ \/ / / __ \/ / __ \
|
|
* / |/ / / / / /___/ / / / / /_/ /
|
|
* /_/|_/_/_/ /_/\____/_/ /_/_/ .___/
|
|
* /_/
|
|
* (C) 2022-2025 XinChip
|
|
*
|
|
* \endcode
|
|
*
|
|
* \author ( XinChip ) Alex-J
|
|
*
|
|
* \author ( XinChip )
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __fatfs_H
|
|
#define __fatfs_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*-----------------------------------------------------------------------------------
|
|
INCLUDE HEADE FILES
|
|
------------------------------------------------------------------------------------*/
|
|
#include "ff.h"
|
|
#include "ff_gen_drv.h"
|
|
|
|
/*------------------------------------------------------------------------------------
|
|
Global Variables
|
|
-------------------------------------------------------------------------------------*/
|
|
extern char Path[4]; /* USER logical drive path */
|
|
extern FATFS FatFS; /* File system object for USER logical drive */
|
|
extern FIL File; /* File object for USER */
|
|
|
|
/*------------------------------------------------------------------------------------
|
|
Exported Functions
|
|
------------------------------------------- -----------------------------------------*/
|
|
void FATFS_Init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*__fatfs_H */
|