Nordic stack and drivers for the mbed BLE API. Version to work around build bug.

Dependents:   microbit_rubber_ducky microbit_mouse_BLE microbit_mouse_BLE_daybreak_version microbit_presenter

Fork of nRF51822 by Nordic Semiconductor

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.