forked from ROMEO/obsw
starting work on tmtcbridge
This commit is contained in:
parent
528fe38397
commit
a4bcbf64cc
@ -8,6 +8,7 @@
|
|||||||
#include "fsfw/events/EventManager.h"
|
#include "fsfw/events/EventManager.h"
|
||||||
#include "fsfw/health/HealthTable.h"
|
#include "fsfw/health/HealthTable.h"
|
||||||
#include "fsfw/internalerror/InternalErrorReporter.h"
|
#include "fsfw/internalerror/InternalErrorReporter.h"
|
||||||
|
#include "fsfw/tmtc/UdpTmTcBridge.h"
|
||||||
#include "systemObjects.h"
|
#include "systemObjects.h"
|
||||||
|
|
||||||
namespace objects {
|
namespace objects {
|
||||||
@ -59,5 +60,7 @@ void ObjectFactory::produce(void *args) {
|
|||||||
|
|
||||||
new TmManager(objects::TM_MANAGER);
|
new TmManager(objects::TM_MANAGER);
|
||||||
|
|
||||||
|
new UdpTmTcBridgeNew(130,7777,0,0);
|
||||||
|
|
||||||
new PrintController(123);
|
new PrintController(123);
|
||||||
}
|
}
|
||||||
|
@ -15,5 +15,5 @@ void outbyte(char c);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
void outbyte(char c) {
|
void outbyte(char c) {
|
||||||
//XUartPs_SendByte(STDOUT_BASEADDRESS, c);
|
XUartPs_SendByte(STDOUT_BASEADDRESS, c);
|
||||||
}
|
}
|
||||||
|
2
fsfw
2
fsfw
@ -1 +1 @@
|
|||||||
Subproject commit 8b9a468893a49d100ad5a543656c3864e0be8203
|
Subproject commit 9110fd27285c8f6ec145617b168d4cf29a04dc5e
|
@ -221,6 +221,7 @@ void mission(void *){
|
|||||||
PeriodicTaskIF* controllerTask = taskFactory->createPeriodicTask(
|
PeriodicTaskIF* controllerTask = taskFactory->createPeriodicTask(
|
||||||
"controller", currPrio, 1024, 1, nullptr);
|
"controller", currPrio, 1024, 1, nullptr);
|
||||||
controllerTask->addComponent(123);
|
controllerTask->addComponent(123);
|
||||||
|
controllerTask->addComponent(130);
|
||||||
|
|
||||||
printf("Created Tasks\n");
|
printf("Created Tasks\n");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user