Skip to content

Commit a9acb47

Browse files
committed
VFS
1 parent 6727ed4 commit a9acb47

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/AudioTools/Disk/VFS_LittleFS.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ namespace audio_tools {
1919
* @copyright GPLv3
2020
*/
2121

22-
class VFS_SDSPI : public VFS {
22+
class VFS_LittleFS : public VFS {
2323
public:
24-
VFS_SDSPI() = default;
24+
VFS_LittleFS() = default;
2525
void setMountPoint(const char* mp) { mount_point = mp; }
2626
bool begin() {
2727
LOGI("Initializing LittleFS");

src/AudioTools/Disk/VFS_SPFFS.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ namespace audio_tools {
1818
* @copyright GPLv3
1919
*/
2020

21-
class VFS_SDSPI : public VFS {
21+
class VFS_SPFFS : public VFS {
2222
public:
23-
VFS_SDSPI() = default;
23+
VFS_SPFFS() = default;
2424
void setMountPoint(const char* mp) { mount_point = mp; }
2525
bool begin() {
2626
LOGI("Initializing SPIFFS");

0 commit comments

Comments
 (0)