31 lines
963 B
C++
31 lines
963 B
C++
#ifndef BSP_Q7S_OBJECTFACTORY_H_
|
|
#define BSP_Q7S_OBJECTFACTORY_H_
|
|
|
|
class LinuxLibgpioIF;
|
|
class UartComIF;
|
|
class SpiComIF;
|
|
|
|
namespace ObjectFactory {
|
|
|
|
void setStatics();
|
|
void produce(void* args);
|
|
|
|
void createCommunicationInterfaces(LinuxLibgpioIF** gpioComIF, UartComIF** uartComIF,
|
|
SpiComIF** spiComIF);
|
|
void createTmpComponents();
|
|
void createPcduComponents();
|
|
void createRadSensorComponent(LinuxLibgpioIF* gpioComIF);
|
|
void createSunSensorComponents(LinuxLibgpioIF* gpioComIF, SpiComIF* spiComIF);
|
|
void createAcsBoardComponents(LinuxLibgpioIF* gpioComIF, UartComIF* uartComIF);
|
|
void createHeaterComponents();
|
|
void createSolarArrayDeploymentComponents();
|
|
void createSyrlinksComponents();
|
|
void createRtdComponents(LinuxLibgpioIF* gpioComIF);
|
|
void createReactionWheelComponents(LinuxLibgpioIF* gpioComIF);
|
|
void createCcsdsComponents(LinuxLibgpioIF *gpioComIF);
|
|
void createTestComponents(LinuxLibgpioIF* gpioComIF);
|
|
|
|
};
|
|
|
|
#endif /* BSP_Q7S_OBJECTFACTORY_H_ */
|