1 /* ST Microelectronics LPS28DFW 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 <zephyr/drivers/sensor.h> 13 14 #include "lps28dfw_reg.h" 15 16 #ifndef ZEPHYR_DRIVERS_SENSOR_LPS28DFW_LPS28DFW_H_ 17 #define ZEPHYR_DRIVERS_SENSOR_LPS28DFW_LPS28DFW_H_ 18 19 extern const struct lps2xdf_chip_api st_lps28dfw_chip_api; 20 21 int st_lps28dfw_init(const struct device *dev); 22 23 #endif /* ZEPHYR_DRIVERS_SENSOR_LPS28DFW_H_ */ 24