fsfw/src/fsfw/tcdistribution/TcPacketCheckCFDP.cpp
Robin Mueller ba5c6410d6
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
tests running again
2022-08-22 16:23:36 +02:00

12 lines
418 B
C++

#include "fsfw/tcdistribution/CfdpPacketChecker.h"
#include "fsfw/tmtcpacket/cfdp/CfdpPacketStored.h"
CfdpPacketChecker::CfdpPacketChecker(uint16_t setApid) : apid(setApid) {}
ReturnValue_t CfdpPacketChecker::checkPacket(const SpacePacketReader& currentPacket,
size_t packetLen) {
return returnvalue::OK;
}
uint16_t CfdpPacketChecker::getApid() const { return apid; }