further cleanup

This commit is contained in:
2024-10-10 16:04:18 +02:00
parent 791428e6c0
commit dd9c39af30
12 changed files with 110 additions and 314 deletions

View File

@ -1,3 +1,8 @@
add_library(bsp STATIC)
add_subdirectory(hardware)
target_sources(${TARGET_NAME} PRIVATE main.c)
target_sources(bsp PRIVATE main.c)
# bsp depends on FreeRTOS
target_link_libraries(bsp PUBLIC freertos_kernel)

View File

@ -1 +1 @@
target_sources(${TARGET_NAME} PRIVATE hardware.c)
target_sources(bsp PRIVATE hardware.c)