fsfw/src/fsfw/tcdistribution/TcPacketCheckCFDP.cpp

12 lines
412 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 RETURN_OK;
}
uint16_t CfdpPacketChecker::getApid() const { return apid; }