/* * PollingSequenceCentroidFunction.cpp * * Created on: May 1, 2021 * Author: mala */ #include #include #include #include #include "../../../bsp_linux/fsfwconfig/objects/systemObjectList.h" #include "../../../bsp_linux/fsfwconfig/OBSWConfig.h" #include "PollingSequenceArduino.h" ReturnValue_t pollingSequenceArduinoFunction( FixedTimeslotTaskIF* thisSequence){ uint32_t length = thisSequence->getPeriodMs(); thisSequence->addSlot(objects::ARDUINO_DEVICE_HANDLER, length * 0, 0); thisSequence->addSlot(objects::ARDUINO_DEVICE_HANDLER, length * 0.8, 1); thisSequence->addSlot(objects::ARDUINO_DEVICE_HANDLER, length * 0.8, 2); thisSequence->addSlot(objects::ARDUINO_DEVICE_HANDLER, length * 0.8, 3); if (thisSequence->checkSequence() == HasReturnvaluesIF::RETURN_OK) { return HasReturnvaluesIF::RETURN_OK; } else { sif::error << "pollingSequenceArduinoFunction::initialize has errors!" << std::endl; return HasReturnvaluesIF::RETURN_FAILED; } }