test

Fork of nrf51-sdk by Lancaster University

Embed: (wiki syntax)

« Back to documentation index

fds_record_chunk_t Struct Reference

fds_record_chunk_t Struct Reference
[Flash Data Storage]

A record chunk, containing a piece of data to be stored in a record. More...

#include <fds.h>

Data Fields

void const * p_data
 Pointer to the data to store.
fds_length_t length_words
 Length of data pointed by p_data, in 4 byte words.

Detailed Description

A record chunk, containing a piece of data to be stored in a record.

Note:
p_data must be aligned on a (4 bytes) word boundary.

Definition at line 137 of file fds.h.


Field Documentation

fds_length_t length_words

Length of data pointed by p_data, in 4 byte words.

Definition at line 140 of file fds.h.

void const* p_data

Pointer to the data to store.

Must be word aligned.

Definition at line 139 of file fds.h.