starting work on tmtcbridge

This commit is contained in:
Ulrich Mohr 2023-10-27 13:43:34 +02:00
parent 528fe38397
commit a4bcbf64cc
4 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,7 @@
#include "fsfw/events/EventManager.h"
#include "fsfw/health/HealthTable.h"
#include "fsfw/internalerror/InternalErrorReporter.h"
#include "fsfw/tmtc/UdpTmTcBridge.h"
#include "systemObjects.h"
namespace objects {
@ -59,5 +60,7 @@ void ObjectFactory::produce(void *args) {
new TmManager(objects::TM_MANAGER);
new UdpTmTcBridgeNew(130,7777,0,0);
new PrintController(123);
}

View File

@ -15,5 +15,5 @@ void outbyte(char c);
#endif
void outbyte(char c) {
//XUartPs_SendByte(STDOUT_BASEADDRESS, c);
XUartPs_SendByte(STDOUT_BASEADDRESS, c);
}

2
fsfw

@ -1 +1 @@
Subproject commit 8b9a468893a49d100ad5a543656c3864e0be8203
Subproject commit 9110fd27285c8f6ec145617b168d4cf29a04dc5e

View File

@ -221,6 +221,7 @@ void mission(void *){
PeriodicTaskIF* controllerTask = taskFactory->createPeriodicTask(
"controller", currPrio, 1024, 1, nullptr);
controllerTask->addComponent(123);
controllerTask->addComponent(130);
printf("Created Tasks\n");