mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 04:32:38 +00:00
Add a sample application that demonstrates how to use the ADXL362 with data ready and threshold triggers. Signed-off-by: Brett Witherspoon <spoonb@cdspooner.com>
11 lines
248 B
CMake
11 lines
248 B
CMake
# Copyright (c) 2019 Brett Witherspoon
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(adxl362)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|