Skip to content

Commit 1edc499

Browse files
committed
VFS comments
1 parent cb8617f commit 1edc499

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

src/AudioTools/Disk/VFS.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
namespace audio_tools {
44

55
/***
6-
* Base class which represents an ESP32 Virtual File System. After initializing
6+
* @brief Abstract Base class which represents an ESP32 Virtual File System. After initializing
77
* the VFS the regular c file operations are supported.
8+
* @ingroup player
9+
* @author Phil Schatzmann
10+
* @copyright GPLv3
811
*/
912
class VFS {
1013
public:

src/AudioTools/Disk/VFSFile.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ enum SeekMode { SeekSet = 0, SeekCur = 1, SeekEnd = 2 };
2525
/**
2626
* @brief Arduino File support using std::fstream
2727
* @author Phil Schatzmann
28+
* @ingroup player
2829
* @copyright GPLv3
2930
*/
3031
class VFSFile : public Stream {
@@ -177,6 +178,7 @@ class VFSFile : public Stream {
177178
/**
178179
* @brief Eumlate FS using C++ or Posix functions
179180
* @author Phil Schatzmann
181+
* @ingroup player
180182
* @copyright GPLv3
181183
*/
182184
class VFS_SDClass {

src/AudioTools/Disk/VFS_LittleFS.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111
namespace audio_tools {
1212

1313
/**
14-
* @brief ESP32 Virtual File System for SPI SD. The default mount point is "/littlefs"
15-
*
14+
* @brief ESP32 Virtual File System for the LittleFS. The default mount point is "/littlefs"
1615
* DRAFT implementation: not tested
17-
* See
18-
* https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdspi
16+
* See https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdspi
1917
* @ingroup player
2018
* @author Phil Schatzmann
2119
* @copyright GPLv3

src/AudioTools/Disk/VFS_SDMMC.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@ namespace audio_tools {
3737

3838
/**
3939
* @brief ESP32 Virtual File System for SDMMC. The default mount point is "/sdcard"
40-
*
4140
* DRAFT implementation: not tested
42-
* see
43-
* https://github.com/espressif/esp-idf/blob/master/examples/storage/sd_card/sdmmc/README.md
41+
* see https://github.com/espressif/esp-idf/blob/master/examples/storage/sd_card/sdmmc/README.md
4442
* @ingroup player
4543
* @author Phil Schatzmann
4644
* @copyright GPLv3

src/AudioTools/Disk/VFS_SDSPI.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ namespace audio_tools {
3030

3131
/**
3232
* @brief ESP32 Virtual File System for SPI SD. The default mount point is "/sdcard"
33-
*
3433
* DRAFT implementation: not tested
3534
* See https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdspi
3635
* @ingroup player

src/AudioTools/Disk/VFS_SPFFS.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@
1010
namespace audio_tools {
1111

1212
/**
13-
* @brief ESP32 Virtual File System for SPI SD. The default mount point is "/spiffs"
14-
*
13+
* @brief ESP32 Virtual File System for the SPFFS. The default mount point is "/spiffs"
1514
* DRAFT implementation: not tested
16-
* See
17-
* https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdspi
15+
* See https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdspi
1816
* @ingroup player
1917
* @author Phil Schatzmann
2018
* @copyright GPLv3

0 commit comments

Comments
 (0)