I definitely can pack them together. Should I make an array of the log entries and save that to the blob or should I try to rename each entry?ESP_igrr wrote:If you can pack two int32 variables into an int64 and store that instead of a blob, that will be twice as efficient.
Code: Select all
BlobLog blob_logs[];
...
nvs_set_blob(my_handle, "log", &blob_logs, sizeof(blob_logs));
Code: Select all
nvs_set_i32(my_handle, "unique_name", new_blob_log); //unique_name will probably just be an incremented int.