eive-obsw/bsp_q7s/core/ObjectFactory.cpp

959 lines
45 KiB
C++
Raw Normal View History

#include "ObjectFactory.h"
2022-04-28 15:29:57 +02:00
2022-11-10 15:39:08 +01:00
#include <fsfw/subsystem/Subsystem.h>
#include <mission/system/objects/CamSwitcher.h>
2021-05-17 16:53:06 +02:00
#include "OBSWConfig.h"
2021-07-19 12:44:43 +02:00
#include "bsp_q7s/boardtest/Q7STestTask.h"
2022-01-17 13:48:55 +01:00
#include "bsp_q7s/callbacks/gnssCallback.h"
2022-01-19 18:11:35 +01:00
#include "bsp_q7s/callbacks/pcduSwitchCb.h"
2022-03-26 16:38:42 +01:00
#include "bsp_q7s/callbacks/q7sGpioCallbacks.h"
2022-01-17 13:48:55 +01:00
#include "bsp_q7s/callbacks/rwSpiCallback.h"
2021-08-17 17:11:59 +02:00
#include "busConf.h"
2022-01-17 13:48:55 +01:00
#include "ccsdsConfig.h"
#include "devConf.h"
2021-05-17 16:53:06 +02:00
#include "devices/addresses.h"
#include "devices/gpioIds.h"
#include "devices/powerSwitcherList.h"
2022-09-16 12:28:39 +02:00
#include "eive/definitions.h"
2022-03-26 16:38:42 +01:00
#include "fsfw/ipc/QueueFactory.h"
#include "linux/ObjectFactory.h"
2022-02-24 12:02:23 +01:00
#include "linux/boardtest/I2cTestClass.h"
#include "linux/boardtest/SpiTestClass.h"
#include "linux/boardtest/UartTestClass.h"
2022-03-26 16:38:42 +01:00
#include "linux/callbacks/gpioCallbacks.h"
2021-07-19 12:44:43 +02:00
#include "linux/csp/CspComIF.h"
2022-03-04 15:26:36 +01:00
#include "linux/devices/GPSHyperionLinuxController.h"
2022-10-10 17:40:30 +02:00
#include "linux/devices/ScexUartReader.h"
2022-03-27 13:07:18 +02:00
#include "linux/devices/devicedefinitions/PlocMPSoCDefinitions.h"
2022-03-04 15:26:36 +01:00
#include "linux/devices/devicedefinitions/StarTrackerDefinitions.h"
2022-03-27 13:07:18 +02:00
#include "linux/devices/ploc/PlocMPSoCHandler.h"
#include "linux/devices/ploc/PlocMPSoCHelper.h"
#include "linux/devices/ploc/PlocMemoryDumper.h"
#include "linux/devices/ploc/PlocSupervisorHandler.h"
2022-03-04 15:26:36 +01:00
#include "linux/devices/startracker/StarTrackerHandler.h"
#include "linux/devices/startracker/StrHelper.h"
#include "linux/ipcore/AxiPtmeConfig.h"
#include "linux/ipcore/PapbVcInterface.h"
#include "linux/ipcore/PdecHandler.h"
#include "linux/ipcore/Ptme.h"
#include "linux/ipcore/PtmeConfig.h"
2022-08-26 14:28:06 +02:00
#include "mission/csp/CspCookie.h"
2022-04-28 15:29:57 +02:00
#include "mission/system/fdir/AcsBoardFdir.h"
#include "mission/system/fdir/GomspacePowerFdir.h"
2022-04-28 15:29:57 +02:00
#include "mission/system/fdir/RtdFdir.h"
#include "mission/system/fdir/SusFdir.h"
#include "mission/system/fdir/SyrlinksFdir.h"
2022-10-10 17:40:30 +02:00
#include "mission/system/objects/AcsSubsystem.h"
#include "mission/system/objects/RwAssembly.h"
2022-04-25 10:36:03 +02:00
#include "mission/system/objects/TcsBoardAssembly.h"
2022-04-25 10:50:59 +02:00
#include "mission/system/tree/acsModeTree.h"
2022-11-10 15:39:08 +01:00
#include "mission/system/tree/payloadModeTree.h"
2022-02-24 12:02:23 +01:00
#include "tmtc/pusIds.h"
#if OBSW_TEST_LIBGPIOD == 1
#include "linux/boardtest/LibgpiodTest.h"
#endif
2022-10-20 10:32:17 +02:00
#include <mission/devices/ImtqHandler.h>
2022-02-24 12:02:23 +01:00
#include <sstream>
2022-01-17 13:48:55 +01:00
#include "fsfw/datapoollocal/LocalDataPoolManager.h"
#include "fsfw/tmtcpacket/pus/tm.h"
#include "fsfw/tmtcservices/CommandingServiceBase.h"
#include "fsfw/tmtcservices/PusServiceBase.h"
#include "fsfw_hal/common/gpio/GpioCookie.h"
2022-03-28 10:10:01 +02:00
#include "fsfw_hal/common/gpio/gpioDefinitions.h"
2022-01-17 13:48:55 +01:00
#include "fsfw_hal/devicehandlers/GyroL3GD20Handler.h"
#include "fsfw_hal/devicehandlers/MgmLIS3MDLHandler.h"
#include "fsfw_hal/devicehandlers/MgmRM3100Handler.h"
#include "fsfw_hal/linux/gpio/LinuxLibgpioIF.h"
#include "fsfw_hal/linux/i2c/I2cComIF.h"
#include "fsfw_hal/linux/i2c/I2cCookie.h"
2022-11-10 18:07:59 +01:00
#include "fsfw_hal/linux/serial/SerialComIF.h"
#include "fsfw_hal/linux/serial/SerialCookie.h"
2022-01-17 13:48:55 +01:00
#include "fsfw_hal/linux/spi/SpiComIF.h"
#include "fsfw_hal/linux/spi/SpiCookie.h"
2021-07-19 12:44:43 +02:00
#include "mission/core/GenericFactory.h"
#include "mission/devices/ACUHandler.h"
2022-02-02 17:36:40 +01:00
#include "mission/devices/BpxBatteryHandler.h"
#include "mission/devices/GyroADIS1650XHandler.h"
2022-01-17 13:48:55 +01:00
#include "mission/devices/HeaterHandler.h"
#include "mission/devices/Max31865PT1000Handler.h"
#include "mission/devices/P60DockHandler.h"
#include "mission/devices/PCDUHandler.h"
#include "mission/devices/PDU1Handler.h"
#include "mission/devices/PDU2Handler.h"
2022-03-04 15:26:36 +01:00
#include "mission/devices/PayloadPcduHandler.h"
2021-07-19 12:44:43 +02:00
#include "mission/devices/RadiationSensorHandler.h"
#include "mission/devices/RwHandler.h"
2022-02-27 15:48:42 +01:00
#include "mission/devices/SolarArrayDeploymentHandler.h"
2022-01-17 13:48:55 +01:00
#include "mission/devices/SyrlinksHkHandler.h"
#include "mission/devices/Tmp1075Handler.h"
2021-07-19 12:44:43 +02:00
#include "mission/devices/devicedefinitions/GomspaceDefinitions.h"
#include "mission/devices/devicedefinitions/Max31865Definitions.h"
#include "mission/devices/devicedefinitions/RadSensorDefinitions.h"
#include "mission/devices/devicedefinitions/RwDefinitions.h"
2022-01-17 13:48:55 +01:00
#include "mission/devices/devicedefinitions/SyrlinksDefinitions.h"
2022-03-04 15:26:36 +01:00
#include "mission/devices/devicedefinitions/payloadPcduDefinitions.h"
2022-04-25 10:36:03 +02:00
#include "mission/system/objects/AcsBoardAssembly.h"
#include "mission/tmtc/CcsdsIpCoreHandler.h"
#include "mission/tmtc/TmFunnelHandler.h"
2021-09-26 08:29:30 +02:00
#include "mission/tmtc/VirtualChannel.h"
2020-09-30 17:17:01 +02:00
2022-05-25 10:59:20 +02:00
ResetArgs RESET_ARGS_GNSS;
2021-07-19 12:44:43 +02:00
2020-11-20 18:27:07 +01:00
void Factory::setStaticFrameworkObjectIds() {
2022-08-15 18:34:26 +02:00
PusServiceBase::PUS_DISTRIBUTOR = objects::PUS_PACKET_DISTRIBUTOR;
2022-10-21 14:49:54 +02:00
PusServiceBase::PACKET_DESTINATION = objects::PUS_TM_FUNNEL;
2020-09-30 17:17:01 +02:00
2022-01-17 13:48:55 +01:00
CommandingServiceBase::defaultPacketSource = objects::PUS_PACKET_DISTRIBUTOR;
2022-10-21 14:49:54 +02:00
CommandingServiceBase::defaultPacketDestination = objects::PUS_TM_FUNNEL;
2020-09-30 17:17:01 +02:00
2022-05-27 16:24:41 +02:00
#if OBSW_Q7S_EM == 1
2022-05-27 13:44:40 +02:00
DeviceHandlerBase::powerSwitcherId = objects::NO_OBJECT;
#else
DeviceHandlerBase::powerSwitcherId = objects::PCDU_HANDLER;
2022-05-27 16:24:41 +02:00
#endif /* OBSW_Q7S_EM == 1 */
2022-05-27 13:44:40 +02:00
2022-01-17 13:48:55 +01:00
LocalDataPoolManager::defaultHkDestination = objects::PUS_SERVICE_3_HOUSEKEEPING;
2020-12-29 02:16:39 +01:00
2022-08-15 18:34:26 +02:00
VerificationReporter::DEFAULT_RECEIVER = objects::PUS_SERVICE_1_VERIFICATION;
2020-09-30 17:17:01 +02:00
}
2022-05-25 10:25:40 +02:00
void ObjectFactory::setStatics() { Factory::setStaticFrameworkObjectIds(); }
2021-07-19 12:44:43 +02:00
void ObjectFactory::createTmpComponents() {
2022-01-17 13:48:55 +01:00
I2cCookie* i2cCookieTmp1075tcs1 =
new I2cCookie(addresses::TMP1075_TCS_1, TMP1075::MAX_REPLY_LENGTH, q7s::I2C_DEFAULT_DEV);
I2cCookie* i2cCookieTmp1075tcs2 =
new I2cCookie(addresses::TMP1075_TCS_2, TMP1075::MAX_REPLY_LENGTH, q7s::I2C_DEFAULT_DEV);
2020-12-29 13:59:31 +01:00
2022-01-17 13:48:55 +01:00
/* Temperature sensors */
Tmp1075Handler* tmp1075Handler_1 =
new Tmp1075Handler(objects::TMP1075_HANDLER_1, objects::I2C_COM_IF, i2cCookieTmp1075tcs1);
(void)tmp1075Handler_1;
Tmp1075Handler* tmp1075Handler_2 =
new Tmp1075Handler(objects::TMP1075_HANDLER_2, objects::I2C_COM_IF, i2cCookieTmp1075tcs2);
(void)tmp1075Handler_2;
2021-07-19 12:44:43 +02:00
}
2020-12-29 13:59:31 +01:00
2022-11-10 18:07:59 +01:00
void ObjectFactory::createCommunicationInterfaces(LinuxLibgpioIF** gpioComIF,
SerialComIF** uartComIF, SpiComIF** spiMainComIF,
I2cComIF** i2cComIF, SpiComIF** spiRWComIF) {
if (gpioComIF == nullptr or uartComIF == nullptr or spiMainComIF == nullptr or
spiRWComIF == nullptr) {
2022-01-17 13:48:55 +01:00
sif::error << "ObjectFactory::createCommunicationInterfaces: Invalid passed ComIF pointer"
<< std::endl;
}
*gpioComIF = new LinuxLibgpioIF(objects::GPIO_IF);
/* Communication interfaces */
new CspComIF(objects::CSP_COM_IF);
2022-02-02 17:36:40 +01:00
*i2cComIF = new I2cComIF(objects::I2C_COM_IF);
2022-11-10 18:07:59 +01:00
*uartComIF = new SerialComIF(objects::UART_COM_IF);
2022-10-26 17:11:57 +02:00
*spiMainComIF = new SpiComIF(objects::SPI_MAIN_COM_IF, q7s::SPI_DEFAULT_DEV, **gpioComIF);
*spiRWComIF = new SpiComIF(objects::SPI_RW_COM_IF, q7s::SPI_RW_DEV, **gpioComIF);
2021-07-19 12:44:43 +02:00
}
2020-12-29 13:59:31 +01:00
2022-03-04 16:03:57 +01:00
void ObjectFactory::createPcduComponents(LinuxLibgpioIF* gpioComIF, PowerSwitchIF** pwrSwitcher) {
2022-08-26 14:28:06 +02:00
CspCookie* p60DockCspCookie = new CspCookie(P60Dock::MAX_REPLY_SIZE, addresses::P60DOCK, 500);
CspCookie* pdu1CspCookie = new CspCookie(PDU::MAX_REPLY_SIZE, addresses::PDU1, 500);
CspCookie* pdu2CspCookie = new CspCookie(PDU::MAX_REPLY_SIZE, addresses::PDU2, 500);
CspCookie* acuCspCookie = new CspCookie(ACU::MAX_REPLY_SIZE, addresses::ACU, 500);
2022-04-28 15:58:31 +02:00
auto p60Fdir = new GomspacePowerFdir(objects::P60DOCK_HANDLER);
2022-01-17 13:48:55 +01:00
P60DockHandler* p60dockhandler =
2022-04-28 15:58:31 +02:00
new P60DockHandler(objects::P60DOCK_HANDLER, objects::CSP_COM_IF, p60DockCspCookie, p60Fdir);
auto pdu1Fdir = new GomspacePowerFdir(objects::PDU1_HANDLER);
2022-01-17 13:48:55 +01:00
PDU1Handler* pdu1handler =
2022-04-28 15:58:31 +02:00
new PDU1Handler(objects::PDU1_HANDLER, objects::CSP_COM_IF, pdu1CspCookie, pdu1Fdir);
auto pdu2Fdir = new GomspacePowerFdir(objects::PDU2_HANDLER);
2022-01-17 13:48:55 +01:00
PDU2Handler* pdu2handler =
2022-04-28 15:58:31 +02:00
new PDU2Handler(objects::PDU2_HANDLER, objects::CSP_COM_IF, pdu2CspCookie, pdu2Fdir);
auto acuFdir = new GomspacePowerFdir(objects::ACU_HANDLER);
ACUHandler* acuhandler =
new ACUHandler(objects::ACU_HANDLER, objects::CSP_COM_IF, acuCspCookie, acuFdir);
2022-03-04 16:03:57 +01:00
auto pcduHandler = new PCDUHandler(objects::PCDU_HANDLER, 50);
2022-01-17 13:48:55 +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();
2022-03-04 16:03:57 +01:00
if (pwrSwitcher != nullptr) {
*pwrSwitcher = pcduHandler;
}
2022-04-26 10:37:25 +02:00
#if OBSW_DEBUG_P60DOCK == 1
p60dockhandler->setDebugMode(true);
#endif
#if OBSW_DEBUG_ACU == 1
acuhandler->setDebugMode(true);
#endif
2021-07-19 12:44:43 +02:00
}
2021-04-01 14:06:56 +02:00
2022-10-26 17:11:57 +02:00
ReturnValue_t ObjectFactory::createRadSensorComponent(LinuxLibgpioIF* gpioComIF) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-10-27 09:00:21 +02:00
if (gpioComIF == nullptr) {
return returnvalue::FAILED;
2022-10-26 17:11:57 +02:00
}
2022-01-17 13:48:55 +01:00
GpioCookie* gpioCookieRadSensor = new GpioCookie;
std::stringstream consumer;
consumer << "0x" << std::hex << objects::RAD_SENSOR;
GpiodRegularByLineName* gpio = new GpiodRegularByLineName(
2022-02-28 15:47:34 +01:00
q7s::gpioNames::RAD_SENSOR_CHIP_SELECT, consumer.str(), Direction::OUT, Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieRadSensor->addGpio(gpioIds::CS_RAD_SENSOR, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::ENABLE_RADFET, consumer.str(), Direction::OUT,
Levels::LOW);
2022-02-24 11:47:32 +01:00
gpioCookieRadSensor->addGpio(gpioIds::ENABLE_RADFET, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(gpioCookieRadSensor), "RAD sensor");
2022-01-17 13:48:55 +01:00
SpiCookie* spiCookieRadSensor =
new SpiCookie(addresses::RAD_SENSOR, gpioIds::CS_RAD_SENSOR, RAD_SENSOR::READ_SIZE,
spi::DEFAULT_MAX_1227_MODE, spi::DEFAULT_MAX_1227_SPEED);
2022-05-14 11:34:25 +02:00
spiCookieRadSensor->setMutexParams(MutexIF::TimeoutType::WAITING, spi::RAD_SENSOR_CS_TIMEOUT);
auto radSensor = new RadiationSensorHandler(objects::RAD_SENSOR, objects::SPI_MAIN_COM_IF,
2022-02-24 11:47:32 +01:00
spiCookieRadSensor, gpioComIF);
static_cast<void>(radSensor);
2022-03-17 10:48:35 +01:00
// The radiation sensor ADC is powered by the 5V stack connector which should always be on
2022-02-24 11:47:32 +01:00
radSensor->setStartUpImmediately();
2022-03-17 10:48:35 +01:00
// It's a simple sensor, so just to to normal mode immediately
2022-02-24 11:47:32 +01:00
radSensor->setToGoToNormalModeImmediately();
2022-03-17 10:48:35 +01:00
#if OBSW_DEBUG_RAD_SENSOR == 1
radSensor->enablePeriodicDataPrint(true);
2022-02-24 11:47:32 +01:00
#endif
2022-10-26 17:11:57 +02:00
return returnvalue::OK;
2021-07-19 12:44:43 +02:00
}
2021-07-01 17:27:51 +02:00
2022-11-10 18:07:59 +01:00
void ObjectFactory::createAcsBoardComponents(LinuxLibgpioIF* gpioComIF, SerialComIF* uartComIF,
2022-03-04 16:03:57 +01:00
PowerSwitchIF* pwrSwitcher) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-01-17 13:48:55 +01:00
GpioCookie* gpioCookieAcsBoard = new GpioCookie();
2022-09-29 17:06:19 +02:00
std::vector<std::reference_wrapper<DeviceHandlerBase>> assemblyChildren;
2022-01-17 13:48:55 +01:00
std::stringstream consumer;
GpiodRegularByLineName* gpio = nullptr;
consumer << "0x" << std::hex << objects::GYRO_0_ADIS_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GYRO_0_ADIS_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GYRO_0_ADIS_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GYRO_1_L3G_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GYRO_1_L3G_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GYRO_1_L3G_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GYRO_2_ADIS_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GYRO_2_ADIS_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GYRO_2_ADIS_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GYRO_3_L3G_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GYRO_3_L3G_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GYRO_3_L3G_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::MGM_0_LIS3_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::MGM_0_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::MGM_0_LIS3_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::MGM_1_RM3100_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::MGM_1_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::MGM_1_RM3100_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::MGM_2_LIS3_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::MGM_2_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::MGM_2_LIS3_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::MGM_3_RM3100_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::MGM_3_CS, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::MGM_3_RM3100_CS, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GPS_CONTROLLER;
// GNSS reset pins are active low
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::RESET_GNSS_0, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GNSS_0_NRESET, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GPS_CONTROLLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::RESET_GNSS_1, consumer.str(), Direction::OUT,
Levels::HIGH);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GNSS_1_NRESET, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GYRO_0_ADIS_HANDLER;
// Enable pins must be pulled low for regular operations
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GYRO_0_ENABLE, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GYRO_0_ENABLE, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GYRO_2_ADIS_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GYRO_2_ENABLE, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GYRO_2_ENABLE, gpio);
// Enable pins for GNSS
consumer.str("");
consumer << "0x" << std::hex << objects::GPS_CONTROLLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GNSS_0_ENABLE, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GNSS_0_ENABLE, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::GPS_CONTROLLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GNSS_1_ENABLE, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GNSS_1_ENABLE, gpio);
2022-02-01 11:17:00 +01:00
// Select pin. 0 for GPS side A, 1 for GPS side B
consumer.str("");
consumer << "0x" << std::hex << objects::GPS_CONTROLLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::GNSS_SELECT, consumer.str(), Direction::OUT,
Levels::LOW);
2022-02-01 11:17:00 +01:00
gpioCookieAcsBoard->addGpio(gpioIds::GNSS_SELECT, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(gpioCookieAcsBoard), "ACS Board");
AcsBoardFdir* fdir = nullptr;
2022-03-17 19:59:47 +01:00
static_cast<void>(fdir);
2022-01-17 13:48:55 +01:00
2022-09-15 13:03:22 +02:00
#if OBSW_ADD_ACS_BOARD == 1
2022-01-17 13:48:55 +01:00
std::string spiDev = q7s::SPI_DEFAULT_DEV;
SpiCookie* spiCookie =
new SpiCookie(addresses::MGM_0_LIS3, gpioIds::MGM_0_LIS3_CS, MGMLIS3MDL::MAX_BUFFER_SIZE,
spi::DEFAULT_LIS3_MODE, spi::DEFAULT_LIS3_SPEED);
2022-09-30 14:30:30 +02:00
auto mgmLis3Handler0 = new MgmLIS3MDLHandler(
objects::MGM_0_LIS3_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie, spi::LIS3_TRANSITION_DELAY);
fdir = new AcsBoardFdir(objects::MGM_0_LIS3_HANDLER);
2022-09-30 13:30:22 +02:00
mgmLis3Handler0->setCustomFdir(fdir);
assemblyChildren.push_back(*mgmLis3Handler0);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
mgmLis3Handler->setStartUpImmediately();
mgmLis3Handler->setToGoToNormalMode(true);
2022-03-17 10:04:51 +01:00
#endif
2022-02-23 19:26:02 +01:00
#if OBSW_DEBUG_ACS == 1
mgmLis3Handler->enablePeriodicPrintouts(true, 10);
2021-09-16 18:51:06 +02:00
#endif
2022-01-17 13:48:55 +01:00
spiCookie =
new SpiCookie(addresses::MGM_1_RM3100, gpioIds::MGM_1_RM3100_CS, RM3100::MAX_BUFFER_SIZE,
spi::DEFAULT_RM3100_MODE, spi::DEFAULT_RM3100_SPEED);
2022-09-30 13:30:22 +02:00
auto mgmRm3100Handler1 =
new MgmRM3100Handler(objects::MGM_1_RM3100_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie,
spi::RM3100_TRANSITION_DELAY);
fdir = new AcsBoardFdir(objects::MGM_1_RM3100_HANDLER);
2022-09-30 13:30:22 +02:00
mgmRm3100Handler1->setCustomFdir(fdir);
assemblyChildren.push_back(*mgmRm3100Handler1);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
mgmRm3100Handler->setStartUpImmediately();
mgmRm3100Handler->setToGoToNormalMode(true);
2022-03-17 10:04:51 +01:00
#endif
2022-02-23 19:26:02 +01:00
#if OBSW_DEBUG_ACS == 1
mgmRm3100Handler->enablePeriodicPrintouts(true, 10);
2021-09-16 17:33:47 +02:00
#endif
2022-01-17 13:48:55 +01:00
spiCookie =
new SpiCookie(addresses::MGM_2_LIS3, gpioIds::MGM_2_LIS3_CS, MGMLIS3MDL::MAX_BUFFER_SIZE,
spi::DEFAULT_LIS3_MODE, spi::DEFAULT_LIS3_SPEED);
2022-09-30 14:30:30 +02:00
auto* mgmLis3Handler2 = new MgmLIS3MDLHandler(
objects::MGM_2_LIS3_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie, spi::LIS3_TRANSITION_DELAY);
fdir = new AcsBoardFdir(objects::MGM_2_LIS3_HANDLER);
2022-09-30 13:30:22 +02:00
mgmLis3Handler2->setCustomFdir(fdir);
assemblyChildren.push_back(*mgmLis3Handler2);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-03-17 10:04:51 +01:00
mgmLis3Handler->setStartUpImmediately();
mgmLis3Handler->setToGoToNormalMode(true);
2022-02-23 19:26:02 +01:00
#endif
2022-03-17 10:04:51 +01:00
#if OBSW_DEBUG_ACS == 1
mgmLis3Handler->enablePeriodicPrintouts(true, 10);
2021-09-16 17:33:47 +02:00
#endif
2022-01-17 13:48:55 +01:00
spiCookie =
new SpiCookie(addresses::MGM_3_RM3100, gpioIds::MGM_3_RM3100_CS, RM3100::MAX_BUFFER_SIZE,
spi::DEFAULT_RM3100_MODE, spi::DEFAULT_RM3100_SPEED);
2022-09-30 14:30:30 +02:00
auto* mgmRm3100Handler3 =
new MgmRM3100Handler(objects::MGM_3_RM3100_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie,
spi::RM3100_TRANSITION_DELAY);
fdir = new AcsBoardFdir(objects::MGM_3_RM3100_HANDLER);
2022-09-30 13:30:22 +02:00
mgmRm3100Handler3->setCustomFdir(fdir);
assemblyChildren.push_back(*mgmRm3100Handler3);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
mgmRm3100Handler->setStartUpImmediately();
mgmRm3100Handler->setToGoToNormalMode(true);
2022-03-17 10:04:51 +01:00
#endif
2022-02-23 19:26:02 +01:00
#if OBSW_DEBUG_ACS == 1
mgmRm3100Handler->enablePeriodicPrintouts(true, 10);
2021-09-16 18:51:06 +02:00
#endif
2022-01-17 13:48:55 +01:00
// Commented until ACS board V2 in in clean room again
// Gyro 0 Side A
spiCookie =
new SpiCookie(addresses::GYRO_0_ADIS, gpioIds::GYRO_0_ADIS_CS, ADIS1650X::MAXIMUM_REPLY_SIZE,
spi::DEFAULT_ADIS16507_MODE, spi::DEFAULT_ADIS16507_SPEED);
auto adisHandler =
new GyroADIS1650XHandler(objects::GYRO_0_ADIS_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie,
ADIS1650X::Type::ADIS16505);
fdir = new AcsBoardFdir(objects::GYRO_0_ADIS_HANDLER);
adisHandler->setCustomFdir(fdir);
2022-09-29 17:06:19 +02:00
assemblyChildren.push_back(*adisHandler);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
adisHandler->setStartUpImmediately();
2022-01-19 14:08:30 +01:00
adisHandler->setToGoToNormalModeImmediately();
2022-03-17 10:04:51 +01:00
#endif
2022-02-23 19:26:02 +01:00
#if OBSW_DEBUG_ACS == 1
adisHandler->enablePeriodicPrintouts(true, 10);
2021-09-16 17:33:47 +02:00
#endif
2022-01-17 13:48:55 +01:00
// Gyro 1 Side A
spiCookie = new SpiCookie(addresses::GYRO_1_L3G, gpioIds::GYRO_1_L3G_CS, L3GD20H::MAX_BUFFER_SIZE,
spi::DEFAULT_L3G_MODE, spi::DEFAULT_L3G_SPEED);
2022-09-30 13:30:22 +02:00
auto gyroL3gHandler1 = new GyroHandlerL3GD20H(
objects::GYRO_1_L3G_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie, spi::L3G_TRANSITION_DELAY);
fdir = new AcsBoardFdir(objects::GYRO_1_L3G_HANDLER);
2022-09-30 13:30:22 +02:00
gyroL3gHandler1->setCustomFdir(fdir);
assemblyChildren.push_back(*gyroL3gHandler1);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
gyroL3gHandler->setStartUpImmediately();
gyroL3gHandler->setToGoToNormalMode(true);
2022-03-17 10:04:51 +01:00
#endif
2022-02-23 19:26:02 +01:00
#if OBSW_DEBUG_ACS == 1
gyroL3gHandler->enablePeriodicPrintouts(true, 10);
#endif
2022-01-17 13:48:55 +01:00
// Gyro 2 Side B
spiCookie =
new SpiCookie(addresses::GYRO_2_ADIS, gpioIds::GYRO_2_ADIS_CS, ADIS1650X::MAXIMUM_REPLY_SIZE,
spi::DEFAULT_ADIS16507_MODE, spi::DEFAULT_ADIS16507_SPEED);
adisHandler = new GyroADIS1650XHandler(objects::GYRO_2_ADIS_HANDLER, objects::SPI_MAIN_COM_IF,
2022-01-17 13:48:55 +01:00
spiCookie, ADIS1650X::Type::ADIS16505);
fdir = new AcsBoardFdir(objects::GYRO_2_ADIS_HANDLER);
adisHandler->setCustomFdir(fdir);
2022-09-29 17:06:19 +02:00
assemblyChildren.push_back(*adisHandler);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
adisHandler->setStartUpImmediately();
2022-01-19 14:08:30 +01:00
adisHandler->setToGoToNormalModeImmediately();
#endif
2022-01-17 13:48:55 +01:00
// Gyro 3 Side B
spiCookie = new SpiCookie(addresses::GYRO_3_L3G, gpioIds::GYRO_3_L3G_CS, L3GD20H::MAX_BUFFER_SIZE,
spi::DEFAULT_L3G_MODE, spi::DEFAULT_L3G_SPEED);
2022-09-30 14:30:30 +02:00
auto gyroL3gHandler3 = new GyroHandlerL3GD20H(
objects::GYRO_3_L3G_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie, spi::L3G_TRANSITION_DELAY);
fdir = new AcsBoardFdir(objects::GYRO_3_L3G_HANDLER);
2022-09-30 13:30:22 +02:00
gyroL3gHandler3->setCustomFdir(fdir);
assemblyChildren.push_back(*gyroL3gHandler3);
2022-02-23 19:26:02 +01:00
#if OBSW_TEST_ACS == 1
2022-01-17 13:48:55 +01:00
gyroL3gHandler->setStartUpImmediately();
gyroL3gHandler->setToGoToNormalMode(true);
2022-03-04 18:12:16 +01:00
#endif
2022-02-23 19:26:02 +01:00
#if OBSW_DEBUG_ACS == 1
gyroL3gHandler->enablePeriodicPrintouts(true, 10);
2021-09-16 17:33:47 +02:00
#endif
2022-01-17 13:48:55 +01:00
bool debugGps = false;
2021-09-16 17:24:34 +02:00
#if OBSW_DEBUG_GPS == 1
2022-01-17 13:48:55 +01:00
debugGps = true;
2021-09-16 17:24:34 +02:00
#endif
2022-05-25 10:59:20 +02:00
RESET_ARGS_GNSS.gpioComIF = gpioComIF;
RESET_ARGS_GNSS.waitPeriodMs = 100;
auto gpsCtrl =
2022-02-01 11:17:00 +01:00
new GPSHyperionLinuxController(objects::GPS_CONTROLLER, objects::NO_OBJECT, debugGps);
2022-05-25 10:59:20 +02:00
gpsCtrl->setResetPinTriggerFunction(gps::triggerGpioResetPin, &RESET_ARGS_GNSS);
2022-03-04 16:03:57 +01:00
AcsBoardHelper acsBoardHelper = AcsBoardHelper(
objects::MGM_0_LIS3_HANDLER, objects::MGM_1_RM3100_HANDLER, objects::MGM_2_LIS3_HANDLER,
objects::MGM_3_RM3100_HANDLER, objects::GYRO_0_ADIS_HANDLER, objects::GYRO_1_L3G_HANDLER,
objects::GYRO_2_ADIS_HANDLER, objects::GYRO_3_L3G_HANDLER, objects::GPS_CONTROLLER);
2022-09-29 19:40:00 +02:00
auto acsAss =
new AcsBoardAssembly(objects::ACS_BOARD_ASS, pwrSwitcher, acsBoardHelper, gpioComIF);
2022-03-04 16:03:57 +01:00
static_cast<void>(acsAss);
2022-09-29 19:40:00 +02:00
for (auto& assChild : assemblyChildren) {
2022-09-30 13:30:22 +02:00
ReturnValue_t result = assChild.get().connectModeTreeParent(*acsAss);
2022-09-30 14:30:30 +02:00
if (result != returnvalue::OK) {
sif::error << "Connecting assembly for ACS board component " << assChild.get().getObjectId()
<< " failed" << std::endl;
2022-09-30 13:30:22 +02:00
}
2022-09-29 17:06:19 +02:00
}
2022-09-30 14:14:59 +02:00
gpsCtrl->connectModeTreeParent(*acsAss);
acsAss->connectModeTreeParent(satsystem::acs::ACS_SUBSYSTEM);
2022-01-19 18:05:17 +01:00
#endif /* OBSW_ADD_ACS_HANDLERS == 1 */
2021-07-19 12:44:43 +02:00
}
void ObjectFactory::createHeaterComponents(GpioIF* gpioIF, PowerSwitchIF* pwrSwitcher,
HealthTableIF* healthTable) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-01-17 13:48:55 +01:00
GpioCookie* heaterGpiosCookie = new GpioCookie;
GpiodRegularByLineName* gpio = nullptr;
std::stringstream consumer;
consumer << "0x" << std::hex << objects::HEATER_HANDLER;
/* Pin H2-11 on stack connector */
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_0, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_0, gpio);
/* Pin H2-12 on stack connector */
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_1, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_1, gpio);
/* Pin H2-13 on stack connector */
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_2, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_2, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_3, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_3, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_4, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_4, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_5, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_5, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_6, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_6, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::HEATER_7, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
heaterGpiosCookie->addGpio(gpioIds::HEATER_7, gpio);
gpioIF->addGpios(heaterGpiosCookie);
HeaterHelper helper({{
2022-05-12 20:44:36 +02:00
{new HealthDevice(objects::HEATER_0_PLOC_PROC_BRD, MessageQueueIF::NO_QUEUE),
gpioIds::HEATER_0},
2022-05-09 16:13:33 +02:00
{new HealthDevice(objects::HEATER_1_PCDU_BRD, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_1},
2022-05-05 16:23:46 +02:00
{new HealthDevice(objects::HEATER_2_ACS_BRD, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_2},
2022-05-09 16:13:33 +02:00
{new HealthDevice(objects::HEATER_3_OBC_BRD, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_3},
2022-05-05 16:23:46 +02:00
{new HealthDevice(objects::HEATER_4_CAMERA, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_4},
{new HealthDevice(objects::HEATER_5_STR, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_5},
{new HealthDevice(objects::HEATER_6_DRO, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_6},
{new HealthDevice(objects::HEATER_7_HPA, MessageQueueIF::NO_QUEUE), gpioIds::HEATER_7},
}});
new HeaterHandler(objects::HEATER_HANDLER, gpioIF, helper, pwrSwitcher,
2022-05-02 17:51:00 +02:00
pcdu::Switches::PDU2_CH3_TCS_BOARD_HEATER_IN_8V);
2021-07-19 12:44:43 +02:00
}
2021-02-16 15:32:24 +01:00
2022-10-12 13:56:25 +02:00
void ObjectFactory::createSolarArrayDeploymentComponents(PowerSwitchIF& pwrSwitcher,
GpioIF& gpioIF) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-01-17 13:48:55 +01:00
GpioCookie* solarArrayDeplCookie = new GpioCookie;
GpiodRegularByLineName* gpio = nullptr;
std::stringstream consumer;
consumer << "0x" << std::hex << objects::SOLAR_ARRAY_DEPL_HANDLER;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::SA_DPL_PIN_0, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
solarArrayDeplCookie->addGpio(gpioIds::DEPLSA1, gpio);
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::SA_DPL_PIN_1, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
solarArrayDeplCookie->addGpio(gpioIds::DEPLSA2, gpio);
2022-10-12 13:56:25 +02:00
ReturnValue_t result = gpioIF.addGpios(solarArrayDeplCookie);
if (result != returnvalue::OK) {
sif::error << "Adding Solar Array Deployment GPIO cookie failed" << std::endl;
}
2022-01-17 13:48:55 +01:00
2022-10-12 13:56:25 +02:00
new SolarArrayDeploymentHandler(objects::SOLAR_ARRAY_DEPL_HANDLER, gpioIF, pwrSwitcher,
2022-04-17 01:00:06 +02:00
pcdu::Switches::PDU2_CH5_DEPLOYMENT_MECHANISM_8V,
2022-10-12 14:09:07 +02:00
gpioIds::DEPLSA1, gpioIds::DEPLSA2, *SdCardManager::instance());
2021-07-19 12:44:43 +02:00
}
2021-02-22 09:24:42 +01:00
2022-04-14 11:17:07 +02:00
void ObjectFactory::createSyrlinksComponents(PowerSwitchIF* pwrSwitcher) {
2022-01-17 13:48:55 +01:00
UartCookie* syrlinksUartCookie =
2022-04-13 18:55:49 +02:00
new UartCookie(objects::SYRLINKS_HK_HANDLER, q7s::UART_SYRLINKS_DEV, uart::SYRLINKS_BAUD,
syrlinks::MAX_REPLY_SIZE, UartModes::NON_CANONICAL);
2022-01-17 13:48:55 +01:00
syrlinksUartCookie->setParityEven();
2021-02-22 09:24:42 +01:00
2022-04-28 15:29:57 +02:00
auto syrlinksFdir = new SyrlinksFdir(objects::SYRLINKS_HK_HANDLER);
auto syrlinksHandler =
new SyrlinksHkHandler(objects::SYRLINKS_HK_HANDLER, objects::UART_COM_IF, syrlinksUartCookie,
pcdu::PDU1_CH1_SYRLINKS_12V, syrlinksFdir);
2022-04-14 11:17:07 +02:00
syrlinksHandler->setPowerSwitcher(pwrSwitcher);
2022-04-26 10:37:25 +02:00
#if OBSW_DEBUG_SYRLINKS == 1
syrlinksHandler->setDebugMode(true);
#endif
2021-07-19 12:44:43 +02:00
}
2021-02-22 09:24:42 +01:00
void ObjectFactory::createPayloadComponents(LinuxLibgpioIF* gpioComIF, PowerSwitchIF& pwrSwitch) {
2022-03-28 10:10:01 +02:00
using namespace gpio;
2022-03-28 09:08:11 +02:00
std::stringstream consumer;
2022-11-10 15:39:08 +01:00
auto* camSwitcher =
new CamSwitcher(objects::CAM_SWITCHER, pwrSwitch, pcdu::PDU2_CH8_PAYLOAD_CAMERA);
camSwitcher->connectModeTreeParent(satsystem::pl::SUBSYSTEM);
// camSwitcher->
2022-03-28 09:08:11 +02:00
#if OBSW_ADD_PLOC_MPSOC == 1
consumer << "0x" << std::hex << objects::PLOC_MPSOC_HANDLER;
2022-03-28 13:54:46 +02:00
auto gpioConfigMPSoC = new GpiodRegularByLineName(q7s::gpioNames::ENABLE_MPSOC_UART,
consumer.str(), Direction::OUT, Levels::HIGH);
2022-03-28 10:10:01 +02:00
auto mpsocGpioCookie = new GpioCookie;
mpsocGpioCookie->addGpio(gpioIds::ENABLE_MPSOC_UART, gpioConfigMPSoC);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(mpsocGpioCookie), "PLOC MPSoC");
2022-03-28 09:08:11 +02:00
auto mpsocCookie =
2022-04-13 18:55:49 +02:00
new UartCookie(objects::PLOC_MPSOC_HANDLER, q7s::UART_PLOC_MPSOC_DEV, uart::PLOC_MPSOC_BAUD,
mpsoc::MAX_REPLY_SIZE, UartModes::NON_CANONICAL);
2022-03-28 09:08:11 +02:00
mpsocCookie->setNoFixedSizeReply();
auto plocMpsocHelper = new PlocMPSoCHelper(objects::PLOC_MPSOC_HELPER);
2022-11-10 15:39:08 +01:00
auto* mpsocHandler = new PlocMPSoCHandler(
objects::PLOC_MPSOC_HANDLER, objects::UART_COM_IF, mpsocCookie, plocMpsocHelper,
Gpio(gpioIds::ENABLE_MPSOC_UART, gpioComIF), objects::PLOC_SUPERVISOR_HANDLER);
mpsocHandler->connectModeTreeParent(satsystem::pl::SUBSYSTEM);
2022-03-28 09:08:11 +02:00
#endif /* OBSW_ADD_PLOC_MPSOC == 1 */
#if OBSW_ADD_PLOC_SUPERVISOR == 1
consumer << "0x" << std::hex << objects::PLOC_SUPERVISOR_HANDLER;
2022-03-28 10:10:01 +02:00
auto gpioConfigSupv = new GpiodRegularByLineName(q7s::gpioNames::ENABLE_SUPV_UART, consumer.str(),
Direction::OUT, Levels::LOW);
2022-03-28 10:10:01 +02:00
auto supvGpioCookie = new GpioCookie;
supvGpioCookie->addGpio(gpioIds::ENABLE_SUPV_UART, gpioConfigSupv);
gpioComIF->addGpios(supvGpioCookie);
auto supervisorCookie =
new UartCookie(objects::PLOC_SUPERVISOR_HANDLER, q7s::UART_PLOC_SUPERVSIOR_DEV,
uart::PLOC_SUPV_BAUD, supv::MAX_PACKET_SIZE * 20, UartModes::NON_CANONICAL);
2022-03-28 09:08:11 +02:00
supervisorCookie->setNoFixedSizeReply();
auto supvHelper = new PlocSupvHelper(objects::PLOC_SUPERVISOR_HELPER);
2022-11-10 15:39:08 +01:00
auto* supvHandler = new PlocSupervisorHandler(
objects::PLOC_SUPERVISOR_HANDLER, objects::UART_COM_IF, supervisorCookie,
Gpio(gpioIds::ENABLE_SUPV_UART, gpioComIF), pcdu::PDU1_CH6_PLOC_12V, supvHelper);
supvHandler->connectModeTreeParent(satsystem::pl::SUBSYSTEM);
2022-03-28 09:08:11 +02:00
#endif /* OBSW_ADD_PLOC_SUPERVISOR == 1 */
static_cast<void>(consumer);
}
2022-05-11 00:54:29 +02:00
void ObjectFactory::createReactionWheelComponents(LinuxLibgpioIF* gpioComIF,
PowerSwitchIF* pwrSwitcher) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-01-17 13:48:55 +01:00
GpioCookie* gpioCookieRw = new GpioCookie;
2022-02-28 15:47:34 +01:00
GpioCallback* csRw1 =
new GpioCallback("Chip select reaction wheel 1", Direction::OUT, Levels::HIGH,
&gpioCallbacks::spiCsDecoderCallback, gpioComIF);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::CS_RW1, csRw1);
2022-02-28 15:47:34 +01:00
GpioCallback* csRw2 =
new GpioCallback("Chip select reaction wheel 2", Direction::OUT, Levels::HIGH,
&gpioCallbacks::spiCsDecoderCallback, gpioComIF);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::CS_RW2, csRw2);
2022-02-28 15:47:34 +01:00
GpioCallback* csRw3 =
new GpioCallback("Chip select reaction wheel 3", Direction::OUT, Levels::HIGH,
&gpioCallbacks::spiCsDecoderCallback, gpioComIF);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::CS_RW3, csRw3);
2022-02-28 15:47:34 +01:00
GpioCallback* csRw4 =
new GpioCallback("Chip select reaction wheel 4", Direction::OUT, Levels::HIGH,
&gpioCallbacks::spiCsDecoderCallback, gpioComIF);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::CS_RW4, csRw4);
std::stringstream consumer;
GpiodRegularByLineName* gpio = nullptr;
consumer << "0x" << std::hex << objects::RW1;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::EN_RW_1, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::EN_RW1, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::RW2;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::EN_RW_2, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::EN_RW2, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::RW3;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::EN_RW_3, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::EN_RW3, gpio);
consumer.str("");
consumer << "0x" << std::hex << objects::RW4;
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::EN_RW_4, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookieRw->addGpio(gpioIds::EN_RW4, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(gpioCookieRw), "RWs");
2022-01-17 13:48:55 +01:00
2022-02-23 19:26:02 +01:00
#if OBSW_ADD_RW == 1
std::array<std::pair<address_t, gpioId_t>, 4> rwCookieParams = {
{{addresses::RW1, gpioIds::CS_RW1},
{addresses::RW2, gpioIds::CS_RW2},
{addresses::RW3, gpioIds::CS_RW3},
{addresses::RW4, gpioIds::CS_RW4}}};
std::array<SpiCookie*, 4> rwCookies = {};
2022-05-10 18:39:23 +02:00
std::array<object_id_t, 4> rwIds = {objects::RW1, objects::RW2, objects::RW3, objects::RW4};
std::array<gpioId_t, 4> rwGpioIds = {gpioIds::EN_RW1, gpioIds::EN_RW2, gpioIds::EN_RW3,
gpioIds::EN_RW4};
std::array<RwHandler*, 4> rws = {};
for (uint8_t idx = 0; idx < rwCookies.size(); idx++) {
rwCookies[idx] = new SpiCookie(rwCookieParams[idx].first, rwCookieParams[idx].second,
RwDefinitions::MAX_REPLY_SIZE, spi::RW_MODE, spi::RW_SPEED,
&rwSpiCallback::spiCallback, nullptr);
rws[idx] = new RwHandler(rwIds[idx], objects::SPI_RW_COM_IF, rwCookies[idx], gpioComIF,
rwGpioIds[idx]);
rwCookies[idx]->setCallbackArgs(rws[idx]);
#if OBSW_TEST_RW == 1
rws[idx]->setStartUpImmediately();
2021-09-23 15:35:33 +02:00
#endif
#if OBSW_DEBUG_RW == 1
rws[idx]->setDebugMode(true);
2021-09-23 15:35:33 +02:00
#endif
}
2022-05-10 18:39:23 +02:00
RwHelper rwHelper(rwIds);
2022-09-30 14:30:30 +02:00
auto* rwAss =
new RwAssembly(objects::RW_ASS, pwrSwitcher, pcdu::Switches::PDU2_CH2_RW_5V, rwHelper);
2022-09-30 13:30:22 +02:00
for (uint8_t idx = 0; idx < rws.size(); idx++) {
ReturnValue_t result = rws[idx]->connectModeTreeParent(*rwAss);
2022-09-30 14:30:30 +02:00
if (result != returnvalue::OK) {
2022-09-30 13:30:22 +02:00
sif::error << "Connecting RW " << static_cast<int>(idx) << " to RW assembly failed"
2022-09-30 14:30:30 +02:00
<< std::endl;
2022-09-30 13:30:22 +02:00
}
}
rwAss->connectModeTreeParent(satsystem::acs::ACS_SUBSYSTEM);
2022-02-23 19:26:02 +01:00
#endif /* OBSW_ADD_RW == 1 */
2021-07-19 12:44:43 +02:00
}
2021-05-02 13:48:39 +02:00
ReturnValue_t ObjectFactory::createCcsdsComponents(LinuxLibgpioIF* gpioComIF,
CcsdsIpCoreHandler** ipCoreHandler) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-01-17 13:48:55 +01:00
// GPIO definitions of signals connected to the virtual channel interfaces of the PTME IP Core
GpioCookie* gpioCookiePtmeIp = new GpioCookie;
GpiodRegularByLineName* gpio = nullptr;
std::stringstream consumer;
consumer.str("PAPB VC0");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_BUSY_SIGNAL_VC0, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC0_PAPB_BUSY, gpio);
consumer.str("PAPB VC0");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_EMPTY_SIGNAL_VC0, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC0_PAPB_EMPTY, gpio);
consumer.str("PAPB VC 1");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_BUSY_SIGNAL_VC1, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC1_PAPB_BUSY, gpio);
consumer.str("");
consumer.str("PAPB VC 1");
2022-01-17 13:48:55 +01:00
gpioCookiePtmeIp->addGpio(gpioIds::VC1_PAPB_EMPTY, gpio);
consumer.str("");
consumer.str("PAPB VC 2");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_BUSY_SIGNAL_VC2, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC2_PAPB_BUSY, gpio);
consumer.str("");
consumer.str("PAPB VC 2");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_EMPTY_SIGNAL_VC2, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC2_PAPB_EMPTY, gpio);
consumer.str("");
consumer.str("PAPB VC 3");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_BUSY_SIGNAL_VC3, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC3_PAPB_BUSY, gpio);
consumer.str("");
consumer.str("PAPB VC 3");
2022-01-17 13:48:55 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PAPB_EMPTY_SIGNAL_VC3, consumer.str());
gpioCookiePtmeIp->addGpio(gpioIds::VC3_PAPB_EMPTY, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(gpioCookiePtmeIp), "PTME PAPB VCs");
2022-01-17 13:48:55 +01:00
// Creating virtual channel interfaces
2022-01-24 16:33:22 +01:00
VcInterfaceIF* vc0 =
new PapbVcInterface(gpioComIF, gpioIds::VC0_PAPB_BUSY, gpioIds::VC0_PAPB_EMPTY, q7s::UIO_PTME,
q7s::uiomapids::PTME_VC0);
2022-01-24 16:33:22 +01:00
VcInterfaceIF* vc1 =
new PapbVcInterface(gpioComIF, gpioIds::VC1_PAPB_BUSY, gpioIds::VC1_PAPB_EMPTY, q7s::UIO_PTME,
q7s::uiomapids::PTME_VC1);
2022-01-24 16:33:22 +01:00
VcInterfaceIF* vc2 =
new PapbVcInterface(gpioComIF, gpioIds::VC2_PAPB_BUSY, gpioIds::VC2_PAPB_EMPTY, q7s::UIO_PTME,
q7s::uiomapids::PTME_VC2);
2022-01-24 16:33:22 +01:00
VcInterfaceIF* vc3 =
new PapbVcInterface(gpioComIF, gpioIds::VC3_PAPB_BUSY, gpioIds::VC3_PAPB_EMPTY, q7s::UIO_PTME,
q7s::uiomapids::PTME_VC3);
2022-01-17 13:48:55 +01:00
// Creating ptme object and adding virtual channel interfaces
Ptme* ptme = new Ptme(objects::PTME);
ptme->addVcInterface(ccsds::VC0, vc0);
ptme->addVcInterface(ccsds::VC1, vc1);
ptme->addVcInterface(ccsds::VC2, vc2);
ptme->addVcInterface(ccsds::VC3, vc3);
AxiPtmeConfig* axiPtmeConfig =
new AxiPtmeConfig(objects::AXI_PTME_CONFIG, q7s::UIO_PTME, q7s::uiomapids::PTME_CONFIG);
PtmeConfig* ptmeConfig = new PtmeConfig(objects::PTME_CONFIG, axiPtmeConfig);
2022-03-26 13:54:05 +01:00
#if OBSW_ENABLE_SYRLINKS_TRANSMIT_TIMEOUT == 1
// Set to high value when not sending via syrlinks
static const uint32_t TRANSMITTER_TIMEOUT = 86400000; // 1 day
#else
static const uint32_t TRANSMITTER_TIMEOUT = 900000; // 15 minutes
#endif
*ipCoreHandler = new CcsdsIpCoreHandler(
objects::CCSDS_HANDLER, objects::PTME, objects::CCSDS_PACKET_DISTRIBUTOR, ptmeConfig,
2022-03-26 13:54:05 +01:00
gpioComIF, gpioIds::RS485_EN_TX_CLOCK, gpioIds::RS485_EN_TX_DATA, TRANSMITTER_TIMEOUT);
2022-01-17 13:48:55 +01:00
VirtualChannel* vc = nullptr;
2022-02-22 20:50:56 +01:00
vc = new VirtualChannel(ccsds::VC0, common::VC0_QUEUE_SIZE, objects::CCSDS_HANDLER);
(*ipCoreHandler)->addVirtualChannel(ccsds::VC0, vc);
2022-02-22 20:50:56 +01:00
vc = new VirtualChannel(ccsds::VC1, common::VC1_QUEUE_SIZE, objects::CCSDS_HANDLER);
(*ipCoreHandler)->addVirtualChannel(ccsds::VC1, vc);
2022-02-22 20:50:56 +01:00
vc = new VirtualChannel(ccsds::VC2, common::VC2_QUEUE_SIZE, objects::CCSDS_HANDLER);
(*ipCoreHandler)->addVirtualChannel(ccsds::VC2, vc);
2022-02-22 20:50:56 +01:00
vc = new VirtualChannel(ccsds::VC3, common::VC3_QUEUE_SIZE, objects::CCSDS_HANDLER);
(*ipCoreHandler)->addVirtualChannel(ccsds::VC3, vc);
2022-01-17 13:48:55 +01:00
GpioCookie* gpioCookiePdec = new GpioCookie;
consumer.str("");
consumer << "0x" << std::hex << objects::PDEC_HANDLER;
// GPIO also low after linux boot (specified by device-tree)
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PDEC_RESET, consumer.str(), Direction::OUT,
Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioCookiePdec->addGpio(gpioIds::PDEC_RESET, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(gpioCookiePdec), "PDEC");
2022-10-27 10:49:52 +02:00
struct UioNames uioNames {};
uioNames.configMemory = q7s::UIO_PDEC_CONFIG_MEMORY;
uioNames.ramMemory = q7s::UIO_PDEC_RAM;
uioNames.registers = q7s::UIO_PDEC_REGISTERS;
uioNames.irq = q7s::UIO_PDEC_IRQ;
2022-01-17 13:48:55 +01:00
new PdecHandler(objects::PDEC_HANDLER, objects::CCSDS_HANDLER, gpioComIF, gpioIds::PDEC_RESET,
2022-10-27 10:49:52 +02:00
uioNames);
2022-01-17 13:48:55 +01:00
GpioCookie* gpioRS485Chip = new GpioCookie;
gpio = new GpiodRegularByLineName(q7s::gpioNames::RS485_EN_TX_CLOCK, "RS485 Transceiver",
2022-02-28 15:47:34 +01:00
Direction::OUT, Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioRS485Chip->addGpio(gpioIds::RS485_EN_TX_CLOCK, gpio);
gpio = new GpiodRegularByLineName(q7s::gpioNames::RS485_EN_TX_DATA, "RS485 Transceiver",
2022-02-28 15:47:34 +01:00
Direction::OUT, Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioRS485Chip->addGpio(gpioIds::RS485_EN_TX_DATA, gpio);
// Default configuration enables RX channels (RXEN = LOW)
gpio = new GpiodRegularByLineName(q7s::gpioNames::RS485_EN_RX_CLOCK, "RS485 Transceiver",
2022-02-28 15:47:34 +01:00
Direction::OUT, Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioRS485Chip->addGpio(gpioIds::RS485_EN_RX_CLOCK, gpio);
gpio = new GpiodRegularByLineName(q7s::gpioNames::RS485_EN_RX_DATA, "RS485 Transceiver",
2022-02-28 15:47:34 +01:00
Direction::OUT, Levels::LOW);
2022-01-17 13:48:55 +01:00
gpioRS485Chip->addGpio(gpioIds::RS485_EN_RX_DATA, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(gpioRS485Chip), "RS485 Transceiver");
2022-10-27 14:02:34 +02:00
return returnvalue::OK;
2021-09-26 08:29:30 +02:00
}
void ObjectFactory::createPlPcduComponents(LinuxLibgpioIF* gpioComIF, SpiComIF* spiComIF,
PowerSwitchIF* pwrSwitcher) {
2022-02-28 15:47:34 +01:00
using namespace gpio;
2022-02-23 19:26:02 +01:00
// Create all GPIO components first
GpioCookie* plPcduGpios = new GpioCookie;
GpiodRegularByLineName* gpio = nullptr;
std::string consumer;
// Switch pins are active high
consumer = "PLPCDU_ENB_VBAT_0";
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_VBAT0, consumer, Direction::OUT,
2022-02-23 19:26:02 +01:00
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_VBAT0, gpio);
consumer = "PLPCDU_ENB_VBAT_1";
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_VBAT1, consumer, Direction::OUT,
2022-02-23 19:26:02 +01:00
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_VBAT1, gpio);
consumer = "PLPCDU_ENB_DRO";
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_DRO, consumer, Direction::OUT,
2022-02-23 19:26:02 +01:00
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_DRO, gpio);
consumer = "PLPCDU_ENB_X8";
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_X8, consumer, Direction::OUT,
2022-02-23 19:26:02 +01:00
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_X8, gpio);
consumer = "PLPCDU_ENB_TX";
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_TX, consumer, Direction::OUT,
2022-02-23 19:26:02 +01:00
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_TX, gpio);
2022-03-04 15:26:36 +01:00
consumer = "PLPCDU_ENB_MPA";
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_MPA, consumer, Direction::OUT,
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_MPA, gpio);
consumer = "PLPCDU_ENB_HPA";
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ENABLE_HPA, consumer, Direction::OUT,
gpio::Levels::LOW);
plPcduGpios->addGpio(gpioIds::PLPCDU_ENB_HPA, gpio);
2022-02-23 19:26:02 +01:00
// Chip select pin is active low
consumer = "PLPCDU_ADC_CS";
2022-02-28 15:47:34 +01:00
gpio = new GpiodRegularByLineName(q7s::gpioNames::PL_PCDU_ADC_CS, consumer, Direction::OUT,
2022-02-23 19:26:02 +01:00
gpio::Levels::HIGH);
plPcduGpios->addGpio(gpioIds::PLPCDU_ADC_CS, gpio);
2022-04-28 18:38:38 +02:00
gpioChecker(gpioComIF->addGpios(plPcduGpios), "PL PCDU");
SpiCookie* spiCookie =
new SpiCookie(addresses::PLPCDU_ADC, gpioIds::PLPCDU_ADC_CS, plpcdu::MAX_ADC_REPLY_SIZE,
spi::DEFAULT_MAX_1227_MODE, spi::PL_PCDU_MAX_1227_SPEED);
2022-03-04 15:26:36 +01:00
// Create device handler components
auto plPcduHandler = new PayloadPcduHandler(
objects::PLPCDU_HANDLER, objects::SPI_MAIN_COM_IF, spiCookie, gpioComIF,
SdCardManager::instance(), pwrSwitcher, pcdu::Switches::PDU2_CH1_PL_PCDU_BATT_0_14V8,
2022-04-17 01:00:06 +02:00
pcdu::Switches::PDU2_CH6_PL_PCDU_BATT_1_14V8, false);
2022-03-04 15:26:36 +01:00
spiCookie->setCallbackMode(PayloadPcduHandler::extConvAsTwoCallback, plPcduHandler);
2022-03-25 12:57:42 +01:00
// plPcduHandler->enablePeriodicPrintout(true, 5);
// static_cast<void>(plPcduHandler);
2022-03-04 15:26:36 +01:00
#if OBSW_TEST_PL_PCDU == 1
plPcduHandler->setStartUpImmediately();
#endif
2022-03-04 15:26:36 +01:00
#if OBSW_DEBUG_PL_PCDU == 1
plPcduHandler->setToGoToNormalModeImmediately(true);
2022-03-25 17:02:21 +01:00
plPcduHandler->enablePeriodicPrintout(true, 10);
2022-03-04 15:26:36 +01:00
#endif
2022-11-10 15:39:08 +01:00
plPcduHandler->connectModeTreeParent(satsystem::pl::SUBSYSTEM);
2022-02-23 19:26:02 +01:00
}
2021-09-13 18:07:07 +02:00
void ObjectFactory::createTestComponents(LinuxLibgpioIF* gpioComIF) {
2022-01-17 13:48:55 +01:00
new Q7STestTask(objects::TEST_TASK);
2021-09-15 17:38:26 +02:00
#if OBSW_ADD_SPI_TEST_CODE == 1
2022-01-17 13:48:55 +01:00
new SpiTestClass(objects::SPI_TEST, gpioComIF);
#endif
2022-02-03 13:37:48 +01:00
#if OBSW_ADD_I2C_TEST_CODE == 1
new I2cTestClass(objects::I2C_TEST, q7s::I2C_DEFAULT_DEV);
#endif
2022-02-04 17:48:05 +01:00
#if OBSW_ADD_UART_TEST_CODE == 1
2022-09-27 18:54:48 +02:00
// auto* reader= new ScexUartReader(objects::SCEX_UART_READER);
2022-02-04 17:48:05 +01:00
new UartTestClass(objects::UART_TEST);
#endif
2020-09-30 17:17:01 +02:00
}
void ObjectFactory::createStrComponents(PowerSwitchIF* pwrSwitcher) {
UartCookie* starTrackerCookie =
new UartCookie(objects::STAR_TRACKER, q7s::UART_STAR_TRACKER_DEV, uart::STAR_TRACKER_BAUD,
startracker::MAX_FRAME_SIZE * 2 + 2, UartModes::NON_CANONICAL);
starTrackerCookie->setNoFixedSizeReply();
StrHelper* strHelper = new StrHelper(objects::STR_HELPER);
auto starTracker =
new StarTrackerHandler(objects::STAR_TRACKER, objects::UART_COM_IF, starTrackerCookie,
strHelper, pcdu::PDU1_CH2_STAR_TRACKER_5V);
starTracker->setPowerSwitcher(pwrSwitcher);
starTracker->connectModeTreeParent(satsystem::acs::ACS_SUBSYSTEM);
}
void ObjectFactory::createImtqComponents(PowerSwitchIF* pwrSwitcher) {
I2cCookie* imtqI2cCookie =
new I2cCookie(addresses::IMTQ, IMTQ::MAX_REPLY_SIZE, q7s::I2C_DEFAULT_DEV);
auto imtqHandler = new ImtqHandler(objects::IMTQ_HANDLER, objects::I2C_COM_IF, imtqI2cCookie,
pcdu::Switches::PDU1_CH3_MGT_5V);
imtqHandler->setPowerSwitcher(pwrSwitcher);
imtqHandler->connectModeTreeParent(satsystem::acs::ACS_SUBSYSTEM);
static_cast<void>(imtqHandler);
#if OBSW_TEST_IMTQ == 1
imtqHandler->setStartUpImmediately();
imtqHandler->setToGoToNormal(true);
#endif
#if OBSW_DEBUG_IMTQ == 1
imtqHandler->setDebugMode(true);
#endif
}
void ObjectFactory::createBpxBatteryComponent() {
I2cCookie* bpxI2cCookie = new I2cCookie(addresses::BPX_BATTERY, 100, q7s::I2C_DEFAULT_DEV);
BpxBatteryHandler* bpxHandler =
new BpxBatteryHandler(objects::BPX_BATT_HANDLER, objects::I2C_COM_IF, bpxI2cCookie);
bpxHandler->setStartUpImmediately();
bpxHandler->setToGoToNormalMode(true);
#if OBSW_DEBUG_BPX_BATT == 1
bpxHandler->setDebugMode(true);
#endif
}
2022-09-16 11:43:11 +02:00
void ObjectFactory::createMiscComponents() { new PlocMemoryDumper(objects::PLOC_MEMORY_DUMPER); }
void ObjectFactory::testAcsBrdAss(AcsBoardAssembly* acsAss) {
CommandMessage msg;
ModeMessage::setModeMessage(&msg, ModeMessage::CMD_MODE_COMMAND, DeviceHandlerIF::MODE_NORMAL,
duallane::A_SIDE);
ReturnValue_t result = MessageQueueSenderIF::sendMessage(acsAss->getCommandQueue(), &msg);
2022-08-24 17:27:47 +02:00
if (result != returnvalue::OK) {
sif::warning << "Sending mode command failed" << std::endl;
}
}