eive-obsw/bsp_q7s/ObjectFactory.cpp

111 lines
4.1 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
2020-11-20 18:27:07 +01:00
#include <mission/core/GenericFactory.h>
2020-12-29 13:59:31 +01:00
#include <mission/devices/GomspaceDeviceHandler.h>
2021-01-08 09:34:43 +01:00
#include <mission/devices/Tmp1075Handler.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-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"));
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 */
new GomspaceDeviceHandler(objects::P60DOCK_HANDLER, objects::CSP_COM_IF,
p60DockCspCookie, P60Dock::MAX_CONFIGTABLE_ADDRESS,
P60Dock::MAX_HKTABLE_ADDRESS);
new GomspaceDeviceHandler(objects::PDU1_HANDLER, objects::CSP_COM_IF,
pdu1CspCookie, PDU::MAX_CONFIGTABLE_ADDRESS,
PDU::MAX_HKTABLE_ADDRESS);
new GomspaceDeviceHandler(objects::PDU2_HANDLER, objects::CSP_COM_IF,
pdu2CspCookie, PDU::MAX_CONFIGTABLE_ADDRESS,
PDU::MAX_HKTABLE_ADDRESS);
new GomspaceDeviceHandler(objects::ACU_HANDLER, objects::CSP_COM_IF,
acuCspCookie, ACU::MAX_CONFIGTABLE_ADDRESS,
ACU::MAX_HKTABLE_ADDRESS);
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;
#if TE0720 == 1
// Configuration for MIO0 on TE0720-03-1CFA
GpioConfig_t gpioConfigForDummyHeater(std::string("gpiochip0"), 0,
std::string("Heater1"), Gpio::OUT);
gpioCookie.add(gpioIds::HEATER_1, gpioConfigForDummyHeater);
#else
#endif
LinuxLibgpioIF linuxLibgpioIF = new LinuxLibgpioIF(objects::GPIO_IF);
new HeaterHandler(objects::HEATER_HANDLER, objects::GPIO_IF, );
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);
}