Add sample for reading the temperature of a 3-wire PT100 sensor using the Texas Instruments LMP90100 Sensor Analog Frontend (AFE) Evaluation Board (EVB) shield. Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
12 lines
351 B
CMake
12 lines
351 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
# This sample is specific to lmp90100_evb shield. Enforce -DSHIELD option
|
|
set(SHIELD lmp90100_evb)
|
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(lmp90100_evb_rtd)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|