2020-12-29 13:59:31 +01:00
|
|
|
#ifndef BSP_Q7S_OBJECTFACTORY_H_
|
|
|
|
#define BSP_Q7S_OBJECTFACTORY_H_
|
|
|
|
|
2021-07-19 12:44:43 +02:00
|
|
|
class LinuxLibgpioIF;
|
|
|
|
|
2020-12-29 13:59:31 +01:00
|
|
|
namespace ObjectFactory {
|
2021-07-19 12:44:43 +02:00
|
|
|
|
2021-02-14 14:59:43 +01:00
|
|
|
void setStatics();
|
2021-06-08 16:45:25 +02:00
|
|
|
void produce(void* args);
|
2021-07-19 12:44:43 +02:00
|
|
|
|
|
|
|
void createCommunicationInterfaces(LinuxLibgpioIF** gpioComIF);
|
|
|
|
void createTmpComponents();
|
|
|
|
void createPcduComponents();
|
|
|
|
void createRadSensorComponent(LinuxLibgpioIF* gpioComIF);
|
|
|
|
void createSunSensorComponents(LinuxLibgpioIF* gpioComIF);
|
|
|
|
void createAcsBoardComponents(LinuxLibgpioIF* gpioComIF);
|
|
|
|
void createHeaterComponents();
|
|
|
|
void createSolarArrayDeploymentComponents();
|
|
|
|
void createSyrlinksComponents();
|
|
|
|
void createRtdComponents(LinuxLibgpioIF* gpioComIF);
|
|
|
|
void createReactionWheelComponents(LinuxLibgpioIF* gpioComIF);
|
|
|
|
void createTestComponents();
|
|
|
|
|
2020-12-29 13:59:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* BSP_Q7S_OBJECTFACTORY_H_ */
|