26 lines
673 B
C++
26 lines
673 B
C++
#include "PollingSequenceFactory.h"
|
|
|
|
#include <fsfw/serviceinterface/ServiceInterfaceStream.h>
|
|
#include <fsfw/devicehandlers/DeviceHandlerIF.h>
|
|
#include <fsfw/tasks/FixedTimeslotTaskIF.h>
|
|
|
|
ReturnValue_t pst::pollingSequenceInitDefault(
|
|
FixedTimeslotTaskIF *thisSequence) {
|
|
/* Length of a communication cycle */
|
|
uint32_t length = thisSequence->getPeriodMs();
|
|
|
|
/* Add polling sequence table here */
|
|
|
|
if (thisSequence->checkSequence() == returnvalue::OK) {
|
|
return returnvalue::OK;
|
|
}
|
|
else {
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
sif::error << "pst::pollingSequenceInitDefault: Sequence invalid!"
|
|
<< std::endl;
|
|
#endif
|
|
return returnvalue::FAILED;
|
|
}
|
|
}
|
|
|