FSFW Update #11

Merged
meierj merged 17 commits from mueller/master into eive/develop 2021-08-11 13:13:11 +02:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 1ac372cb89 - Show all commits

View File

@ -108,6 +108,10 @@ UdpTmTcBridge::~UdpTmTcBridge() {
}
}
std::string UdpTmTcBridge::getUdpPort() const {
return udpServerPort;
}
ReturnValue_t UdpTmTcBridge::sendTm(const uint8_t *data, size_t dataLen) {
int flags = 0;

View File

@ -44,6 +44,8 @@ public:
void checkAndSetClientAddress(sockaddr& clientAddress);
std::string getUdpPort() const;
protected:
virtual ReturnValue_t sendTm(const uint8_t * data, size_t dataLen) override;