minor form changes

This commit is contained in:
Robin Müller 2020-04-23 10:24:34 +02:00
parent e40c9f42c6
commit 40d952a349

View File

@ -22,7 +22,7 @@ ReturnValue_t TmTcBridge::setNumberOfSentPacketsPerCycle(
} }
else { else {
warning << "TmTcBridge: Number of packets sent per cycle " warning << "TmTcBridge: Number of packets sent per cycle "
"exceeds limits" << std::endl; "exceeds limits. Keeping default value." << std::endl;
return RETURN_FAILED; return RETURN_FAILED;
} }
} }
@ -35,7 +35,7 @@ ReturnValue_t TmTcBridge::setMaxNumberOfPacketsStored(
} }
else { else {
warning << "TmTcBridge: Number of packets stored " warning << "TmTcBridge: Number of packets stored "
"exceeds limits" << std::endl; "exceeds limits. Keeping default value." << std::endl;
return RETURN_FAILED; return RETURN_FAILED;
} }
} }
@ -141,7 +141,7 @@ ReturnValue_t TmTcBridge::storeDownlinkData(TmTcMessage *message) {
ReturnValue_t TmTcBridge::handleStoredTm() { ReturnValue_t TmTcBridge::handleStoredTm() {
uint8_t counter = 0; uint8_t counter = 0;
ReturnValue_t result = RETURN_OK; ReturnValue_t result = RETURN_OK;
while(!fifo.empty() && counter < sentPacketsPerCycle) { while(not fifo.empty() && counter < sentPacketsPerCycle) {
//info << "TMTC Bridge: Sending stored TM data. There are " //info << "TMTC Bridge: Sending stored TM data. There are "
// << (int) fifo.size() << " left to send\r\n" << std::flush; // << (int) fifo.size() << " left to send\r\n" << std::flush;
store_address_t storeId; store_address_t storeId;
@ -168,7 +168,7 @@ ReturnValue_t TmTcBridge::handleStoredTm() {
} }
void TmTcBridge::registerCommConnect() { void TmTcBridge::registerCommConnect() {
if(!communicationLinkUp) { if(not communicationLinkUp) {
//info << "TMTC Bridge: Registered Comm Link Connect" << std::endl; //info << "TMTC Bridge: Registered Comm Link Connect" << std::endl;
communicationLinkUp = true; communicationLinkUp = true;
} }
@ -189,7 +189,7 @@ MessageQueueId_t TmTcBridge::getReportReceptionQueue(uint8_t virtualChannel) {
void TmTcBridge::printData(uint8_t * data, size_t dataLen) { void TmTcBridge::printData(uint8_t * data, size_t dataLen) {
info << "TMTC Bridge: Printing data: ["; info << "TMTC Bridge: Printing data: [";
for(uint32_t i=0;i<dataLen;i++) { for(uint32_t i = 0; i < dataLen; i++) {
info << std::hex << (int)data[i]; info << std::hex << (int)data[i];
if(i < dataLen-1){ if(i < dataLen-1){
info << " , "; info << " , ";