Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
emul_sensor.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 Google LLC
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
8
9#include <stdint.h>
10
27__subsystem struct emul_sensor_backend_api {
29 int (*set_channel)(const struct emul *target, enum sensor_channel ch, q31_t value,
30 int8_t shift);
32 int (*get_sample_range)(const struct emul *target, enum sensor_channel ch, q31_t *lower,
33 q31_t *upper, q31_t *epsilon, int8_t *shift);
34};
46static inline bool emul_sensor_backend_is_supported(const struct emul *target)
47{
48 return target && target->backend_api;
49}
50
63static inline int emul_sensor_backend_set_channel(const struct emul *target, enum sensor_channel ch,
64 q31_t value, int8_t shift)
65{
66 if (!target || !target->backend_api) {
67 return -ENOTSUP;
68 }
69
70 struct emul_sensor_backend_api *api = (struct emul_sensor_backend_api *)target->backend_api;
71
72 if (api->set_channel) {
73 return api->set_channel(target, ch, value, shift);
74 }
75 return -ENOTSUP;
76}
77
95static inline int emul_sensor_backend_get_sample_range(const struct emul *target,
96 enum sensor_channel ch, q31_t *lower,
97 q31_t *upper, q31_t *epsilon, int8_t *shift)
98{
99 if (!target || !target->backend_api) {
100 return -ENOTSUP;
101 }
102
103 struct emul_sensor_backend_api *api = (struct emul_sensor_backend_api *)target->backend_api;
104
105 if (api->get_sample_range) {
106 return api->get_sample_range(target, ch, lower, upper, epsilon, shift);
107 }
108 return -ENOTSUP;
109}
110
int32_t q31_t
32-bit fractional data type in 1.31 format.
Definition: types.h:35
static int emul_sensor_backend_get_sample_range(const struct emul *target, enum sensor_channel ch, q31_t *lower, q31_t *upper, q31_t *epsilon, int8_t *shift)
Query an emulator for a channel's supported sample value range and tolerance.
Definition: emul_sensor.h:95
static int emul_sensor_backend_set_channel(const struct emul *target, enum sensor_channel ch, q31_t value, int8_t shift)
Set an expected value for a given channel on a given sensor emulator.
Definition: emul_sensor.h:63
static bool emul_sensor_backend_is_supported(const struct emul *target)
Check if a given sensor emulator supports the backend API.
Definition: emul_sensor.h:46
sensor_channel
Sensor channels.
Definition: sensor.h:59
#define ENOTSUP
Unsupported value.
Definition: errno.h:115
Public APIs for the sensor driver.
__INT8_TYPE__ int8_t
Definition: stdint.h:72
An emulator instance - represents the target emulated device/peripheral that is interacted with throu...
Definition: emul.h:69
const void * backend_api
Address of the API structure exposed by the emulator instance.
Definition: emul.h:87