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
|
|
|
|
2021-02-01 11:17:20 +01: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>
|
2021-02-01 11:17:20 +01:00
|
|
|
#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-02-14 13:07:05 +01:00
|
|
|
#include <linux/gpio/LinuxLibgpioIF.h>
|
|
|
|
#include <linux/gpio/GpioCookie.h>
|
2020-12-29 13:59:31 +01:00
|
|
|
|
2021-02-14 13:07:05 +01:00
|
|
|
#if TEST_LIBGPIOD == 1
|
2021-02-14 11:03:53 +01:00
|
|
|
#include "LibgpiodTest.h"
|
2021-02-14 09:25:40 +01:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2021-02-14 09:25:40 +01:00
|
|
|
#if TE0720 == 0
|
|
|
|
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);
|
2020-12-29 13:59:31 +01:00
|
|
|
/* Device Handler */
|
2021-02-14 09:25:40 +01:00
|
|
|
P60DockHandler* p60dockhandler = new P60DockHandler(objects::P60DOCK_HANDLER, objects::CSP_COM_IF, p60DockCspCookie);
|
|
|
|
PDU1Handler* pdu1handler = new PDU1Handler(objects::PDU1_HANDLER, objects::CSP_COM_IF, pdu1CspCookie);
|
|
|
|
PDU2Handler* pdu2handler = new PDU2Handler(objects::PDU2_HANDLER, objects::CSP_COM_IF, pdu2CspCookie);
|
|
|
|
ACUHandler* acuhandler = 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-02-14 09:25:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting PCDU devices to mode normal immediately after start up because PCDU is always
|
|
|
|
* running.
|
|
|
|
*/
|
|
|
|
p60dockhandler->setModeNormal();
|
|
|
|
pdu1handler->setModeNormal();
|
|
|
|
pdu2handler->setModeNormal();
|
|
|
|
acuhandler->setModeNormal();
|
|
|
|
#endif
|
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-02-01 11:17:20 +01:00
|
|
|
GpioCookie* gpioCookie = new GpioCookie;
|
2021-02-14 11:03:53 +01:00
|
|
|
new LinuxLibgpioIF(objects::GPIO_IF);
|
|
|
|
#if TE0720 == 0
|
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-14 12:35:08 +01:00
|
|
|
std::string("Heater0"), gpio::OUT, 0);
|
2021-02-01 11:17:20 +01:00
|
|
|
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-14 12:35:08 +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-14 12:35:08 +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-14 12:35:08 +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-14 12:35:08 +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-14 12:35:08 +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-14 12:35:08 +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-14 12:35:08 +01:00
|
|
|
std::string("Heater7"), gpio::OUT, 0);
|
2021-02-12 15:24:37 +01:00
|
|
|
gpioCookie->addGpio(gpioIds::HEATER_7, gpioConfigHeater7);
|
|
|
|
|
2021-02-14 11:03:53 +01:00
|
|
|
new HeaterHandler(objects::HEATER_HANDLER, objects::GPIO_IF, gpioCookie, objects::PCDU_HANDLER,
|
|
|
|
pcduSwitches::TCS_BOARD_8V_HEATER_IN);
|
2021-01-23 17:22:40 +01:00
|
|
|
#endif
|
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);
|
2021-02-14 09:25:40 +01:00
|
|
|
|
|
|
|
#if TE0720 == 1 && TEST_LIBGPIOD == 1
|
2021-02-14 11:03:53 +01:00
|
|
|
/* Configure MIO0 as input */
|
|
|
|
GpioConfig_t gpioConfigMio0(std::string("gpiochip0"), 0,
|
2021-02-14 12:35:08 +01:00
|
|
|
std::string("MIO0"), gpio::IN, 0);
|
2021-02-14 11:03:53 +01:00
|
|
|
gpioCookie->addGpio(gpioIds::Test_ID, gpioConfigMio0);
|
|
|
|
new LibgpiodTest(objects::LIBGPIOD_TEST, objects::GPIO_IF, gpioCookie);
|
|
|
|
#elif TE0720 == 1
|
|
|
|
// Configuration for MIO0 on TE0720-03-1CFA
|
|
|
|
GpioConfig_t gpioConfigForDummyHeater(std::string("gpiochip0"), 0,
|
2021-02-14 12:35:08 +01:00
|
|
|
std::string("Heater0"), gpio::OUT, 0);
|
2021-02-14 11:03:53 +01:00
|
|
|
gpioCookie->addGpio(gpioIds::HEATER_0, gpioConfigForDummyHeater);
|
|
|
|
new HeaterHandler(objects::HEATER_HANDLER, objects::GPIO_IF, gpioCookie, objects::PCDU_HANDLER,
|
|
|
|
pcduSwitches::TCS_BOARD_8V_HEATER_IN);
|
2021-02-14 09:25:40 +01:00
|
|
|
#endif
|
2020-09-30 17:17:01 +02:00
|
|
|
}
|