21 lines
236 B
C
Executable File
21 lines
236 B
C
Executable File
/**
|
|
* @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 |