Line data Source code
1 1 : /*
2 : * Copyright (c) 2023 Google LLC
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : /**
7 : * @file
8 : * @brief Header file for extended sensor API of F75303 sensor
9 : * @ingroup f75303_interface
10 : */
11 :
12 : #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_F75303_H_
13 : #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_F75303_H_
14 :
15 : /**
16 : * @brief Fintek F75303 temperature sensor
17 : * @defgroup f75303_interface F75303
18 : * @ingroup sensor_interface_ext
19 : * @{
20 : */
21 :
22 : #include <zephyr/drivers/sensor.h>
23 :
24 : /**
25 : * @brief Custom sensor channels for F75303
26 : */
27 1 : enum sensor_channel_f75303 {
28 : /** Temperature of remote sensor 1 */
29 : SENSOR_CHAN_F75303_REMOTE1 = SENSOR_CHAN_PRIV_START,
30 : /** Temperature of remote sensor 2 */
31 : SENSOR_CHAN_F75303_REMOTE2,
32 : };
33 :
34 : /**
35 : * @}
36 : */
37 :
38 : #endif
|