9ceb218f80
Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
309 B
C
15 lines
309 B
C
/**
|
|
* @file fatfs_log.h
|
|
* @brief FATFS 日志模块兼容头文件
|
|
*/
|
|
#ifndef FATFS_LOG_H
|
|
#define FATFS_LOG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Log module placeholder — log storage is handled by flash_file_mgr */
|
|
void fatfs_log_init(void);
|
|
void fatfs_log_write(const char *format, ...);
|
|
|
|
#endif /* FATFS_LOG_H */
|