char file[PFFS_MAX_FILENAME_SIZE+PFFS_MAX_FILENAME_SIZE]; // the file
u8 fn_size; // file name size
u8 mode; // mode, eg: write, read
- t_pffs *pffs; // the pffs main struct
+ t_pffs *pffs; // pointer to the pffs main struct
} t_pffs_fd;
+typedef struct s_pffs_sector_header {
+ u32 wear_level; // program / erase cycles
+}
+
+typedef struct s_pffs_file_header {
+ u32 file_len; // length of files in ?
+ u32 file_cont; // continued file addr
+ u8 file_name_len; // lenght of the filename in words
+}
+
/* function prototypes (only the ones applications should use!) */
int pffs_flash_register(t_pffs *pffs,u32 base_addr,u32 *sec_addr,
u8 sec_num_data_min,u8 sec_num_data_max,