Used for iterating over the data frames via the sensor_decoder_api.
More...
#include <sensor.h>
Used for iterating over the data frames via the sensor_decoder_api.
Example usage:
(.c)
while (true) {
if (num_decoded_channels <= 0) {
printk(
"Done decoding buffer\n");
break;
}
accel_out_data.readings[0].y, accel_out_data.readings[0].z);
}
static int sensor_decode(struct sensor_decode_context *ctx, void *out, uint16_t max_count)
Decode N frames using a sensor_decode_context.
Definition: sensor.h:523
#define SENSOR_DECODE_CONTEXT_INIT(decoder_, buffer_, channel_, channel_index_)
Initialize a sensor_decode_context.
Definition: sensor.h:506
@ SENSOR_CHAN_ACCEL_XYZ
Acceleration on the X, Y and Z axes.
Definition: sensor.h:67
#define PRId32
Definition: inttypes.h:15
static void printk(const char *fmt,...)
Print kernel debugging message.
Definition: printk.h:51
Used for iterating over the data frames via the sensor_decoder_api.
Definition: sensor.h:495
const struct sensor_decoder_api * decoder
Definition: sensor.h:496
const uint8_t * buffer
Definition: sensor.h:497
Data for a sensor channel which reports on three axes.
Definition: sensor_data_types.h:51
◆ buffer
const uint8_t* sensor_decode_context::buffer |
◆ channel
◆ channel_idx
size_t sensor_decode_context::channel_idx |
◆ decoder
◆ fit
The documentation for this struct was generated from the following file: