22 lines
406 B
C
22 lines
406 B
C
//
|
|
// Created by cfif on 29.05.2024.
|
|
//
|
|
|
|
#ifndef SMART_COMPONENTS_LITTLEFSINTERFACE_H
|
|
#define SMART_COMPONENTS_LITTLEFSINTERFACE_H
|
|
|
|
#include "cmsis_os2.h"
|
|
#include "lfs.h"
|
|
|
|
typedef struct {
|
|
lfs_t lfs;
|
|
struct lfs_config cfg;
|
|
#ifdef LFS_NO_MALLOC
|
|
struct lfs_file_config g_file_cfg;
|
|
#endif
|
|
} tLittleFileFs;
|
|
|
|
int LittleFileFsInit(tLittleFileFs *env);
|
|
|
|
#endif //SMART_COMPONENTS_LITTLEFSINTERFACE_H
|