This contains everything needed to run an instance of SPIFFS. More...
This contains everything needed to run an instance of SPIFFS.
Definition at line 105 of file spiffs_fs.h.
#include <spiffs_fs.h>
| Data Fields | |
| spiffs | fs | 
| The SPIFFS struct. | |
| uint8_t | work [SPIFFS_FS_WORK_SIZE] | 
| SPIFFS work buffer. | |
| uint8_t | fd_space [SPIFFS_FS_FD_SPACE_SIZE] | 
| SPIFFS file descriptor cache. | |
| uint8_t | cache [SPIFFS_FS_CACHE_SIZE] | 
| SPIFFS cache. | |
| spiffs_config | config | 
| SPIFFS config, filled at mount time depending on the underlying mtdi_dev_t dev. | |
| mutex_t | lock | 
| A lock for SPIFFS internal use. | |
| mtd_dev_t * | dev | 
| The underlying mtd device, must be set by user. | |
| uint32_t | base_addr | 
| Base address of partition. | |
| uint32_t | block_count | 
| Number of blocks in current partition, if 0, the mtd number of sector is used. | |
| uint32_t spiffs_desc::base_addr | 
Base address of partition.
Definition at line 119 of file spiffs_fs.h.
| uint32_t spiffs_desc::block_count | 
Number of blocks in current partition, if 0, the mtd number of sector is used.
Definition at line 120 of file spiffs_fs.h.
| uint8_t spiffs_desc::cache[SPIFFS_FS_CACHE_SIZE] | 
SPIFFS cache.
Definition at line 110 of file spiffs_fs.h.
| spiffs_config spiffs_desc::config | 
SPIFFS config, filled at mount time depending on the underlying mtdi_dev_t dev. 
Definition at line 112 of file spiffs_fs.h.
| mtd_dev_t* spiffs_desc::dev | 
The underlying mtd device, must be set by user.
Definition at line 116 of file spiffs_fs.h.
| uint8_t spiffs_desc::fd_space[SPIFFS_FS_FD_SPACE_SIZE] | 
SPIFFS file descriptor cache.
Definition at line 108 of file spiffs_fs.h.
| spiffs spiffs_desc::fs | 
The SPIFFS struct.
Definition at line 106 of file spiffs_fs.h.
| mutex_t spiffs_desc::lock | 
A lock for SPIFFS internal use.
Definition at line 114 of file spiffs_fs.h.
| uint8_t spiffs_desc::work[SPIFFS_FS_WORK_SIZE] | 
SPIFFS work buffer.
Definition at line 107 of file spiffs_fs.h.