Skip to content

Commit

Permalink
Fix dummy declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes committed Jun 12, 2024
1 parent 5e7ed27 commit 556b68f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion targets/ESP32/ESP32_C3/target_FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// // {&g_FATFS_FILE_SYSTEM_DriverInterface, &g_FATFS_STREAM_DriverInterface},
// // {&g_LITTLEFS_FILE_SYSTEM_DriverInterface, &g_LITTLEFS_STREAM_DriverInterface},
// };
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {0};
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {{ NULL, NULL}};

const size_t g_InstalledFSCount = ARRAYSIZE(g_AvailableFSInterfaces);

Expand Down
2 changes: 1 addition & 1 deletion targets/ESP32/ESP32_C6/target_FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// {&g_FATFS_FILE_SYSTEM_DriverInterface, &g_FATFS_STREAM_DriverInterface},
// // {&g_LITTLEFS_FILE_SYSTEM_DriverInterface, &g_LITTLEFS_STREAM_DriverInterface},
// };
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {0};
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {{ NULL, NULL}};

const size_t g_InstalledFSCount = ARRAYSIZE(g_AvailableFSInterfaces);

Expand Down
2 changes: 1 addition & 1 deletion targets/ESP32/ESP32_H2/target_FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// {&g_FATFS_FILE_SYSTEM_DriverInterface, &g_FATFS_STREAM_DriverInterface},
// // {&g_LITTLEFS_FILE_SYSTEM_DriverInterface, &g_LITTLEFS_STREAM_DriverInterface},
// };
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {0};
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {{ NULL, NULL}};

const size_t g_InstalledFSCount = ARRAYSIZE(g_AvailableFSInterfaces);

Expand Down
2 changes: 1 addition & 1 deletion targets/ESP32/ESP32_S2/target_FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// // {&g_FATFS_FILE_SYSTEM_DriverInterface, &g_FATFS_STREAM_DriverInterface},
// // {&g_LITTLEFS_FILE_SYSTEM_DriverInterface, &g_LITTLEFS_STREAM_DriverInterface},
// };
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {0};
FILESYSTEM_INTERFACES g_AvailableFSInterfaces[] = {{ NULL, NULL}};

const size_t g_InstalledFSCount = ARRAYSIZE(g_AvailableFSInterfaces);

Expand Down

0 comments on commit 556b68f

Please sign in to comment.