1 /* ST Microelectronics ILPS22QS pressure and temperature sensor
2  *
3  * Copyright (c) 2023-2024 STMicroelectronics
4  * Copyright (c) 2023 PHYTEC Messtechnik GmbH
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #include <stdint.h>
10 #include <stmemsc.h>
11 
12 #include "ilps22qs_reg.h"
13 
14 #include <zephyr/drivers/sensor.h>
15 
16 #ifndef ZEPHYR_DRIVERS_SENSOR_ILPS22QS_ILPS22QS_H_
17 #define ZEPHYR_DRIVERS_SENSOR_ILPS22QS_ILPS22QS_H_
18 
19 extern const struct lps2xdf_chip_api st_ilps22qs_chip_api;
20 
21 int st_ilps22qs_init(const struct device *dev);
22 
23 #endif /* ZEPHYR_DRIVERS_SENSOR_ILPS22QS_H_ */
24