Explorar el Código

Add FS usedSize() and totalSize()

main
PaulStoffregen hace 4 años
padre
commit
7f02c72b15
Se han modificado 3 ficheros con 6 adiciones y 0 borrados
  1. +2
    -0
      teensy/FS.h
  2. +2
    -0
      teensy3/FS.h
  3. +2
    -0
      teensy4/FS.h

+ 2
- 0
teensy/FS.h Ver fichero

@@ -170,6 +170,8 @@ public:
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
virtual uint64_t usedSize();
virtual uint64_t totalSize();
};



+ 2
- 0
teensy3/FS.h Ver fichero

@@ -170,6 +170,8 @@ public:
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
virtual uint64_t usedSize();
virtual uint64_t totalSize();
};



+ 2
- 0
teensy4/FS.h Ver fichero

@@ -170,6 +170,8 @@ public:
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
virtual uint64_t usedSize();
virtual uint64_t totalSize();
};



Cargando…
Cancelar
Guardar