1
0
forked from fsfw/fsfw

Merge remote-tracking branch 'upstram/master' into mueller_localPoolNeat

This commit is contained in:
2020-05-20 14:38:41 +02:00
45 changed files with 229 additions and 148 deletions

View File

@ -31,7 +31,7 @@ iterator_t PUSDistributor::selectDestination() {
}
if (tcStatus != RETURN_OK) {
debug << "PUSDistributor::handlePacket: error with " << (int) tcStatus
sif::debug << "PUSDistributor::handlePacket: error with " << (int) tcStatus
<< std::endl;
return this->queueMap.end();
} else {

View File

@ -39,14 +39,14 @@ ReturnValue_t TcDistributor::handlePacket() {
}
void TcDistributor::print() {
debug << "Distributor content is: " << std::endl << "ID\t| message queue id"
sif::debug << "Distributor content is: " << std::endl << "ID\t| message queue id"
<< std::endl;
for (iterator_t it = this->queueMap.begin(); it != this->queueMap.end();
it++) {
debug << it->first << "\t| 0x" << std::hex << it->second << std::dec
sif::debug << it->first << "\t| 0x" << std::hex << it->second << std::dec
<< std::endl;
}
debug << std::dec;
sif::debug << std::dec;
}