1 /* ST Microelectronics LIS2DUXS12 smart accelerometer APIs
2  *
3  * Copyright (c) 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 "lis2duxs12_reg.h"
13 #include <zephyr/dt-bindings/sensor/lis2dux12.h>
14 
15 #include <zephyr/drivers/sensor.h>
16 
17 #ifndef ZEPHYR_DRIVERS_SENSOR_LIS2DUXS12_LIS2DUXS12_API_H_
18 #define ZEPHYR_DRIVERS_SENSOR_LIS2DUXS12_LIS2DUXS12_API_H_
19 
20 extern const struct lis2dux12_chip_api st_lis2duxs12_chip_api;
21 
22 int st_lis2duxs12_init(const struct device *dev);
23 
24 #endif /* ZEPHYR_DRIVERS_SENSOR_LIS2DUXS12_LIS2DUXS12_API_H_ */
25