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>
13 lines
444 B
CMake
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)
|