better names

This commit is contained in:
Robin Müller 2020-04-23 10:32:05 +02:00
parent ab2794e2d8
commit 3a3960ed1c
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ ReturnValue_t TmTcBridge::handleTc() {
}
ReturnValue_t TmTcBridge::handleTm() {
ReturnValue_t result = readTmQueue();
ReturnValue_t result = handleTmQueue();
if(result != RETURN_OK) {
error << "TMTC Bridge: Reading TM Queue failed" << std::endl;
return RETURN_FAILED;
@ -93,7 +93,7 @@ ReturnValue_t TmTcBridge::handleTm() {
}
ReturnValue_t TmTcBridge::readTmQueue() {
ReturnValue_t TmTcBridge::handleTmQueue() {
TmTcMessage message;
const uint8_t* data = nullptr;
uint32_t size = 0;

View File

@ -108,7 +108,7 @@ protected:
* Read the TM Queue and send TM if necessary. Default implementation provided
* @return
*/
virtual ReturnValue_t readTmQueue();
virtual ReturnValue_t handleTmQueue();
/**
* Send stored data if communication link is active