name slotLengthMs reverted to lengthMs

This commit is contained in:
Robin Müller 2020-04-19 21:37:55 +02:00
parent 4d64a76b8e
commit cee8b4dc37
2 changed files with 5 additions and 6 deletions

View File

@ -2,7 +2,7 @@
#include <framework/serviceinterface/ServiceInterfaceStream.h>
FixedSlotSequence::FixedSlotSequence(uint32_t setLengthMs) :
slotLengthMs(setLengthMs) {
lengthMs(setLengthMs) {
current = slotList.begin();
}
@ -49,7 +49,7 @@ uint32_t FixedSlotSequence::getIntervalToNextSlotMs() {
// the interval is calculated by subtracting the remaining time of the PST
// and adding the start time of the first handler in the list.
slotListIter = slotList.begin();
return slotLengthMs - oldTime + slotListIter->pollingTimeMs;
return lengthMs - oldTime + slotListIter->pollingTimeMs;
}
uint32_t FixedSlotSequence::getIntervalToPreviousSlotMs() {
@ -60,7 +60,7 @@ uint32_t FixedSlotSequence::getIntervalToPreviousSlotMs() {
//if it is the first slot, calculate difference to last slot
if (slotListIter == slotList.begin()){
return slotLengthMs - (--slotList.end())->pollingTimeMs + currentTime;
return lengthMs - (--slotList.end())->pollingTimeMs + currentTime;
}
// get previous slot
slotListIter--;
@ -83,7 +83,7 @@ bool FixedSlotSequence::slotFollowsImmediately() {
}
uint32_t FixedSlotSequence::getLengthMs() const {
return this->slotLengthMs;
return this->lengthMs;
}
ReturnValue_t FixedSlotSequence::checkSequence() const {

View File

@ -23,7 +23,6 @@ using SlotListIter = std::multiset<FixedSequenceSlot>::iterator;
class FixedSlotSequence {
public:
/**
* @brief The constructor of the FixedSlotSequence object.
*
@ -126,7 +125,7 @@ protected:
*/
SlotList slotList;
uint32_t slotLengthMs;
uint32_t lengthMs;
};
#endif /* FIXEDSLOTSEQUENCE_H_ */