2022-05-11 01:48:26 +02:00
|
|
|
#include "OBSWConfig.h"
|
|
|
|
#include "bsp_q7s/core/CoreController.h"
|
|
|
|
#include "bsp_q7s/core/ObjectFactory.h"
|
|
|
|
#include "busConf.h"
|
|
|
|
#include "commonObjects.h"
|
|
|
|
#include "devConf.h"
|
|
|
|
#include "fsfw_hal/linux/gpio/LinuxLibgpioIF.h"
|
|
|
|
#include "linux/ObjectFactory.h"
|
|
|
|
#include "linux/callbacks/gpioCallbacks.h"
|
|
|
|
#include "mission/core/GenericFactory.h"
|
|
|
|
|
|
|
|
void ObjectFactory::produce(void* args) {
|
|
|
|
ObjectFactory::setStatics();
|
2022-05-12 19:12:12 +02:00
|
|
|
HealthTableIF* healthTable = nullptr;
|
|
|
|
ObjectFactory::produceGenericObjects(&healthTable);
|
2022-05-11 01:48:26 +02:00
|
|
|
|
|
|
|
LinuxLibgpioIF* gpioComIF = nullptr;
|
|
|
|
UartComIF* uartComIF = nullptr;
|
|
|
|
SpiComIF* spiMainComIF = nullptr;
|
|
|
|
I2cComIF* i2cComIF = nullptr;
|
|
|
|
PowerSwitchIF* pwrSwitcher = nullptr;
|
|
|
|
SpiComIF* spiRwComIF = nullptr;
|
|
|
|
createCommunicationInterfaces(&gpioComIF, &uartComIF, &spiMainComIF, &i2cComIF, &spiRwComIF);
|
|
|
|
createTmpComponents();
|
|
|
|
new CoreController(objects::CORE_CONTROLLER);
|
|
|
|
|
|
|
|
gpioCallbacks::disableAllDecoder(gpioComIF);
|
|
|
|
createPcduComponents(gpioComIF, &pwrSwitcher);
|
|
|
|
createRadSensorComponent(gpioComIF);
|
|
|
|
createSunSensorComponents(gpioComIF, spiMainComIF, pwrSwitcher, q7s::SPI_DEFAULT_DEV);
|
|
|
|
|
|
|
|
#if OBSW_ADD_ACS_BOARD == 1
|
|
|
|
createAcsBoardComponents(gpioComIF, uartComIF, pwrSwitcher);
|
|
|
|
#endif
|
2022-05-12 19:12:12 +02:00
|
|
|
createHeaterComponents(gpioComIF, pwrSwitcher, healthTable);
|
2022-05-11 01:48:26 +02:00
|
|
|
createSolarArrayDeploymentComponents();
|
|
|
|
createPlPcduComponents(gpioComIF, spiMainComIF, pwrSwitcher);
|
|
|
|
#if OBSW_ADD_SYRLINKS == 1
|
|
|
|
createSyrlinksComponents(pwrSwitcher);
|
|
|
|
#endif /* OBSW_ADD_SYRLINKS == 1 */
|
2022-05-12 12:21:47 +02:00
|
|
|
createRtdComponents(q7s::SPI_DEFAULT_DEV, gpioComIF, pwrSwitcher, spiMainComIF);
|
2022-05-11 01:48:26 +02:00
|
|
|
createPayloadComponents(gpioComIF);
|
|
|
|
|
|
|
|
#if OBSW_ADD_MGT == 1
|
|
|
|
createImtqComponents(pwrSwitcher);
|
|
|
|
#endif
|
|
|
|
createReactionWheelComponents(gpioComIF, pwrSwitcher);
|
|
|
|
|
|
|
|
#if OBSW_ADD_BPX_BATTERY_HANDLER == 1
|
|
|
|
createBpxBatteryComponent();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if OBSW_ADD_STAR_TRACKER == 1
|
|
|
|
createStrComponents(pwrSwitcher);
|
|
|
|
#endif /* OBSW_ADD_STAR_TRACKER == 1 */
|
|
|
|
#if OBSW_USE_CCSDS_IP_CORE == 1
|
|
|
|
createCcsdsComponents(gpioComIF);
|
|
|
|
#endif /* OBSW_USE_CCSDS_IP_CORE == 1 */
|
|
|
|
/* Test Task */
|
|
|
|
#if OBSW_ADD_TEST_CODE == 1
|
|
|
|
createTestComponents(gpioComIF);
|
|
|
|
#endif /* OBSW_ADD_TEST_CODE == 1 */
|
|
|
|
|
|
|
|
createMiscComponents();
|
|
|
|
}
|