Adds a simple auxdisplay sample which outputs hello world and the name of the board. A sample overlay is provided for the nucleo_f746zg board with a Hitachi HD44780-compatible display. Signed-off-by: Jamie McCrae <spam@helper3000.net>
9 lines
184 B
CMake
9 lines
184 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
|
project(auxdisplay)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|