TaskIF refactor SPI refactor #89
@ -2,4 +2,5 @@ target_sources(${LIB_FSFW_NAME}
|
|||||||
PRIVATE
|
PRIVATE
|
||||||
FixedSequenceSlot.cpp
|
FixedSequenceSlot.cpp
|
||||||
FixedSlotSequence.cpp
|
FixedSlotSequence.cpp
|
||||||
|
PeriodicTaskBase.cpp
|
||||||
)
|
)
|
@ -9,7 +9,7 @@ PeriodicTaskBase::PeriodicTaskBase(uint32_t periodMs_,
|
|||||||
|
|
||||||
uint32_t PeriodicTaskBase::getPeriodMs() const { return periodMs; }
|
uint32_t PeriodicTaskBase::getPeriodMs() const { return periodMs; }
|
||||||
|
|
||||||
bool PeriodicTaskBase::isEmpty() const override {
|
bool PeriodicTaskBase::isEmpty() const {
|
||||||
return objectList.empty();
|
return objectList.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@ public:
|
|||||||
ReturnValue_t addComponent(object_id_t object, uint8_t opCode) override;
|
ReturnValue_t addComponent(object_id_t object, uint8_t opCode) override;
|
||||||
ReturnValue_t addComponent(ExecutableObjectIF* object, uint8_t opCode) override;
|
ReturnValue_t addComponent(ExecutableObjectIF* object, uint8_t opCode) override;
|
||||||
|
|
||||||
|
|
||||||
uint32_t getPeriodMs() const override;
|
uint32_t getPeriodMs() const override;
|
||||||
|
|
||||||
bool isEmpty() const override;
|
bool isEmpty() const override;
|
||||||
|
Loading…
Reference in New Issue
Block a user