|
My Project
|
#include "Arduino.h"

Go to the source code of this file.
Functions | |
| uint8_t | initSDCard () |
| bool | SDCardPresent () |
| uint8_t | appendFileOnDisk (String path, String data) |
| template<typename T > | |
| uint8_t | appendFile (String path, T data) |
| uint8_t | writeFileOnDisk (String path, String data) |
| template<typename T > | |
| uint8_t | writeFile (String path, T data) |
| void | printFileSystem () |
| void | newDir (String path) |
| void | deleteDir (String path) |
| bool | fileExists (String path) |
| uint32_t | fileSize (String path) |
| String | readFile (String path) |
| void | renameFile (String oldpath, String newpath) |
| void | deleteFile (String path) |
| uint8_t appendFile | ( | String | path, |
| T | data | ||
| ) |
Definition at line 15 of file memory.h.
References appendFileOnDisk().

| uint8_t appendFileOnDisk | ( | String | path, |
| String | data | ||
| ) |
Definition at line 29 of file memory.cpp.
Referenced by appendFile().

| void deleteDir | ( | String | path | ) |
Definition at line 78 of file memory.cpp.
| void deleteFile | ( | String | path | ) |
Definition at line 124 of file memory.cpp.
| bool fileExists | ( | String | path | ) |
Definition at line 83 of file memory.cpp.
| uint32_t fileSize | ( | String | path | ) |
Definition at line 88 of file memory.cpp.
| uint8_t initSDCard | ( | ) |
Definition at line 11 of file memory.cpp.
References SD_CS, SD_DET, spi, SPI_CLK, SPI_MISO, and SPI_MOSI.
Referenced by CanSatInit().

| void newDir | ( | String | path | ) |
Definition at line 74 of file memory.cpp.
| void printFileSystem | ( | ) |
Definition at line 63 of file memory.cpp.
References printDirectory().

| String readFile | ( | String | path | ) |
Definition at line 109 of file memory.cpp.
| void renameFile | ( | String | oldpath, |
| String | newpath | ||
| ) |
Definition at line 119 of file memory.cpp.
| bool SDCardPresent | ( | ) |
Definition at line 129 of file memory.cpp.
References SD_DET.
Referenced by CanSatInit().

| uint8_t writeFile | ( | String | path, |
| T | data | ||
| ) |
Definition at line 23 of file memory.h.
References writeFileOnDisk().

| uint8_t writeFileOnDisk | ( | String | path, |
| String | data | ||
| ) |
Definition at line 97 of file memory.cpp.
Referenced by writeFile().

1.8.17