afmt
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Robin Müller 2022-09-02 11:12:16 +02:00
parent 935f35a40d
commit db84dcd3ce
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
5 changed files with 9 additions and 17 deletions

View File

@ -566,7 +566,7 @@ inline ReturnValue_t Service11TelecommandScheduling<MAX_NUM_TCS>::getMapFilterFr
if (result != returnvalue::OK) { if (result != returnvalue::OK) {
return result; return result;
} }
if(fromTimestamp > toTimestamp) { if (fromTimestamp > toTimestamp) {
return INVALID_TIME_WINDOW; return INVALID_TIME_WINDOW;
} }
itBegin = telecommandMap.begin(); itBegin = telecommandMap.begin();
@ -575,7 +575,7 @@ inline ReturnValue_t Service11TelecommandScheduling<MAX_NUM_TCS>::getMapFilterFr
itBegin++; itBegin++;
} }
//start looking for end beginning at begin // start looking for end beginning at begin
itEnd = itBegin; itEnd = itBegin;
while (itEnd->first <= toTimestamp && itEnd != telecommandMap.end()) { while (itEnd->first <= toTimestamp && itEnd != telecommandMap.end()) {
itEnd++; itEnd++;

View File

@ -17,7 +17,6 @@
*/ */
class SpacePacketParser { class SpacePacketParser {
public: public:
struct FoundPacketInfo { struct FoundPacketInfo {
size_t startIdx = 0; size_t startIdx = 0;
size_t sizeFound = 0; size_t sizeFound = 0;
@ -51,9 +50,7 @@ class SpacePacketParser {
ReturnValue_t parseSpacePackets(const uint8_t** buffer, const size_t maxSize, ReturnValue_t parseSpacePackets(const uint8_t** buffer, const size_t maxSize,
FoundPacketInfo& packetInfo); FoundPacketInfo& packetInfo);
size_t getAmountRead() { size_t getAmountRead() { return amountRead; }
return amountRead;
}
void reset() { void reset() {
nextStartIdx = 0; nextStartIdx = 0;

View File

@ -1,6 +1,3 @@
target_sources(${FSFW_TEST_TGT} PRIVATE target_sources(
testLocalPoolVariable.cpp ${FSFW_TEST_TGT} PRIVATE testLocalPoolVariable.cpp testLocalPoolVector.cpp
testLocalPoolVector.cpp testDataSet.cpp testLocalPoolManager.cpp)
testDataSet.cpp
testLocalPoolManager.cpp
)

View File

@ -1,3 +1 @@
target_sources(${FSFW_TEST_TGT} PRIVATE target_sources(${FSFW_TEST_TGT} PRIVATE testService11.cpp)
testService11.cpp
)

View File

@ -7,8 +7,8 @@
#include "tmtc/pusIds.h" #include "tmtc/pusIds.h"
TEST_CASE("PUS Service 11", "[pus-srvc11]") { TEST_CASE("PUS Service 11", "[pus-srvc11]") {
Service11TelecommandScheduling<13> pusService11({objects::PUS_SERVICE_11_TC_SCHEDULER, Service11TelecommandScheduling<13> pusService11(
apid::DEFAULT_APID, pus::PUS_SERVICE_11}, nullptr); {objects::PUS_SERVICE_11_TC_SCHEDULER, apid::DEFAULT_APID, pus::PUS_SERVICE_11}, nullptr);
// TODO test something... // TODO test something...
} }