v1.11.0 #243

Merged
muellerr merged 159 commits from develop into main 2022-05-04 17:19:57 +02:00
Showing only changes of commit 5f6a8fa37d - Show all commits

View File

@ -100,14 +100,10 @@ void PCDUHandler::readCommandQueue() {
for (result = commandQueue->receiveMessage(&command); result == RETURN_OK;
result = commandQueue->receiveMessage(&command)) {
result = commandQueue->receiveMessage(&command);
if (result != RETURN_OK) {
return;
}
result = poolManager.handleHousekeepingMessage(&command);
sif::debug << "PCDUHandler: Received message" << std::endl;
if (result == RETURN_OK) {
return;
continue;
}
}
}