remove some printouts
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2023-11-28 15:32:08 +01:00
parent 112fa2b8ff
commit a765e67b53

View File

@ -90,7 +90,6 @@ void FreshSupvHandler::performDeviceOperation(uint8_t opCode) {
} else if (opCode == OpCode::PARSE_TM) {
for (auto& activeCmd : activeActionCmds) {
if (activeCmd.second.isPending and activeCmd.second.cmdCountdown.hasTimedOut()) {
sif::warning << "hello im stupid" << std::endl;
if (activeCmd.second.commandedBy != MessageQueueIF::NO_QUEUE) {
actionHelper.finish(false, activeCmd.second.commandedBy, activeCmd.first,
DeviceHandlerIF::TIMEOUT);
@ -903,7 +902,6 @@ ReturnValue_t FreshSupvHandler::parseTmPackets() {
}
case (Apid::ADC_MON): {
if (tmReader.getServiceId() == static_cast<uint8_t>(supv::tm::AdcMonId::ADC_REPORT)) {
sif::debug << "recv ADC report" << std::endl;
genericHandleTm("ADC", receivedData, adcReport, supv::Apid::ADC_MON,
static_cast<uint8_t>(supv::tc::AdcMonId::REQUEST_ADC_SAMPLE));
continue;