update lookup table example

This commit is contained in:
Amar Mahmutbegovic
2024-09-23 00:17:56 +02:00
parent 6090eba6d3
commit 87087b3bfb
11 changed files with 301 additions and 72 deletions

View File

@@ -86,7 +86,9 @@ include_directories(
${CMAKE_SOURCE_DIR}/hal/uart/inc
${CMAKE_SOURCE_DIR}/hal/inc
${CMAKE_SOURCE_DIR}/hal/gpio/inc
${CMAKE_SOURCE_DIR}/hal/adc/inc
${CMAKE_SOURCE_DIR}/cstdlib_support
${CMAKE_SOURCE_DIR}/util/inc
)
set(EXECUTABLE ${PROJECT_NAME}.elf)
@@ -108,7 +110,9 @@ add_executable(
hal/uart/src/uart_stm32.cpp
hal/gpio/src/gpio.cpp
hal/gpio/src/gpio_interrupt_manager.cpp
hal/adc/src/adc_stm32.cpp
cstdlib_support/retarget.cpp
util/src/units.cpp
${MAIN_CPP_PATH}/${MAIN_CPP_FILE_NAME}
)