Add a sample to demonstrate and test the Wurth Elektronik WSEN-ITDS accel sensor. Sample code covers accel and die temperature functions. Signed-off-by: Saravanan Sekar <saravanan@linumiz.com>
8 lines
182 B
CMake
8 lines
182 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
|
project(wsen_itds)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|