1 /* ST Microelectronics LPS22DF pressure and temperature sensor 2 * 3 * Copyright (c) 2023 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 "lps22df_reg.h" 13 14 #include <zephyr/drivers/sensor.h> 15 16 #ifndef ZEPHYR_DRIVERS_SENSOR_LPS22DF_LPS22DF_H_ 17 #define ZEPHYR_DRIVERS_SENSOR_LPS22DF_LPS22DF_H_ 18 19 extern const struct lps2xdf_chip_api st_lps22df_chip_api; 20 21 int st_lps22df_init(const struct device *dev); 22 23 #endif /* ZEPHYR_DRIVERS_SENSOR_LPS22DF_H_ */ 24