ESP32S2_Cal_Demo/main/app_lib_fs_impl.h

17 lines
276 B
C

#ifndef __APP_LIB_FS_IMPL_H
#define __APP_LIB_FS_IMPL_H
#include <string.h>
#include <sys/unistd.h>
#include <sys/stat.h>
#include "esp_vfs_fat.h"
#include "sdmmc_cmd.h"
extern sdmmc_card_t *g_card;
#define APP_FS_MOUNT_POINT "/sdcard"
void app_lib_fs_init(void);
#endif