fsfw-example-stm32h7-freertos/bsp_stm32h7_freertos/fsfwconfig/pollingsequence/pollingSequenceFactory.h

16 lines
507 B
C
Raw Normal View History

2021-07-12 21:50:48 +02:00
#ifndef POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
#define POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_
2021-07-12 23:33:05 +02:00
#include "OBSWConfig.h"
2021-07-13 10:23:17 +02:00
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
2021-07-12 21:50:48 +02:00
class FixedTimeslotTaskIF;
namespace pst {
2021-07-13 10:23:17 +02:00
ReturnValue_t pstPeripheralsTest(FixedTimeslotTaskIF *thisSequence);
2021-07-12 21:50:48 +02:00
ReturnValue_t pollingSequenceExamples(FixedTimeslotTaskIF *thisSequence);
2022-05-22 15:30:38 +02:00
ReturnValue_t pollingSequenceDevices(FixedTimeslotTaskIF *thisSequence);
} // namespace pst
2021-07-12 21:50:48 +02:00
#endif /* POLLINGSEQUENCE_POLLINGSEQUENCFACTORY_H_ */