Lines Matching full:entry
19 Entries in the flash contain the length of the entry, the data within
20 the entry, and checksum over the entry contents.
23 request space for the next entry, space is located at the end of the
24 used area. When you start reading, the first entry served is the
25 oldest entry in flash.
35 writing entry to flash completed ok. It will skip over entries which
41 To add an entry to circular buffer:
47 - Use :c:func:`flash_area_write` to write entry contents.
49 entry by calculating the checksum.
54 - Within callback function copy in data from the entry using
56 has been read by monitoring the returned entry's area pointer. Then you
61 - Call :c:func:`fcb_getnext` with 0 in entry offset to get the pointer to
62 the oldest entry.
63 - Use :c:func:`flash_area_read` to read entry contents.
64 - Call :c:func:`fcb_getnext` with pointer to current entry to get the next one.