mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 06:36:12 +00:00
The IIS2DLPC is a 3D digital accelerometer ultra-low power sensor for industrial applications, which can be interfaced through either I2C or SPI bus. https://www.st.com/resource/en/datasheet/iis2dlpc.pdf This driver is based on stmemsc i/f v1.02 Signed-off-by: Armando Visconti <armando.visconti@st.com>
13 lines
447 B
CMake
13 lines
447 B
CMake
# ST Microelectronics IIS2DLPC 3-axis accelerometer driver
|
|
#
|
|
# Copyright (c) 2020 STMicroelectronics
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_IIS2DLPC iis2dlpc)
|
|
zephyr_library_sources_ifdef(CONFIG_IIS2DLPC iis2dlpc_i2c.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IIS2DLPC iis2dlpc_spi.c)
|
|
zephyr_library_sources_ifdef(CONFIG_IIS2DLPC_TRIGGER iis2dlpc_trigger.c)
|