Merge remote-tracking branch 'origin/develop' into mueller/tc-11-tweaks-eive

This commit is contained in:
Robin Müller 2022-05-25 10:31:29 +02:00
commit cea8d07b29
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -78,7 +78,7 @@ inline ReturnValue_t Service11TelecommandScheduling<MAX_NUM_TCS>::performService
// NOTE: The iterator is increased in the loop here. Increasing the iterator as for-loop arg
// does not work in this case as we are deleting the current element here.
for (auto it = telecommandMap.begin(); it != telecommandMap.end();) {
if (it->first <= tNow.tv_sec) {
if (it->first <= static_cast<uint32_t>(tNow.tv_sec)) {
if (schedulingEnabled) {
// release tc
TmTcMessage releaseMsg(it->second.storeAddr);