zephyr/drivers/sensor/lps22hh/CMakeLists.txt
Armando Visconti 9dbdd81abe driver/sensor: add LPS22HH sensor support
Add support to STM LPS22HH pressure and temperature sensor.
The driver support I2C and SPI bus communication and both
polling and drdy trigger mode.

Signed-off-by: Armando Visconti <armando.visconti@st.com>
2019-07-03 11:59:17 -05:00

13 lines
444 B
CMake

# ST Microelectronics LPS22HH pressure and temperature sensor
#
# Copyright (c) 2019 STMicroelectronics
#
# SPDX-License-Identifier: Apache-2.0
#
zephyr_library()
zephyr_library_sources_ifdef(CONFIG_LPS22HH lps22hh.c)
zephyr_library_sources_ifdef(CONFIG_LPS22HH lps22hh_i2c.c)
zephyr_library_sources_ifdef(CONFIG_LPS22HH lps22hh_spi.c)
zephyr_library_sources_ifdef(CONFIG_LPS22HH_TRIGGER lps22hh_trigger.c)