1
0
forked from fsfw/fsfw

new pus parser

This commit is contained in:
2020-07-06 00:33:55 +02:00
parent ebec074655
commit 2158208a2f
4 changed files with 62 additions and 2 deletions

View File

@ -0,0 +1,10 @@
#include <framework/tmtcservices/PusParser.h>
PusParser::PusParser(uint16_t maxExpectedPusPackets,
bool storeSplitPackets): indexSizePairFIFO(maxExpectedPusPackets) {
}
ReturnValue_t PusParser::parsePusPackets(const uint8_t *frame,
size_t frameSize) {
return HasReturnvaluesIF::RETURN_OK;
}