18 lines
534 B
C++
18 lines
534 B
C++
#include "FixedSequenceSlot.h"
|
|
#include "PeriodicTaskIF.h"
|
|
#include <cstddef>
|
|
|
|
FixedSequenceSlot::FixedSequenceSlot(object_id_t handlerId, uint32_t setTime,
|
|
int8_t setSequenceId, ExecutableObjectIF* executableObject,
|
|
PeriodicTaskIF* executingTask) : handlerId(handlerId),
|
|
pollingTimeMs(setTime), opcode(setSequenceId) {
|
|
if(executableObject == nullptr) {
|
|
return;
|
|
}
|
|
this->executableObject = executableObject;
|
|
this->executableObject->setTaskIF(executingTask);
|
|
}
|
|
|
|
FixedSequenceSlot::~FixedSequenceSlot() {}
|
|
|