Zephyr API Documentation 4.0.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
sensor.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2016 Intel Corporation
9 *
10 * SPDX-License-Identifier: Apache-2.0
11 */
12#ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_H_
13#define ZEPHYR_INCLUDE_DRIVERS_SENSOR_H_
14
24#include <errno.h>
25#include <stdlib.h>
26
27#include <zephyr/device.h>
29#include <zephyr/dsp/types.h>
30#include <zephyr/rtio/rtio.h>
32#include <zephyr/types.h>
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
57
111
120
129
132
135
140
143
146
155
158
161
204
207
212
218
223};
224
291
301
375
383typedef void (*sensor_trigger_handler_t)(const struct device *dev,
384 const struct sensor_trigger *trigger);
385
392typedef int (*sensor_attr_set_t)(const struct device *dev,
393 enum sensor_channel chan,
394 enum sensor_attribute attr,
395 const struct sensor_value *val);
396
403typedef int (*sensor_attr_get_t)(const struct device *dev,
404 enum sensor_channel chan,
405 enum sensor_attribute attr,
406 struct sensor_value *val);
407
414typedef int (*sensor_trigger_set_t)(const struct device *dev,
415 const struct sensor_trigger *trig,
423typedef int (*sensor_sample_fetch_t)(const struct device *dev,
424 enum sensor_channel chan);
431typedef int (*sensor_channel_get_t)(const struct device *dev,
432 enum sensor_channel chan,
433 struct sensor_value *val);
434
447
449/* Ensure sensor_chan_spec is sensibly sized to pass by value */
450BUILD_ASSERT(sizeof(struct sensor_chan_spec) <= sizeof(uintptr_t),
451 "sensor_chan_spec size should be equal or less than the size of a machine word");
462static inline bool sensor_chan_spec_eq(struct sensor_chan_spec chan_spec0,
463 struct sensor_chan_spec chan_spec1)
464{
465 return chan_spec0.chan_type == chan_spec1.chan_type &&
466 chan_spec0.chan_idx == chan_spec1.chan_idx;
467}
468
485 int (*get_frame_count)(const uint8_t *buffer, struct sensor_chan_spec channel,
486 uint16_t *frame_count);
487
500 int (*get_size_info)(struct sensor_chan_spec channel, size_t *base_size,
501 size_t *frame_size);
502
528 int (*decode)(const uint8_t *buffer, struct sensor_chan_spec channel, uint32_t *fit,
529 uint16_t max_count, void *data_out);
530
538 bool (*has_trigger)(const uint8_t *buffer, enum sensor_trigger_type trigger);
539};
540
571
575#define SENSOR_DECODE_CONTEXT_INIT(decoder_, buffer_, channel_type_, channel_index_) \
576 { \
577 .decoder = (decoder_), \
578 .buffer = (buffer_), \
579 .channel = {.chan_type = (channel_type_), .chan_idx = (channel_index_)}, \
580 .fit = 0, \
581 }
582
591static inline int sensor_decode(struct sensor_decode_context *ctx, void *out, uint16_t max_count)
592{
593 return ctx->decoder->decode(ctx->buffer, ctx->channel, &ctx->fit, max_count, out);
594}
595
597 size_t *frame_size);
598
605typedef int (*sensor_get_decoder_t)(const struct device *dev,
606 const struct sensor_decoder_api **api);
607
619
624
625#define SENSOR_STREAM_TRIGGER_PREP(_trigger, _opt) \
626 { \
627 .trigger = (_trigger), .opt = (_opt), \
628 }
629
630/*
631 * Internal data structure used to store information about the IODevice for async reading and
632 * streaming sensor data.
633 */
635 const struct device *sensor;
636 const bool is_streaming;
637 union {
640 };
641 size_t count;
642 const size_t max;
643};
644
660#define SENSOR_DT_READ_IODEV(name, dt_node, ...) \
661 static struct sensor_chan_spec _CONCAT(__channel_array_, name)[] = {__VA_ARGS__}; \
662 static struct sensor_read_config _CONCAT(__sensor_read_config_, name) = { \
663 .sensor = DEVICE_DT_GET(dt_node), \
664 .is_streaming = false, \
665 .channels = _CONCAT(__channel_array_, name), \
666 .count = ARRAY_SIZE(_CONCAT(__channel_array_, name)), \
667 .max = ARRAY_SIZE(_CONCAT(__channel_array_, name)), \
668 }; \
669 RTIO_IODEV_DEFINE(name, &__sensor_iodev_api, _CONCAT(&__sensor_read_config_, name))
670
690#define SENSOR_DT_STREAM_IODEV(name, dt_node, ...) \
691 static struct sensor_stream_trigger _CONCAT(__trigger_array_, name)[] = {__VA_ARGS__}; \
692 static struct sensor_read_config _CONCAT(__sensor_read_config_, name) = { \
693 .sensor = DEVICE_DT_GET(dt_node), \
694 .is_streaming = true, \
695 .triggers = _CONCAT(__trigger_array_, name), \
696 .count = ARRAY_SIZE(_CONCAT(__trigger_array_, name)), \
697 .max = ARRAY_SIZE(_CONCAT(__trigger_array_, name)), \
698 }; \
699 RTIO_IODEV_DEFINE(name, &__sensor_iodev_api, &_CONCAT(__sensor_read_config_, name))
700
701/* Used to submit an RTIO sqe to the sensor's iodev */
702typedef void (*sensor_submit_t)(const struct device *sensor, struct rtio_iodev_sqe *sqe);
703
704/* The default decoder API */
705extern const struct sensor_decoder_api __sensor_default_decoder;
706
707/* The default sensor iodev API */
708extern const struct rtio_iodev_api __sensor_iodev_api;
709
719
732__syscall int sensor_attr_set(const struct device *dev,
733 enum sensor_channel chan,
734 enum sensor_attribute attr,
735 const struct sensor_value *val);
736
737static inline int z_impl_sensor_attr_set(const struct device *dev,
738 enum sensor_channel chan,
739 enum sensor_attribute attr,
740 const struct sensor_value *val)
741{
742 const struct sensor_driver_api *api =
743 (const struct sensor_driver_api *)dev->api;
744
745 if (api->attr_set == NULL) {
746 return -ENOSYS;
747 }
748
749 return api->attr_set(dev, chan, attr, val);
750}
751
764__syscall int sensor_attr_get(const struct device *dev,
765 enum sensor_channel chan,
766 enum sensor_attribute attr,
767 struct sensor_value *val);
768
769static inline int z_impl_sensor_attr_get(const struct device *dev,
770 enum sensor_channel chan,
771 enum sensor_attribute attr,
772 struct sensor_value *val)
773{
774 const struct sensor_driver_api *api =
775 (const struct sensor_driver_api *)dev->api;
776
777 if (api->attr_get == NULL) {
778 return -ENOSYS;
779 }
780
781 return api->attr_get(dev, chan, attr, val);
782}
783
806static inline int sensor_trigger_set(const struct device *dev,
807 const struct sensor_trigger *trig,
809{
810 const struct sensor_driver_api *api =
811 (const struct sensor_driver_api *)dev->api;
812
813 if (api->trigger_set == NULL) {
814 return -ENOSYS;
815 }
816
817 return api->trigger_set(dev, trig, handler);
818}
819
838__syscall int sensor_sample_fetch(const struct device *dev);
839
840static inline int z_impl_sensor_sample_fetch(const struct device *dev)
841{
842 const struct sensor_driver_api *api =
843 (const struct sensor_driver_api *)dev->api;
844
845 return api->sample_fetch(dev, SENSOR_CHAN_ALL);
846}
847
869__syscall int sensor_sample_fetch_chan(const struct device *dev,
870 enum sensor_channel type);
871
872static inline int z_impl_sensor_sample_fetch_chan(const struct device *dev,
873 enum sensor_channel type)
874{
875 const struct sensor_driver_api *api =
876 (const struct sensor_driver_api *)dev->api;
877
878 return api->sample_fetch(dev, type);
879}
880
902__syscall int sensor_channel_get(const struct device *dev,
903 enum sensor_channel chan,
904 struct sensor_value *val);
905
906static inline int z_impl_sensor_channel_get(const struct device *dev,
907 enum sensor_channel chan,
908 struct sensor_value *val)
909{
910 const struct sensor_driver_api *api =
911 (const struct sensor_driver_api *)dev->api;
912
913 return api->channel_get(dev, chan, val);
914}
915
916#if defined(CONFIG_SENSOR_ASYNC_API) || defined(__DOXYGEN__)
917
918/*
919 * Generic data structure used for encoding the sample timestamp and number of channels sampled.
920 */
921struct __attribute__((__packed__)) sensor_data_generic_header {
922 /* The timestamp at which the data was collected from the sensor */
924
925 /*
926 * The number of channels present in the frame. This will be the true number of elements in
927 * channel_info and in the q31 values that follow the header.
928 */
930
931 /* Shift value for all samples in the frame */
933
934 /* This padding is needed to make sure that the 'channels' field is aligned */
935 int8_t _padding[sizeof(struct sensor_chan_spec) - 1];
936
937 /* Channels present in the frame */
938 struct sensor_chan_spec channels[0];
939};
940
949#define SENSOR_CHANNEL_3_AXIS(chan) \
950 ((chan) == SENSOR_CHAN_ACCEL_XYZ || (chan) == SENSOR_CHAN_GYRO_XYZ || \
951 (chan) == SENSOR_CHAN_MAGN_XYZ || (chan) == SENSOR_CHAN_POS_DXYZ)
952
961#define SENSOR_CHANNEL_IS_ACCEL(chan) \
962 ((chan) == SENSOR_CHAN_ACCEL_XYZ || (chan) == SENSOR_CHAN_ACCEL_X || \
963 (chan) == SENSOR_CHAN_ACCEL_Y || (chan) == SENSOR_CHAN_ACCEL_Z)
964
973#define SENSOR_CHANNEL_IS_GYRO(chan) \
974 ((chan) == SENSOR_CHAN_GYRO_XYZ || (chan) == SENSOR_CHAN_GYRO_X || \
975 (chan) == SENSOR_CHAN_GYRO_Y || (chan) == SENSOR_CHAN_GYRO_Z)
976
985__syscall int sensor_get_decoder(const struct device *dev,
986 const struct sensor_decoder_api **decoder);
987
988static inline int z_impl_sensor_get_decoder(const struct device *dev,
989 const struct sensor_decoder_api **decoder)
990{
991 const struct sensor_driver_api *api = (const struct sensor_driver_api *)dev->api;
992
993 __ASSERT_NO_MSG(api != NULL);
994
995 if (api->get_decoder == NULL) {
996 *decoder = &__sensor_default_decoder;
997 return 0;
998 }
999
1000 return api->get_decoder(dev, decoder);
1001}
1002
1021__syscall int sensor_reconfigure_read_iodev(struct rtio_iodev *iodev, const struct device *sensor,
1022 const struct sensor_chan_spec *channels,
1023 size_t num_channels);
1024
1025static inline int z_impl_sensor_reconfigure_read_iodev(struct rtio_iodev *iodev,
1026 const struct device *sensor,
1027 const struct sensor_chan_spec *channels,
1028 size_t num_channels)
1029{
1030 struct sensor_read_config *cfg = (struct sensor_read_config *)iodev->data;
1031
1032 if (cfg->max < num_channels || cfg->is_streaming) {
1033 return -ENOMEM;
1034 }
1035
1036 cfg->sensor = sensor;
1037 memcpy(cfg->channels, channels, num_channels * sizeof(struct sensor_chan_spec));
1038 cfg->count = num_channels;
1039 return 0;
1040}
1041
1042static inline int sensor_stream(struct rtio_iodev *iodev, struct rtio *ctx, void *userdata,
1043 struct rtio_sqe **handle)
1044{
1045 if (IS_ENABLED(CONFIG_USERSPACE)) {
1046 struct rtio_sqe sqe;
1047
1049 rtio_sqe_copy_in_get_handles(ctx, &sqe, handle, 1);
1050 } else {
1051 struct rtio_sqe *sqe = rtio_sqe_acquire(ctx);
1052
1053 if (sqe == NULL) {
1054 return -ENOMEM;
1055 }
1056 if (handle != NULL) {
1057 *handle = sqe;
1058 }
1060 }
1061 rtio_submit(ctx, 0);
1062 return 0;
1063}
1064
1079static inline int sensor_read(struct rtio_iodev *iodev, struct rtio *ctx, uint8_t *buf,
1080 size_t buf_len)
1081{
1082 if (IS_ENABLED(CONFIG_USERSPACE)) {
1083 struct rtio_sqe sqe;
1084
1086 rtio_sqe_copy_in(ctx, &sqe, 1);
1087 } else {
1088 struct rtio_sqe *sqe = rtio_sqe_acquire(ctx);
1089
1090 if (sqe == NULL) {
1091 return -ENOMEM;
1092 }
1094 }
1095 rtio_submit(ctx, 0);
1096
1097 struct rtio_cqe *cqe = rtio_cqe_consume_block(ctx);
1098 int res = cqe->result;
1099
1100 __ASSERT(cqe->userdata == buf,
1101 "consumed non-matching completion for sensor read into buffer %p\n", buf);
1102
1103 rtio_cqe_release(ctx, cqe);
1104
1105 return res;
1106}
1107
1121static inline int sensor_read_async_mempool(struct rtio_iodev *iodev, struct rtio *ctx,
1122 void *userdata)
1123{
1124 if (IS_ENABLED(CONFIG_USERSPACE)) {
1125 struct rtio_sqe sqe;
1126
1128 rtio_sqe_copy_in(ctx, &sqe, 1);
1129 } else {
1130 struct rtio_sqe *sqe = rtio_sqe_acquire(ctx);
1131
1132 if (sqe == NULL) {
1133 return -ENOMEM;
1134 }
1136 }
1137 rtio_submit(ctx, 0);
1138 return 0;
1139}
1140
1153 void *userdata);
1154
1167
1168#endif /* defined(CONFIG_SENSOR_ASYNC_API) || defined(__DOXYGEN__) */
1169
1173#define SENSOR_G 9806650LL
1174
1178#define SENSOR_PI 3141592LL
1179
1188static inline int32_t sensor_ms2_to_g(const struct sensor_value *ms2)
1189{
1190 int64_t micro_ms2 = ms2->val1 * 1000000LL + ms2->val2;
1191
1192 if (micro_ms2 > 0) {
1193 return (micro_ms2 + SENSOR_G / 2) / SENSOR_G;
1194 } else {
1195 return (micro_ms2 - SENSOR_G / 2) / SENSOR_G;
1196 }
1197}
1198
1205static inline void sensor_g_to_ms2(int32_t g, struct sensor_value *ms2)
1206{
1207 ms2->val1 = ((int64_t)g * SENSOR_G) / 1000000LL;
1208 ms2->val2 = ((int64_t)g * SENSOR_G) % 1000000LL;
1209}
1210
1219static inline int32_t sensor_ms2_to_ug(const struct sensor_value *ms2)
1220{
1221 int64_t micro_ms2 = (ms2->val1 * INT64_C(1000000)) + ms2->val2;
1222
1223 return (micro_ms2 * 1000000LL) / SENSOR_G;
1224}
1225
1232static inline void sensor_ug_to_ms2(int32_t ug, struct sensor_value *ms2)
1233{
1234 ms2->val1 = ((int64_t)ug * SENSOR_G / 1000000LL) / 1000000LL;
1235 ms2->val2 = ((int64_t)ug * SENSOR_G / 1000000LL) % 1000000LL;
1236}
1237
1245static inline int32_t sensor_rad_to_degrees(const struct sensor_value *rad)
1246{
1247 int64_t micro_rad_s = rad->val1 * 1000000LL + rad->val2;
1248
1249 if (micro_rad_s > 0) {
1250 return (micro_rad_s * 180LL + SENSOR_PI / 2) / SENSOR_PI;
1251 } else {
1252 return (micro_rad_s * 180LL - SENSOR_PI / 2) / SENSOR_PI;
1253 }
1254}
1255
1262static inline void sensor_degrees_to_rad(int32_t d, struct sensor_value *rad)
1263{
1264 rad->val1 = ((int64_t)d * SENSOR_PI / 180LL) / 1000000LL;
1265 rad->val2 = ((int64_t)d * SENSOR_PI / 180LL) % 1000000LL;
1266}
1267
1279static inline int32_t sensor_rad_to_10udegrees(const struct sensor_value *rad)
1280{
1281 int64_t micro_rad_s = rad->val1 * 1000000LL + rad->val2;
1282
1283 return (micro_rad_s * 180LL * 100000LL) / SENSOR_PI;
1284}
1285
1292static inline void sensor_10udegrees_to_rad(int32_t d, struct sensor_value *rad)
1293{
1294 rad->val1 = ((int64_t)d * SENSOR_PI / 180LL / 100000LL) / 1000000LL;
1295 rad->val2 = ((int64_t)d * SENSOR_PI / 180LL / 100000LL) % 1000000LL;
1296}
1297
1304static inline double sensor_value_to_double(const struct sensor_value *val)
1305{
1306 return (double)val->val1 + (double)val->val2 / 1000000;
1307}
1308
1315static inline float sensor_value_to_float(const struct sensor_value *val)
1316{
1317 return (float)val->val1 + (float)val->val2 / 1000000;
1318}
1319
1327static inline int sensor_value_from_double(struct sensor_value *val, double inp)
1328{
1329 if (inp < INT32_MIN || inp > INT32_MAX) {
1330 return -ERANGE;
1331 }
1332
1333 double val2 = (inp - (int32_t)inp) * 1000000.0;
1334
1335 if (val2 < INT32_MIN || val2 > INT32_MAX) {
1336 return -ERANGE;
1337 }
1338
1339 val->val1 = (int32_t)inp;
1340 val->val2 = (int32_t)val2;
1341
1342 return 0;
1343}
1344
1352static inline int sensor_value_from_float(struct sensor_value *val, float inp)
1353{
1354 float val2 = (inp - (int32_t)inp) * 1000000.0f;
1355
1356 if (val2 < INT32_MIN || val2 > (float)(INT32_MAX - 1)) {
1357 return -ERANGE;
1358 }
1359
1360 val->val1 = (int32_t)inp;
1361 val->val2 = (int32_t)val2;
1362
1363 return 0;
1364}
1365
1366#ifdef CONFIG_SENSOR_INFO
1367
1368struct sensor_info {
1369 const struct device *dev;
1370 const char *vendor;
1371 const char *model;
1372 const char *friendly_name;
1373};
1374
1375#define SENSOR_INFO_INITIALIZER(_dev, _vendor, _model, _friendly_name) \
1376 { \
1377 .dev = _dev, \
1378 .vendor = _vendor, \
1379 .model = _model, \
1380 .friendly_name = _friendly_name, \
1381 }
1382
1383#define SENSOR_INFO_DEFINE(name, ...) \
1384 static const STRUCT_SECTION_ITERABLE(sensor_info, name) = \
1385 SENSOR_INFO_INITIALIZER(__VA_ARGS__)
1386
1387#define SENSOR_INFO_DT_NAME(node_id) \
1388 _CONCAT(__sensor_info, DEVICE_DT_NAME_GET(node_id))
1389
1390#define SENSOR_INFO_DT_DEFINE(node_id) \
1391 SENSOR_INFO_DEFINE(SENSOR_INFO_DT_NAME(node_id), \
1392 DEVICE_DT_GET(node_id), \
1393 DT_NODE_VENDOR_OR(node_id, NULL), \
1394 DT_NODE_MODEL_OR(node_id, NULL), \
1395 DT_PROP_OR(node_id, friendly_name, NULL)) \
1396
1397#else
1398
1399#define SENSOR_INFO_DEFINE(name, ...)
1400#define SENSOR_INFO_DT_DEFINE(node_id)
1401
1402#endif /* CONFIG_SENSOR_INFO */
1403
1431#define SENSOR_DEVICE_DT_DEFINE(node_id, init_fn, pm_device, \
1432 data_ptr, cfg_ptr, level, prio, \
1433 api_ptr, ...) \
1434 DEVICE_DT_DEFINE(node_id, init_fn, pm_device, \
1435 data_ptr, cfg_ptr, level, prio, \
1436 api_ptr, __VA_ARGS__); \
1437 \
1438 SENSOR_INFO_DT_DEFINE(node_id);
1439
1449#define SENSOR_DEVICE_DT_INST_DEFINE(inst, ...) \
1450 SENSOR_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
1451
1458static inline int64_t sensor_value_to_milli(const struct sensor_value *val)
1459{
1460 return ((int64_t)val->val1 * 1000) + val->val2 / 1000;
1461}
1462
1469static inline int64_t sensor_value_to_micro(const struct sensor_value *val)
1470{
1471 return ((int64_t)val->val1 * 1000000) + val->val2;
1472}
1473
1481static inline int sensor_value_from_milli(struct sensor_value *val, int64_t milli)
1482{
1483 if (milli < ((int64_t)INT32_MIN - 1) * 1000LL ||
1484 milli > ((int64_t)INT32_MAX + 1) * 1000LL) {
1485 return -ERANGE;
1486 }
1487
1488 val->val1 = (int32_t)(milli / 1000);
1489 val->val2 = (int32_t)(milli % 1000) * 1000;
1490
1491 return 0;
1492}
1493
1501static inline int sensor_value_from_micro(struct sensor_value *val, int64_t micro)
1502{
1503 if (micro < ((int64_t)INT32_MIN - 1) * 1000000LL ||
1504 micro > ((int64_t)INT32_MAX + 1) * 1000000LL) {
1505 return -ERANGE;
1506 }
1507
1508 val->val1 = (int32_t)(micro / 1000000LL);
1509 val->val2 = (int32_t)(micro % 1000000LL);
1510
1511 return 0;
1512}
1513
1523#define SENSOR_DECODER_NAME() UTIL_CAT(DT_DRV_COMPAT, __decoder_api)
1524
1532#define SENSOR_DECODER_DT_GET(node_id) \
1533 &UTIL_CAT(DT_STRING_TOKEN_BY_IDX(node_id, compatible, 0), __decoder_api)
1534
1550#define SENSOR_DECODER_API_DT_DEFINE() \
1551 COND_CODE_1(DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT), (), (static)) \
1552 const STRUCT_SECTION_ITERABLE(sensor_decoder_api, SENSOR_DECODER_NAME())
1553
1554#define Z_MAYBE_SENSOR_DECODER_DECLARE_INTERNAL_IDX(node_id, prop, idx) \
1555 extern const struct sensor_decoder_api UTIL_CAT( \
1556 DT_STRING_TOKEN_BY_IDX(node_id, prop, idx), __decoder_api);
1557
1558#define Z_MAYBE_SENSOR_DECODER_DECLARE_INTERNAL(node_id) \
1559 COND_CODE_1(DT_NODE_HAS_PROP(node_id, compatible), \
1560 (DT_FOREACH_PROP_ELEM(node_id, compatible, \
1561 Z_MAYBE_SENSOR_DECODER_DECLARE_INTERNAL_IDX)), \
1562 ())
1563
1564DT_FOREACH_STATUS_OKAY_NODE(Z_MAYBE_SENSOR_DECODER_DECLARE_INTERNAL)
1565
1566#ifdef __cplusplus
1567}
1568#endif
1569
1570#include <zephyr/syscalls/sensor.h>
1571
1572#endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_H_ */
irp nz macro MOVR cc d
Definition asm-macro-32-bit-gnu.h:11
System error numbers.
#define DT_FOREACH_STATUS_OKAY_NODE(fn)
Invokes fn for every status okay node in the tree.
Definition devicetree.h:2960
#define RTIO_PRIO_NORM
Normal priority.
Definition rtio.h:70
static void rtio_sqe_prep_read_with_pool(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, void *userdata)
Prepare a read op submission with context's mempool.
Definition rtio.h:595
static int rtio_sqe_copy_in(struct rtio *r, const struct rtio_sqe *sqes, size_t sqe_count)
Copy an array of SQEs into the queue.
Definition rtio.h:1458
int rtio_sqe_copy_in_get_handles(struct rtio *r, const struct rtio_sqe *sqes, struct rtio_sqe **handle, size_t sqe_count)
Copy an array of SQEs into the queue and get resulting handles back.
static void rtio_sqe_prep_read(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, uint8_t *buf, uint32_t len, void *userdata)
Prepare a read op submission.
Definition rtio.h:574
static struct rtio_sqe * rtio_sqe_acquire(struct rtio *r)
Acquire a single submission queue event if available.
Definition rtio.h:1002
static void rtio_sqe_prep_read_multishot(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, void *userdata)
Definition rtio.h:603
static void rtio_cqe_release(struct rtio *r, struct rtio_cqe *cqe)
Release consumed completion queue event.
Definition rtio.h:1121
static struct rtio_cqe * rtio_cqe_consume_block(struct rtio *r)
Wait for and consume a single completion queue event.
Definition rtio.h:1097
int rtio_submit(struct rtio *r, uint32_t wait_count)
Submit I/O requests to the underlying executor.
#define SENSOR_G
The value of gravitational constant in micro m/s^2.
Definition sensor.h:1173
int(* sensor_attr_get_t)(const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value *val)
Callback API upon getting a sensor's attributes.
Definition sensor.h:403
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:591
static int32_t sensor_rad_to_degrees(const struct sensor_value *rad)
Helper function for converting radians to degrees.
Definition sensor.h:1245
sensor_trigger_type
Sensor trigger types.
Definition sensor.h:228
sensor_attribute
Sensor attribute types.
Definition sensor.h:305
int sensor_get_decoder(const struct device *dev, const struct sensor_decoder_api **decoder)
Get the sensor's decoder API.
static int sensor_read(struct rtio_iodev *iodev, struct rtio *ctx, uint8_t *buf, size_t buf_len)
Blocking one shot read of samples from a sensor into a buffer.
Definition sensor.h:1079
int(* sensor_get_decoder_t)(const struct device *dev, const struct sensor_decoder_api **api)
Get the decoder associate with the given device.
Definition sensor.h:605
static void sensor_ug_to_ms2(int32_t ug, struct sensor_value *ms2)
Helper function to convert acceleration from micro Gs to m/s^2.
Definition sensor.h:1232
static double sensor_value_to_double(const struct sensor_value *val)
Helper function for converting struct sensor_value to double.
Definition sensor.h:1304
static float sensor_value_to_float(const struct sensor_value *val)
Helper function for converting struct sensor_value to float.
Definition sensor.h:1315
int sensor_natively_supported_channel_size_info(struct sensor_chan_spec channel, size_t *base_size, size_t *frame_size)
int(* sensor_attr_set_t)(const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value *val)
Callback API upon setting a sensor's attributes.
Definition sensor.h:392
static void sensor_degrees_to_rad(int32_t d, struct sensor_value *rad)
Helper function for converting degrees to radians.
Definition sensor.h:1262
static int32_t sensor_ms2_to_ug(const struct sensor_value *ms2)
Helper function to convert acceleration from m/s^2 to micro Gs.
Definition sensor.h:1219
int(* sensor_channel_get_t)(const struct device *dev, enum sensor_channel chan, struct sensor_value *val)
Callback API for getting a reading from a sensor.
Definition sensor.h:431
static int sensor_value_from_float(struct sensor_value *val, float inp)
Helper function for converting float to struct sensor_value.
Definition sensor.h:1352
static void sensor_g_to_ms2(int32_t g, struct sensor_value *ms2)
Helper function to convert acceleration from Gs to m/s^2.
Definition sensor.h:1205
static int64_t sensor_value_to_milli(const struct sensor_value *val)
Helper function for converting struct sensor_value to integer milli units.
Definition sensor.h:1458
#define SENSOR_PI
The value of constant PI in micros.
Definition sensor.h:1178
static int sensor_trigger_set(const struct device *dev, const struct sensor_trigger *trig, sensor_trigger_handler_t handler)
Activate a sensor's trigger and set the trigger handler.
Definition sensor.h:806
sensor_stream_data_opt
Options for what to do with the associated data when a trigger is consumed.
Definition sensor.h:611
static int sensor_value_from_milli(struct sensor_value *val, int64_t milli)
Helper function for converting integer milli units to struct sensor_value.
Definition sensor.h:1481
void(* sensor_trigger_handler_t)(const struct device *dev, const struct sensor_trigger *trigger)
Callback API upon firing of a trigger.
Definition sensor.h:383
static int64_t sensor_value_to_micro(const struct sensor_value *val)
Helper function for converting struct sensor_value to integer micro units.
Definition sensor.h:1469
int sensor_channel_get(const struct device *dev, enum sensor_channel chan, struct sensor_value *val)
Get a reading from a sensor device.
int sensor_sample_fetch(const struct device *dev)
Fetch a sample from the sensor and store it in an internal driver buffer.
void(* sensor_processing_callback_t)(int result, uint8_t *buf, uint32_t buf_len, void *userdata)
Callback function used with the helper processing function.
Definition sensor.h:1152
sensor_channel
Sensor channels.
Definition sensor.h:61
static void sensor_10udegrees_to_rad(int32_t d, struct sensor_value *rad)
Helper function for converting 10 micro degrees to radians.
Definition sensor.h:1292
static int32_t sensor_ms2_to_g(const struct sensor_value *ms2)
Helper function to convert acceleration from m/s^2 to Gs.
Definition sensor.h:1188
int sensor_reconfigure_read_iodev(struct rtio_iodev *iodev, const struct device *sensor, const struct sensor_chan_spec *channels, size_t num_channels)
Reconfigure a reading iodev.
static int sensor_read_async_mempool(struct rtio_iodev *iodev, struct rtio *ctx, void *userdata)
One shot non-blocking read with pool allocated buffer.
Definition sensor.h:1121
void sensor_processing_with_callback(struct rtio *ctx, sensor_processing_callback_t cb)
Helper function for common processing of sensor data.
static int sensor_value_from_micro(struct sensor_value *val, int64_t micro)
Helper function for converting integer micro units to struct sensor_value.
Definition sensor.h:1501
int sensor_sample_fetch_chan(const struct device *dev, enum sensor_channel type)
Fetch a sample from the sensor and store it in an internal driver buffer.
static int sensor_stream(struct rtio_iodev *iodev, struct rtio *ctx, void *userdata, struct rtio_sqe **handle)
Definition sensor.h:1042
int(* sensor_sample_fetch_t)(const struct device *dev, enum sensor_channel chan)
Callback API for fetching data from a sensor.
Definition sensor.h:423
void(* sensor_submit_t)(const struct device *sensor, struct rtio_iodev_sqe *sqe)
Definition sensor.h:702
int(* sensor_trigger_set_t)(const struct device *dev, const struct sensor_trigger *trig, sensor_trigger_handler_t handler)
Callback API for setting a sensor's trigger and handler.
Definition sensor.h:414
static int32_t sensor_rad_to_10udegrees(const struct sensor_value *rad)
Helper function for converting radians to 10 micro degrees.
Definition sensor.h:1279
static bool sensor_chan_spec_eq(struct sensor_chan_spec chan_spec0, struct sensor_chan_spec chan_spec1)
Check if channel specs are equivalent.
Definition sensor.h:462
int sensor_attr_get(const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, struct sensor_value *val)
Get an attribute for a sensor.
static int sensor_value_from_double(struct sensor_value *val, double inp)
Helper function for converting double to struct sensor_value.
Definition sensor.h:1327
int sensor_attr_set(const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value *val)
Set an attribute for a sensor.
@ SENSOR_TRIG_DELTA
Trigger fires when the selected channel varies significantly.
Definition sensor.h:244
@ SENSOR_TRIG_NEAR_FAR
Trigger fires when a near/far event is detected.
Definition sensor.h:246
@ SENSOR_TRIG_FREEFALL
Trigger fires when a free fall is detected.
Definition sensor.h:262
@ SENSOR_TRIG_PRIV_START
This and higher values are sensor specific.
Definition sensor.h:284
@ SENSOR_TRIG_FIFO_FULL
Trigger fires when the FIFO becomes full.
Definition sensor.h:274
@ SENSOR_TRIG_MOTION
Trigger fires when motion is detected.
Definition sensor.h:265
@ SENSOR_TRIG_STATIONARY
Trigger fires when no motion has been detected for a while.
Definition sensor.h:268
@ SENSOR_TRIG_COMMON_COUNT
Number of all common sensor triggers.
Definition sensor.h:278
@ SENSOR_TRIG_THRESHOLD
Trigger fires when channel reading transitions configured thresholds.
Definition sensor.h:253
@ SENSOR_TRIG_MAX
Maximum value describing a sensor trigger type.
Definition sensor.h:289
@ SENSOR_TRIG_DOUBLE_TAP
Trigger fires when a double tap is detected.
Definition sensor.h:259
@ SENSOR_TRIG_TIMER
Timer-based trigger, useful when the sensor does not have an interrupt line.
Definition sensor.h:233
@ SENSOR_TRIG_FIFO_WATERMARK
Trigger fires when the FIFO watermark has been reached.
Definition sensor.h:271
@ SENSOR_TRIG_TAP
Trigger fires when a single tap is detected.
Definition sensor.h:256
@ SENSOR_TRIG_DATA_READY
Trigger fires whenever new data is ready.
Definition sensor.h:235
@ SENSOR_ATTR_HYSTERESIS
Definition sensor.h:323
@ SENSOR_ATTR_FEATURE_MASK
Enable/disable sensor features.
Definition sensor.h:343
@ SENSOR_ATTR_CALIB_TARGET
Calibration target.
Definition sensor.h:337
@ SENSOR_ATTR_OFFSET
The sensor value returned will be altered by the amount indicated by offset: final_value = sensor_val...
Definition sensor.h:332
@ SENSOR_ATTR_BATCH_DURATION
Hardware batch duration in ticks.
Definition sensor.h:354
@ SENSOR_ATTR_OVERSAMPLING
Oversampling factor.
Definition sensor.h:325
@ SENSOR_ATTR_FF_DUR
Free-fall duration represented in milliseconds.
Definition sensor.h:351
@ SENSOR_ATTR_UPPER_THRESH
Upper threshold for trigger.
Definition sensor.h:314
@ SENSOR_ATTR_CONFIGURATION
Configure the operating modes of a sensor.
Definition sensor.h:339
@ SENSOR_ATTR_RESOLUTION
Definition sensor.h:358
@ SENSOR_ATTR_CALIBRATION
Set a calibration value needed by a sensor.
Definition sensor.h:341
@ SENSOR_ATTR_COMMON_COUNT
Number of all common sensor attributes.
Definition sensor.h:362
@ SENSOR_ATTR_ALERT
Alert threshold or alert enable/disable.
Definition sensor.h:345
@ SENSOR_ATTR_SLOPE_TH
Threshold for any-motion (slope) trigger.
Definition sensor.h:316
@ SENSOR_ATTR_GAIN
Definition sensor.h:356
@ SENSOR_ATTR_SAMPLING_FREQUENCY
Sensor sampling frequency, i.e.
Definition sensor.h:310
@ SENSOR_ATTR_FULL_SCALE
Sensor range, in SI units.
Definition sensor.h:327
@ SENSOR_ATTR_LOWER_THRESH
Lower threshold for trigger.
Definition sensor.h:312
@ SENSOR_ATTR_SLOPE_DUR
Duration for which the slope values needs to be outside the threshold for the trigger to fire.
Definition sensor.h:321
@ SENSOR_ATTR_MAX
Maximum value describing a sensor attribute type.
Definition sensor.h:373
@ SENSOR_ATTR_PRIV_START
This and higher values are sensor specific.
Definition sensor.h:368
@ SENSOR_STREAM_DATA_INCLUDE
Include whatever data is associated with the trigger.
Definition sensor.h:613
@ SENSOR_STREAM_DATA_NOP
Do nothing with the associated trigger data, it may be consumed later.
Definition sensor.h:615
@ SENSOR_STREAM_DATA_DROP
Flush/clear whatever data is associated with the trigger.
Definition sensor.h:617
@ SENSOR_CHAN_GAUGE_STATE_OF_HEALTH
State of health measurement in %.
Definition sensor.h:185
@ SENSOR_CHAN_PM_1_0
1.0 micro-meters Particulate Matter, in ug/m^3
Definition sensor.h:113
@ SENSOR_CHAN_DIE_TEMP
Device die temperature in degrees Celsius.
Definition sensor.h:87
@ SENSOR_CHAN_PRESS
Pressure in kilopascal.
Definition sensor.h:91
@ SENSOR_CHAN_GAUGE_TIME_TO_FULL
Time to full in minutes.
Definition sensor.h:189
@ SENSOR_CHAN_ACCEL_XYZ
Acceleration on the X, Y and Z axes.
Definition sensor.h:69
@ SENSOR_CHAN_MAGN_X
Magnetic field on the X axis, in Gauss.
Definition sensor.h:79
@ SENSOR_CHAN_O2
O2 level, in parts per million (ppm)
Definition sensor.h:124
@ SENSOR_CHAN_CURRENT
Current, in amps.
Definition sensor.h:137
@ SENSOR_CHAN_GYRO_XYZ
Angular velocity around the X, Y and Z axes.
Definition sensor.h:77
@ SENSOR_CHAN_VSHUNT
Current Shunt Voltage in milli-volts.
Definition sensor.h:134
@ SENSOR_CHAN_GREEN
Illuminance in green spectrum, in lux.
Definition sensor.h:106
@ SENSOR_CHAN_GRAVITY_VECTOR
Gravity Vector (X/Y/Z components in m/s^2)
Definition sensor.h:201
@ SENSOR_CHAN_MAGN_Z
Magnetic field on the Z axis, in Gauss.
Definition sensor.h:83
@ SENSOR_CHAN_MAGN_Y
Magnetic field on the Y axis, in Gauss.
Definition sensor.h:81
@ SENSOR_CHAN_GAUGE_DESIRED_VOLTAGE
Desired voltage of cell in V (nominal voltage)
Definition sensor.h:195
@ SENSOR_CHAN_POWER
Power in watts.
Definition sensor.h:139
@ SENSOR_CHAN_PM_2_5
2.5 micro-meters Particulate Matter, in ug/m^3
Definition sensor.h:115
@ SENSOR_CHAN_RESISTANCE
Resistance , in Ohm.
Definition sensor.h:142
@ SENSOR_CHAN_GAME_ROTATION_VECTOR
Game Rotation Vector (unit quaternion components X/Y/Z/W)
Definition sensor.h:199
@ SENSOR_CHAN_GAUGE_AVG_CURRENT
Average current, in amps.
Definition sensor.h:165
@ SENSOR_CHAN_GYRO_Y
Angular velocity around the Y axis, in radians/s.
Definition sensor.h:73
@ SENSOR_CHAN_GAUGE_DESIRED_CHARGING_CURRENT
Desired charging current in mA.
Definition sensor.h:197
@ SENSOR_CHAN_FREQUENCY
Frequency, in Hz.
Definition sensor.h:160
@ SENSOR_CHAN_GAUGE_FULL_CHARGE_CAPACITY
Full Charge Capacity in mAh.
Definition sensor.h:175
@ SENSOR_CHAN_ROTATION
Angular rotation, in degrees.
Definition sensor.h:145
@ SENSOR_CHAN_AMBIENT_TEMP
Ambient temperature in degrees Celsius.
Definition sensor.h:89
@ SENSOR_CHAN_MAGN_XYZ
Magnetic field on the X, Y and Z axes.
Definition sensor.h:85
@ SENSOR_CHAN_GAUGE_STDBY_CURRENT
Standby current, in amps.
Definition sensor.h:167
@ SENSOR_CHAN_GAUGE_MAX_LOAD_CURRENT
Max load current, in amps.
Definition sensor.h:169
@ SENSOR_CHAN_ACCEL_Y
Acceleration on the Y axis, in m/s^2.
Definition sensor.h:65
@ SENSOR_CHAN_RPM
Revolutions per minute, in RPM.
Definition sensor.h:157
@ SENSOR_CHAN_GAUGE_FULL_AVAIL_CAPACITY
Full Available Capacity in mAh.
Definition sensor.h:181
@ SENSOR_CHAN_VOLTAGE
Voltage, in volts.
Definition sensor.h:131
@ SENSOR_CHAN_BLUE
Illuminance in blue spectrum, in lux.
Definition sensor.h:108
@ SENSOR_CHAN_LIGHT
Illuminance in visible spectrum, in lux.
Definition sensor.h:100
@ SENSOR_CHAN_GAUGE_DESIGN_VOLTAGE
Design voltage of cell in V (max voltage)
Definition sensor.h:193
@ SENSOR_CHAN_ACCEL_Z
Acceleration on the Z axis, in m/s^2.
Definition sensor.h:67
@ SENSOR_CHAN_CO2
CO2 level, in parts per million (ppm)
Definition sensor.h:122
@ SENSOR_CHAN_GAUGE_STATE_OF_CHARGE
State of charge measurement in %.
Definition sensor.h:173
@ SENSOR_CHAN_POS_DXYZ
Position change on the X, Y and Z axis, in points.
Definition sensor.h:154
@ SENSOR_CHAN_GBIAS_XYZ
Gyroscope bias (X/Y/Z components in radians/s)
Definition sensor.h:203
@ SENSOR_CHAN_GAUGE_CYCLE_COUNT
Cycle count (total number of charge/discharge cycles)
Definition sensor.h:191
@ SENSOR_CHAN_GAUGE_TEMP
Gauge temperature
Definition sensor.h:171
@ SENSOR_CHAN_POS_DY
Position change on the Y axis, in points.
Definition sensor.h:150
@ SENSOR_CHAN_GYRO_Z
Angular velocity around the Z axis, in radians/s.
Definition sensor.h:75
@ SENSOR_CHAN_POS_DX
Position change on the X axis, in points.
Definition sensor.h:148
@ SENSOR_CHAN_GAUGE_AVG_POWER
Average power in mW.
Definition sensor.h:183
@ SENSOR_CHAN_GAUGE_TIME_TO_EMPTY
Time to empty in minutes.
Definition sensor.h:187
@ SENSOR_CHAN_PM_10
10 micro-meters Particulate Matter, in ug/m^3
Definition sensor.h:117
@ SENSOR_CHAN_GAUGE_REMAINING_CHARGE_CAPACITY
Remaining Charge Capacity in mAh.
Definition sensor.h:177
@ SENSOR_CHAN_ALL
All channels.
Definition sensor.h:206
@ SENSOR_CHAN_GAUGE_VOLTAGE
Voltage, in volts.
Definition sensor.h:163
@ SENSOR_CHAN_PROX
Proximity.
Definition sensor.h:96
@ SENSOR_CHAN_COMMON_COUNT
Number of all common sensor channels.
Definition sensor.h:211
@ SENSOR_CHAN_PRIV_START
This and higher values are sensor specific.
Definition sensor.h:217
@ SENSOR_CHAN_GYRO_X
Angular velocity around the X axis, in radians/s.
Definition sensor.h:71
@ SENSOR_CHAN_GAS_RES
Gas sensor resistance in ohms.
Definition sensor.h:128
@ SENSOR_CHAN_HUMIDITY
Humidity, in percent.
Definition sensor.h:98
@ SENSOR_CHAN_DISTANCE
Distance.
Definition sensor.h:119
@ SENSOR_CHAN_IR
Illuminance in infra-red spectrum, in lux.
Definition sensor.h:102
@ SENSOR_CHAN_MAX
Maximum value describing a sensor channel type.
Definition sensor.h:222
@ SENSOR_CHAN_POS_DZ
Position change on the Z axis, in points.
Definition sensor.h:152
@ SENSOR_CHAN_RED
Illuminance in red spectrum, in lux.
Definition sensor.h:104
@ SENSOR_CHAN_ALTITUDE
Altitude, in meters.
Definition sensor.h:110
@ SENSOR_CHAN_GAUGE_NOM_AVAIL_CAPACITY
Nominal Available Capacity in mAh.
Definition sensor.h:179
@ SENSOR_CHAN_ACCEL_X
Acceleration on the X axis, in m/s^2.
Definition sensor.h:63
@ SENSOR_CHAN_VOC
VOC level, in parts per billion (ppb)
Definition sensor.h:126
#define IS_ENABLED(config_macro)
Check for macro definition in compiler-visible expressions.
Definition util_macro.h:148
#define ENOSYS
Function not implemented.
Definition errno.h:82
#define ENOMEM
Not enough core.
Definition errno.h:50
#define ERANGE
Result too large.
Definition errno.h:72
Size of off_t must be equal or less than size of size_t
Definition retained_mem.h:28
Real-Time IO device API for moving bytes with low effort.
#define bool
Definition stdbool.h:13
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INT32_TYPE__ int32_t
Definition stdint.h:74
#define INT32_MAX
Definition stdint.h:18
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINTPTR_TYPE__ uintptr_t
Definition stdint.h:105
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
#define INT32_MIN
Definition stdint.h:24
#define INT16_MAX
Definition stdint.h:17
__INT64_TYPE__ int64_t
Definition stdint.h:75
__INT8_TYPE__ int8_t
Definition stdint.h:72
void * memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n)
Runtime device structure (in ROM) per driver instance.
Definition device.h:411
const void * api
Address of the API structure exposed by the device instance.
Definition device.h:417
A completion queue event.
Definition rtio.h:363
void * userdata
Associated userdata with operation.
Definition rtio.h:367
int32_t result
Result from operation.
Definition rtio.h:366
API that an RTIO IO device should implement.
Definition rtio.h:502
Compute the mempool block index for a given pointer.
Definition rtio.h:492
struct rtio_sqe sqe
Definition rtio.h:493
An IO device with a function table for submitting requests.
Definition rtio.h:517
void * data
Definition rtio.h:522
A submission queue event.
Definition rtio.h:286
void * userdata
User provided data which is returned upon operation completion.
Definition rtio.h:304
uint32_t buf_len
Length of buffer.
Definition rtio.h:310
const struct rtio_iodev * iodev
Device to operation on.
Definition rtio.h:295
const uint8_t * buf
Buffer to write from.
Definition rtio.h:311
An RTIO context containing what can be viewed as a pair of queues.
Definition rtio.h:396
Sensor Channel Specification.
Definition sensor.h:443
uint16_t chan_idx
A sensor channel index.
Definition sensor.h:445
uint16_t chan_type
A sensor channel type.
Definition sensor.h:444
Definition sensor.h:921
uint64_t timestamp_ns
Definition sensor.h:923
int8_t shift
Definition sensor.h:932
uint32_t num_channels
Definition sensor.h:929
Used for iterating over the data frames via the sensor_decoder_api.
Definition sensor.h:565
const struct sensor_decoder_api * decoder
Definition sensor.h:566
struct sensor_chan_spec channel
Definition sensor.h:568
const uint8_t * buffer
Definition sensor.h:567
uint32_t fit
Definition sensor.h:569
Decodes a single raw data buffer.
Definition sensor.h:475
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.
Definition sensor.h:500
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.
Definition sensor.h:485
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.
Definition sensor.h:528
bool(* has_trigger)(const uint8_t *buffer, enum sensor_trigger_type trigger)
Check if the given trigger type is present.
Definition sensor.h:538
Definition sensor.h:710
sensor_get_decoder_t get_decoder
Definition sensor.h:716
sensor_attr_set_t attr_set
Definition sensor.h:711
sensor_attr_get_t attr_get
Definition sensor.h:712
sensor_trigger_set_t trigger_set
Definition sensor.h:713
sensor_sample_fetch_t sample_fetch
Definition sensor.h:714
sensor_channel_get_t channel_get
Definition sensor.h:715
sensor_submit_t submit
Definition sensor.h:717
Definition sensor.h:634
struct sensor_chan_spec *const channels
Definition sensor.h:638
size_t count
Definition sensor.h:641
struct sensor_stream_trigger *const triggers
Definition sensor.h:639
const bool is_streaming
Definition sensor.h:636
const struct device * sensor
Definition sensor.h:635
const size_t max
Definition sensor.h:642
Definition sensor.h:620
enum sensor_stream_data_opt opt
Definition sensor.h:622
enum sensor_trigger_type trigger
Definition sensor.h:621
Sensor trigger spec.
Definition sensor.h:295
enum sensor_trigger_type type
Trigger type.
Definition sensor.h:297
enum sensor_channel chan
Channel the trigger is set on.
Definition sensor.h:299
Representation of a sensor readout value.
Definition sensor.h:51
int32_t val2
Fractional part of the value (in one-millionth parts).
Definition sensor.h:55
int32_t val1
Integer part of the value.
Definition sensor.h:53
#define INT64_C(x)
Definition xcc.h:104