binary renamed
This commit is contained in:
parent
dbfa93f96e
commit
36ef735067
@ -67,7 +67,7 @@ BSP_PATH = $(BOARD_FILE_ROOT)
|
|||||||
BOARDTEST_PATH = $(BOARD_FILE_ROOT)/boardtest
|
BOARDTEST_PATH = $(BOARD_FILE_ROOT)/boardtest
|
||||||
|
|
||||||
# Output file basename
|
# Output file basename
|
||||||
BASENAME = sourceobsw
|
BASENAME = eiveobsw
|
||||||
BINARY_NAME = $(BASENAME)-$(BOARD)
|
BINARY_NAME = $(BASENAME)-$(BOARD)
|
||||||
# Output files will be put in this directory inside
|
# Output files will be put in this directory inside
|
||||||
OUTPUT_FOLDER = $(OS_FSFW)
|
OUTPUT_FOLDER = $(OS_FSFW)
|
||||||
|
@ -25,6 +25,9 @@
|
|||||||
#ifdef LINUX
|
#ifdef LINUX
|
||||||
#include <fsfw/osal/linux/TcUnixUdpPollingTask.h>
|
#include <fsfw/osal/linux/TcUnixUdpPollingTask.h>
|
||||||
#include <fsfw/osal/linux/TmTcUnixUdpBridge.h>
|
#include <fsfw/osal/linux/TmTcUnixUdpBridge.h>
|
||||||
|
#elif WIN32
|
||||||
|
#include <fsfw/osal/windows/TcWinUdpPollingTask.h>
|
||||||
|
#include <fsfw/osal/windows/TmTcWinUdpBridge.h>
|
||||||
#endif
|
#endif
|
||||||
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
|
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
|
||||||
|
|
||||||
@ -99,6 +102,12 @@ void ObjectFactory::produce(){
|
|||||||
objects::CCSDS_PACKET_DISTRIBUTOR,
|
objects::CCSDS_PACKET_DISTRIBUTOR,
|
||||||
objects::TM_STORE, objects::TC_STORE);
|
objects::TM_STORE, objects::TC_STORE);
|
||||||
new TcUnixUdpPollingTask(objects::UDP_POLLING_TASK, objects::UDP_BRIDGE);
|
new TcUnixUdpPollingTask(objects::UDP_POLLING_TASK, objects::UDP_BRIDGE);
|
||||||
|
#elif WIN32
|
||||||
|
new TmTcWinUdpBridge(objects::UDP_BRIDGE,
|
||||||
|
objects::CCSDS_PACKET_DISTRIBUTOR, objects::TM_STORE,
|
||||||
|
objects::TC_STORE);
|
||||||
|
new TcWinUdpPollingTask(objects::UDP_POLLING_TASK,
|
||||||
|
objects::UDP_BRIDGE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user