PLOC SUPV extensions #821

Merged
muellerr merged 45 commits from ploc-supv-extensions into main 2023-11-29 14:52:09 +01:00
Showing only changes of commit a765e67b53 - Show all commits

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;