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

16 lines
416 B
C
Raw Normal View History

2021-06-08 13:36:08 +02:00
#ifndef POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
#define POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
2022-09-07 17:40:41 +02:00
#include <fsfw/retval.h>
2021-06-08 13:36:08 +02:00
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_ */