Device: RAD-Galaxy: Add support for Analog Output

This commit is contained in:
Thomas Stoddard
2026-02-11 18:43:30 -05:00
committed by Kyle Schwarz
parent 6cda765fe0
commit d18ca9e6eb
9 changed files with 403 additions and 0 deletions
+5
View File
@@ -14,6 +14,7 @@ option(LIBICSNEO_BUILD_CPP_APP_ERROR_EXAMPLE "Build the macsec example" ON)
option(LIBICSNEO_BUILD_CPP_FLEXRAY_EXAMPLE "Build the FlexRay example." ON)
option(LIBICSNEO_BUILD_CPP_SPI_EXAMPLE "Build the SPI example." ON)
option(LIBICSNEO_BUILD_CPP_MUTEX_EXAMPLE "Build the NetworkMutex example." ON)
option(LIBICSNEO_BUILD_CPP_ANALOG_OUT_EXAMPLE "Build the analog output example." ON)
add_compile_options(${LIBICSNEO_COMPILER_WARNINGS})
@@ -80,3 +81,7 @@ endif()
if(LIBICSNEO_BUILD_CPP_MUTEX_EXAMPLE)
add_subdirectory(cpp/mutex)
endif()
if(LIBICSNEO_BUILD_CPP_ANALOG_OUT_EXAMPLE)
add_subdirectory(cpp/analog_out)
endif()