21 lines
236 B
C
21 lines
236 B
C
![]() |
/**
|
||
|
* @file lv_fatfs.h
|
||
|
*/
|
||
|
|
||
|
#ifndef LV_FATFS_H
|
||
|
#define LV_FATFS_H
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void lv_fatfs_init(void);
|
||
|
|
||
|
void lv_fatfs_deinit(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*extern "C"*/
|
||
|
#endif
|
||
|
|
||
|
#endif
|