- typedef struct my_data_single_s
- {
- char uid[20];
- struct connection_s{
- char param_1[15];
- char param_2[20];
- }connection;
- struct measurement_s{
- uint32_t timestamp;
- char name[50];
- float longitude;
- float latitude;
- float offset;
- float value_1;
- float value_2;
- }measurement;
- }my_data_single_t;
- typedef struct my_data_total_s
- {
- history_single_t ID[100];
- }my_data_total_t;
In my project I'm using SPIFFS already.
Is it good way to use it or better go with something another?
NVS may be too small for it. FatFS - I dont see benefits from spiffs (I may be wrong).