From 172df0b57092d4cb6ad65a39e6cc50cf92a65887 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 16 Jul 2021 13:42:28 +0200 Subject: [PATCH] compiling app_ethernet as well --- stm32h7/networking/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stm32h7/networking/CMakeLists.txt b/stm32h7/networking/CMakeLists.txt index 8ce157d..9e61958 100644 --- a/stm32h7/networking/CMakeLists.txt +++ b/stm32h7/networking/CMakeLists.txt @@ -1,7 +1,6 @@ # These are part of the RTEMS BSP for RTEMS if(FSFW_OSAL MATCHES freertos) target_sources(${TARGET_NAME} PRIVATE - app_ethernet.cpp ethernetif.c ) endif() @@ -11,5 +10,5 @@ target_sources(${TARGET_NAME} PRIVATE TmTcLwIpUdpBridge.cpp networking.cpp app_dhcp.cpp - + app_ethernet.cpp )