Update FSFW from upstream #71

Closed
muellerr wants to merge 1112 commits from development into eive/develop
5 changed files with 17 additions and 1 deletions
Showing only changes of commit 269a3052ca - Show all commits

View File

@ -1,4 +1,6 @@
target_sources(${LIB_FSFW_NAME} PRIVATE CfdpMessage.cpp CfdpDistributor.cpp)
target_sources(
${LIB_FSFW_NAME} PRIVATE CfdpMessage.cpp CfdpDistributor.cpp
CfdpSourceHandler.cpp CfdpDestHandler.cpp)
# CfdpDistributor.cpp CfdpHandler.cpp
add_subdirectory(pdu)

View File

@ -0,0 +1 @@
#include "CfdpDestHandler.h"

View File

@ -0,0 +1,6 @@
#ifndef FSFW_CFDP_CFDPDESTHANDLER_H
#define FSFW_CFDP_CFDPDESTHANDLER_H
class CfdpDestHandler {};
#endif // FSFW_CFDP_CFDPDESTHANDLER_H

View File

@ -0,0 +1 @@
#include "CfdpSourceHandler.h"

View File

@ -0,0 +1,6 @@
#ifndef FSFW_CFDP_CFDPSOURCEHANDLER_H
#define FSFW_CFDP_CFDPSOURCEHANDLER_H
class CfdpSourceHandler {};
#endif // FSFW_CFDP_CFDPSOURCEHANDLER_H