eive-obsw/bsp_q7s/ObjectFactory.cpp

152 lines
5.9 KiB
C++
Raw Normal View History

2020-09-30 17:17:01 +02:00
#include "ObjectFactory.h"
2020-11-20 18:27:07 +01:00
#include <OBSWConfig.h>
#include <tmtc/apid.h>
2020-12-29 13:59:31 +01:00
#include <devices/addresses.h>
2021-01-23 17:22:40 +01:00
#include <devices/gpioIds.h>
2020-11-20 18:27:07 +01:00
#include <tmtc/pusIds.h>
2020-09-30 17:17:01 +02:00
2020-12-29 13:59:31 +01:00
#include <fsfw/datapoollocal/LocalDataPoolManager.h>
2020-11-20 18:27:07 +01:00
#include <fsfw/tmtcservices/CommandingServiceBase.h>
#include <fsfw/tmtcservices/PusServiceBase.h>
2020-09-30 17:17:01 +02:00
#include <fsfw/osal/linux/TmTcUnixUdpBridge.h>
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
2020-11-20 18:27:07 +01:00
#include <fsfw/osal/linux/TcUnixUdpPollingTask.h>
2020-09-30 17:17:01 +02:00
#include <fsfwconfig/devices/powerSwitcherList.h>
2020-11-20 18:27:07 +01:00
#include <mission/core/GenericFactory.h>
2021-01-28 14:55:21 +01:00
#include <mission/devices/PDU1Handler.h>
#include <mission/devices/PDU2Handler.h>
#include <mission/devices/ACUHandler.h>
#include <mission/devices/PCDUHandler.h>
#include <mission/devices/P60DockHandler.h>
2021-01-08 09:34:43 +01:00
#include <mission/devices/Tmp1075Handler.h>
#include <mission/devices/HeaterHandler.h>
2020-12-29 13:59:31 +01:00
#include <mission/devices/devicedefinitions/GomSpacePackets.h>
#include <mission/devices/devicedefinitions/GomspaceDefinitions.h>
2020-11-20 18:27:07 +01:00
#include <mission/utility/TmFunnel.h>
2020-09-30 17:17:01 +02:00
2020-12-29 13:59:31 +01:00
#include <bsp_q7s/comIF/cookies/CspCookie.h>
2021-01-08 09:34:43 +01:00
#include <bsp_q7s/comIF/cookies/I2cCookie.h>
2020-12-29 13:59:31 +01:00
#include <bsp_q7s/comIF/CspComIF.h>
2021-01-08 09:34:43 +01:00
#include <bsp_q7s/comIF/I2cComIF.h>
2021-01-23 17:22:40 +01:00
#include <bsp_q7s/gpio/LinuxLibgpioIF.h>
#include <bsp_q7s/gpio/cookies/GpioCookie.h>
2020-12-29 13:59:31 +01:00
2020-11-20 18:27:07 +01:00
void Factory::setStaticFrameworkObjectIds() {
2020-09-30 17:17:01 +02:00
PusServiceBase::packetSource = objects::PUS_PACKET_DISTRIBUTOR;
PusServiceBase::packetDestination = objects::TM_FUNNEL;
CommandingServiceBase::defaultPacketSource = objects::PUS_PACKET_DISTRIBUTOR;
CommandingServiceBase::defaultPacketDestination = objects::TM_FUNNEL;
TmFunnel::downlinkDestination = objects::UDP_BRIDGE;
// No storage object for now.
TmFunnel::storageDestination = objects::NO_OBJECT;
2020-12-29 02:16:39 +01:00
LocalDataPoolManager::defaultHkDestination = objects::NO_OBJECT;
2020-09-30 17:17:01 +02:00
VerificationReporter::messageReceiver = objects::PUS_SERVICE_1_VERIFICATION;
TmPacketStored::timeStamperId = objects::TIME_STAMPER;
}
void ObjectFactory::produce(){
Factory::setStaticFrameworkObjectIds();
2020-11-20 18:27:07 +01:00
ObjectFactory::produceGenericObjects();
2020-09-30 17:17:01 +02:00
2020-12-29 13:59:31 +01:00
/* Cookies */
CspCookie* p60DockCspCookie = new CspCookie(P60Dock::MAX_REPLY_LENGTH,
addresses::P60DOCK);
CspCookie* pdu1CspCookie = new CspCookie(PDU::MAX_REPLY_LENGTH,
addresses::PDU1);
CspCookie* pdu2CspCookie = new CspCookie(PDU::MAX_REPLY_LENGTH,
addresses::PDU2);
CspCookie* acuCspCookie = new CspCookie(ACU::MAX_REPLY_LENGTH,
addresses::ACU);
2021-01-28 14:55:21 +01:00
#if TE0720 == 1
2021-01-08 09:34:43 +01:00
I2cCookie* i2cCookieTmp1075tcs1 = new I2cCookie(addresses::TMP1075_TCS_1,
2021-01-16 12:22:17 +01:00
TMP1075::MAX_REPLY_LENGTH, std::string("/dev/i2c-0"));
2021-01-12 11:17:36 +01:00
I2cCookie* i2cCookieTmp1075tcs2 = new I2cCookie(addresses::TMP1075_TCS_2,
2021-01-16 12:22:17 +01:00
TMP1075::MAX_REPLY_LENGTH, std::string("/dev/i2c-0"));
2021-01-28 14:55:21 +01:00
#else
I2cCookie* i2cCookieTmp1075tcs1 = new I2cCookie(addresses::TMP1075_TCS_1,
TMP1075::MAX_REPLY_LENGTH, std::string("/dev/i2c-1"));
I2cCookie* i2cCookieTmp1075tcs2 = new I2cCookie(addresses::TMP1075_TCS_2,
TMP1075::MAX_REPLY_LENGTH, std::string("/dev/i2c-1"));
#endif
2020-12-29 13:59:31 +01:00
/* Communication interfaces */
new CspComIF(objects::CSP_COM_IF);
2021-01-08 09:34:43 +01:00
new I2cComIF(objects::I2C_COM_IF);
2020-12-29 13:59:31 +01:00
/* Device Handler */
2021-02-06 11:57:45 +01:00
new P60DockHandler(objects::P60DOCK_HANDLER, objects::CSP_COM_IF, p60DockCspCookie);
new PDU1Handler(objects::PDU1_HANDLER, objects::CSP_COM_IF, pdu1CspCookie);
new PDU2Handler(objects::PDU2_HANDLER, objects::CSP_COM_IF, pdu2CspCookie);
new ACUHandler(objects::ACU_HANDLER, objects::CSP_COM_IF, acuCspCookie);
2021-02-08 11:48:58 +01:00
new PCDUHandler(objects::PCDU_HANDLER, 50);
2021-01-16 12:22:17 +01:00
/* Temperature sensors */
2021-01-08 09:34:43 +01:00
Tmp1075Handler* tmp1075Handler_1 = new Tmp1075Handler(
objects::TMP1075_HANDLER_1, objects::I2C_COM_IF,
i2cCookieTmp1075tcs1);
tmp1075Handler_1->setStartUpImmediately();
2021-01-12 11:17:36 +01:00
Tmp1075Handler* tmp1075Handler_2 = new Tmp1075Handler(
objects::TMP1075_HANDLER_2, objects::I2C_COM_IF,
i2cCookieTmp1075tcs2);
tmp1075Handler_2->setStartUpImmediately();
2021-01-08 09:34:43 +01:00
2021-01-23 17:22:40 +01:00
/* Thermal objects */
GpioCookie* gpioCookie = new GpioCookie;
2021-01-23 17:22:40 +01:00
#if TE0720 == 1
// Configuration for MIO0 on TE0720-03-1CFA
GpioConfig_t gpioConfigForDummyHeater(std::string("gpiochip0"), 0,
2021-02-12 21:23:35 +01:00
std::string("Heater0"), Gpio::OUT, 0);
gpioCookie->addGpio(gpioIds::HEATER_0, gpioConfigForDummyHeater);
2021-01-23 17:22:40 +01:00
#else
2021-02-12 12:52:40 +01:00
/* Pin H2-11 on stack connector */
2021-02-12 14:18:34 +01:00
GpioConfig_t gpioConfigHeater0(std::string("gpiochip7"), 18,
2021-02-12 21:23:35 +01:00
std::string("Heater0"), Gpio::OUT, 0);
gpioCookie->addGpio(gpioIds::HEATER_0, gpioConfigHeater0);
2021-02-12 15:24:37 +01:00
/* Pin H2-12 on stack connector */
2021-02-12 14:18:34 +01:00
GpioConfig_t gpioConfigHeater1(std::string("gpiochip7"), 14,
2021-02-12 21:23:35 +01:00
std::string("Heater1"), Gpio::OUT, 0);
2021-02-12 14:18:34 +01:00
gpioCookie->addGpio(gpioIds::HEATER_1, gpioConfigHeater1);
2021-02-12 15:24:37 +01:00
/* Pin H2-13 on stack connector */
GpioConfig_t gpioConfigHeater2(std::string("gpiochip7"), 20,
2021-02-12 21:23:35 +01:00
std::string("Heater2"), Gpio::OUT, 0);
2021-02-12 15:24:37 +01:00
gpioCookie->addGpio(gpioIds::HEATER_2, gpioConfigHeater2);
GpioConfig_t gpioConfigHeater3(std::string("gpiochip7"), 16,
2021-02-12 21:23:35 +01:00
std::string("Heater3"), Gpio::OUT, 0);
2021-02-12 15:24:37 +01:00
gpioCookie->addGpio(gpioIds::HEATER_3, gpioConfigHeater3);
GpioConfig_t gpioConfigHeater4(std::string("gpiochip7"), 24,
2021-02-12 21:23:35 +01:00
std::string("Heater4"), Gpio::OUT, 0);
2021-02-12 15:24:37 +01:00
gpioCookie->addGpio(gpioIds::HEATER_4, gpioConfigHeater4);
GpioConfig_t gpioConfigHeater5(std::string("gpiochip7"), 26,
2021-02-12 21:23:35 +01:00
std::string("Heater5"), Gpio::OUT, 0);
2021-02-12 15:24:37 +01:00
gpioCookie->addGpio(gpioIds::HEATER_5, gpioConfigHeater5);
GpioConfig_t gpioConfigHeater6(std::string("gpiochip7"), 22,
2021-02-12 21:23:35 +01:00
std::string("Heater6"), Gpio::OUT, 0);
2021-02-12 15:24:37 +01:00
gpioCookie->addGpio(gpioIds::HEATER_6, gpioConfigHeater6);
GpioConfig_t gpioConfigHeater7(std::string("gpiochip7"), 28,
2021-02-12 21:23:35 +01:00
std::string("Heater7"), Gpio::OUT, 0);
2021-02-12 15:24:37 +01:00
gpioCookie->addGpio(gpioIds::HEATER_7, gpioConfigHeater7);
2021-01-23 17:22:40 +01:00
#endif
new LinuxLibgpioIF(objects::GPIO_IF);
new HeaterHandler(objects::HEATER_HANDLER, objects::GPIO_IF, gpioCookie, objects::PCDU_HANDLER,
pcduSwitches::TCS_BOARD_8V_HEATER_IN);
2020-12-29 13:59:31 +01:00
2020-09-30 17:17:01 +02:00
new TmTcUnixUdpBridge(objects::UDP_BRIDGE,
objects::CCSDS_PACKET_DISTRIBUTOR,
objects::TM_STORE, objects::TC_STORE);
new TcUnixUdpPollingTask(objects::UDP_POLLING_TASK, objects::UDP_BRIDGE);
}