Zephyr API 3.6.99
|
Decodes a single raw data buffer. More...
#include <sensor.h>
Data Fields | |
int(* | get_frame_count )(const uint8_t *buffer, struct sensor_chan_spec channel, uint16_t *frame_count) |
Get the number of frames in the current buffer. | |
int(* | get_size_info )(struct sensor_chan_spec channel, size_t *base_size, size_t *frame_size) |
Get the size required to decode a given channel. | |
int(* | decode )(const uint8_t *buffer, struct sensor_chan_spec channel, uint32_t *fit, uint16_t max_count, void *data_out) |
Decode up to max_count samples from the buffer. | |
bool(* | has_trigger )(const uint8_t *buffer, enum sensor_trigger_type trigger) |
Check if the given trigger type is present. | |
Decodes a single raw data buffer.
Data buffers are provided on the RTIO context that's supplied to sensor_read.
int(* sensor_decoder_api::decode) (const uint8_t *buffer, struct sensor_chan_spec channel, uint32_t *fit, uint16_t max_count, void *data_out) |
Decode up to max_count
samples from the buffer.
Decode samples of channel sensor_channel across multiple frames. If there exist multiple instances of the same channel, channel_index
is used to differentiate them. As an example, assume a sensor provides 2 distance measurements:
[in] | buffer | The buffer provided on the RTIO context |
[in] | channel | The channel to decode |
[in,out] | fit | The current frame iterator |
[in] | max_count | The maximum number of channels to decode. |
[out] | data_out | The decoded data |
int(* sensor_decoder_api::get_frame_count) (const uint8_t *buffer, struct sensor_chan_spec channel, uint16_t *frame_count) |
Get the number of frames in the current buffer.
[in] | buffer | The buffer provided on the RTIO context. |
[in] | channel | The channel to get the count for |
[out] | frame_count | The number of frames on the buffer (at least 1) |
int(* sensor_decoder_api::get_size_info) (struct sensor_chan_spec channel, size_t *base_size, size_t *frame_size) |
Get the size required to decode a given channel.
When decoding a single frame, use base_size
. For every additional frame, add another frame_size
. As an example, to decode 3 frames use: 'base_size + 2 * frame_size'.
[in] | channel | The channel to query |
[out] | base_size | The size of decoding the first frame |
[out] | frame_size | The additional size of every additional frame |
bool(* sensor_decoder_api::has_trigger) (const uint8_t *buffer, enum sensor_trigger_type trigger) |
Check if the given trigger type is present.
[in] | buffer | The buffer provided on the RTIO context |
[in] | trigger | The trigger type in question |