WIP: develop_update #706

Draft
muellerr wants to merge 710 commits from eive/fsfw:develop_update into development
Showing only changes of commit caf78835b2 - Show all commits

View File

@ -23,13 +23,15 @@ class SourceSequenceCounter {
this->increment(); this->increment();
return *this; return *this;
} }
SourceSequenceCounter& operator--(int) {
this->decrement();
return *this;
}
SourceSequenceCounter& operator=(const uint16_t& newCount) { SourceSequenceCounter& operator=(const uint16_t& newCount) {
sequenceCount = newCount; sequenceCount = newCount;
return *this; return *this;
} }
operator uint16_t() { operator uint16_t() { return this->get(); }
return this->get();
}
}; };
#endif /* FSFW_TMTCSERVICES_SOURCESEQUENCECOUNTER_H_ */ #endif /* FSFW_TMTCSERVICES_SOURCESEQUENCECOUNTER_H_ */