including taspbery pi bsp

This commit is contained in:
Robin Müller 2020-12-29 01:28:21 +01:00 committed by Robin Mueller
parent 97331100a8
commit 73cc2ded21
2 changed files with 12 additions and 0 deletions

View File

@ -53,6 +53,8 @@ else()
set(FSFW_CONFIG_PATH "${BSP_PATH}/fsfwconfig")
endif()
set(RPI_BSP_PATH "bsp_rpi")
################################################################################
# Executable and Sources
################################################################################
@ -65,6 +67,10 @@ if(${OS_FSFW} MATCHES linux)
add_subdirectory(${FSFW_CONFIG_PATH})
endif()
if(${TGT_BSP} MATCHES "arm/raspberrypi")
add_subdirectory(${RPI_BSP_PATH})
endif()
add_subdirectory(${BSP_PATH})
add_subdirectory(${FSFW_PATH})
add_subdirectory(${MISSION_PATH})

6
bsp_rpi/CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
target_sources(${TARGET_NAME} PUBLIC
)