fsfw-example-hosted/bsp_hosted/fsfwconfig/pollingsequence/pollingSequenceFactory.h

16 lines
440 B
C
Raw Normal View History

2021-06-08 13:36:08 +02:00
#ifndef POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
#define POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
2022-05-05 20:55:48 +02:00
#include "OBSWConfig.h"
2021-06-08 13:36:08 +02:00
class FixedTimeslotTaskIF;
namespace pst {
2022-05-05 20:55:48 +02:00
ReturnValue_t pollingSequenceExamples(FixedTimeslotTaskIF* thisSequence);
2021-06-08 13:36:08 +02:00
ReturnValue_t pollingSequenceDevices(FixedTimeslotTaskIF* thisSequence);
2022-05-05 20:55:48 +02:00
} // namespace pst
2021-06-08 13:36:08 +02:00
#endif /* POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_ */