fsfw-example-hosted/bsp_hosted/fsfwconfig/pollingsequence/pollingSequenceFactory.h
Robin Mueller d2337a769c
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
apply auto-formatter
2022-05-05 20:55:48 +02:00

16 lines
440 B
C++

#ifndef POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
#define POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
#include "OBSWConfig.h"
class FixedTimeslotTaskIF;
namespace pst {
ReturnValue_t pollingSequenceExamples(FixedTimeslotTaskIF* thisSequence);
ReturnValue_t pollingSequenceDevices(FixedTimeslotTaskIF* thisSequence);
} // namespace pst
#endif /* POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_ */