forked from ROMEO/fsw-ws
starting work on tmtcbridge
This commit is contained in:
@@ -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
Submodule fsfw updated: 8b9a468893...9110fd2728
@@ -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");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user