#include "../objectmanager/SystemObjectIF.h" #include "../tasks/FixedSequenceSlot.h" #include FixedSequenceSlot::FixedSequenceSlot(object_id_t handlerId, uint32_t setTime, int8_t setSequenceId, PeriodicTaskIF* executingTask) : pollingTimeMs(setTime), opcode(setSequenceId) { handler = objectManager->get(handlerId); if(executingTask != nullptr) { handler->setTaskIF(executingTask); } handler->initializeAfterTaskCreation(); } FixedSequenceSlot::~FixedSequenceSlot() {}