Add driver for ScioSense ENS160 multi-gas sensor. The driver includes support for I2C and SPI, attributes for setting temperature and humidity compensation and data ready trigger. Also add ScioSense to the list of vendor prefixes. Signed-off-by: Gustavo Silva <gustavograzs@gmail.com>
9 lines
267 B
CMake
9 lines
267 B
CMake
# Copyright (c) 2024 Gustavo Silva
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
zephyr_library_sources(ens160.c)
|
|
zephyr_library_sources(ens160_i2c.c)
|
|
zephyr_library_sources(ens160_spi.c)
|
|
zephyr_library_sources_ifdef(CONFIG_ENS160_TRIGGER ens160_trigger.c)
|