2021-01-23 17:22:40 +01:00
|
|
|
#include "PCDUHandler.h"
|
2021-02-27 19:46:13 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
#include <OBSWConfig.h>
|
2022-03-03 15:37:36 +01:00
|
|
|
#include <devices/powerSwitcherList.h>
|
|
|
|
#include <fsfw/datapool/PoolReadGuard.h>
|
2021-02-05 07:37:21 +01:00
|
|
|
#include <fsfw/housekeeping/HousekeepingSnapshot.h>
|
2022-03-03 19:39:36 +01:00
|
|
|
#include <fsfw/ipc/MutexFactory.h>
|
2022-01-17 15:58:27 +01:00
|
|
|
#include <fsfw/ipc/QueueFactory.h>
|
|
|
|
#include <mission/devices/devicedefinitions/GomSpacePackets.h>
|
2021-02-27 19:46:13 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
PCDUHandler::PCDUHandler(object_id_t setObjectId, size_t cmdQueueSize)
|
|
|
|
: SystemObject(setObjectId),
|
|
|
|
poolManager(this, nullptr),
|
|
|
|
pdu2HkTableDataset(this),
|
|
|
|
pdu1HkTableDataset(this),
|
|
|
|
cmdQueueSize(cmdQueueSize) {
|
|
|
|
commandQueue = QueueFactory::instance()->createMessageQueue(
|
|
|
|
cmdQueueSize, MessageQueueMessage::MAX_MESSAGE_SIZE);
|
2022-03-03 19:39:36 +01:00
|
|
|
pwrMutex = MutexFactory::instance()->createMutex();
|
2021-01-23 17:22:40 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
PCDUHandler::~PCDUHandler() {}
|
2021-01-23 17:22:40 +01:00
|
|
|
|
2021-01-28 14:55:21 +01:00
|
|
|
ReturnValue_t PCDUHandler::performOperation(uint8_t counter) {
|
2022-01-17 15:58:27 +01:00
|
|
|
if (counter == DeviceHandlerIF::PERFORM_OPERATION) {
|
|
|
|
readCommandQueue();
|
2021-01-28 14:55:21 +01:00
|
|
|
return RETURN_OK;
|
2022-01-17 15:58:27 +01:00
|
|
|
}
|
|
|
|
return RETURN_OK;
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t PCDUHandler::initialize() {
|
2022-01-17 15:58:27 +01:00
|
|
|
ReturnValue_t result;
|
|
|
|
|
|
|
|
IPCStore = ObjectManager::instance()->get<StorageManagerIF>(objects::IPC_STORE);
|
|
|
|
if (IPCStore == nullptr) {
|
|
|
|
return ObjectManagerIF::CHILD_INIT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = poolManager.initialize(commandQueue);
|
|
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Subscribing for housekeeping table update messages of the PDU2 */
|
|
|
|
HasLocalDataPoolIF* pdu2Handler =
|
|
|
|
ObjectManager::instance()->get<HasLocalDataPoolIF>(objects::PDU2_HANDLER);
|
|
|
|
if (pdu2Handler == nullptr) {
|
|
|
|
sif::error << "PCDUHandler::initialize: Invalid pdu2Handler" << std::endl;
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
result = pdu2Handler->getSubscriptionInterface()->subscribeForSetUpdateMessage(
|
|
|
|
PDU2::HK_TABLE_DATA_SET_ID, this->getObjectId(), commandQueue->getId(), true);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
sif::error << "PCDUHandler::initialize: Failed to subscribe for set update messages from "
|
|
|
|
<< "PDU2Handler" << std::endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Subscribing for housekeeping table update messages of the PDU1 */
|
|
|
|
HasLocalDataPoolIF* pdu1Handler =
|
|
|
|
ObjectManager::instance()->get<HasLocalDataPoolIF>(objects::PDU1_HANDLER);
|
|
|
|
if (pdu1Handler == nullptr) {
|
|
|
|
sif::error << "PCDUHandler::initialize: Invalid pdu1Handler" << std::endl;
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
result = pdu1Handler->getSubscriptionInterface()->subscribeForSetUpdateMessage(
|
|
|
|
PDU1::HK_TABLE_DATA_SET_ID, this->getObjectId(), commandQueue->getId(), true);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
sif::error << "PCDUHandler::initialize: Failed to subscribe for set update messages from "
|
|
|
|
<< "PDU1Handler" << std::endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RETURN_OK;
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 11:17:20 +01:00
|
|
|
void PCDUHandler::initializeSwitchStates() {
|
2022-03-03 15:37:36 +01:00
|
|
|
using namespace pcduSwitches;
|
|
|
|
switchStates[Switches::PDU2_CH0_Q7S] = pcduSwitches::INIT_STATE_Q7S;
|
|
|
|
switchStates[Switches::PDU2_CH6_PL_PCDU_BATT_1_14V8] = pcduSwitches::INIT_STATE_PAYLOAD_PCDU_CH1;
|
|
|
|
switchStates[Switches::PDU2_CH2_RW_5V] = pcduSwitches::INIT_STATE_RW;
|
|
|
|
switchStates[Switches::PDU2_CH3_TCS_BOARD_HEATER_IN_8V] =
|
2022-01-17 15:58:27 +01:00
|
|
|
pcduSwitches::INIT_STATE_TCS_BOARD_8V_HEATER_IN;
|
2022-03-03 15:37:36 +01:00
|
|
|
switchStates[Switches::PDU2_CH4_SUS_REDUNDANT_3V3] = pcduSwitches::INIT_STATE_SUS_REDUNDANT;
|
|
|
|
switchStates[Switches::PDU2_CH5_DEPLOYMENT_MECHANISM_8V] =
|
|
|
|
pcduSwitches::INIT_STATE_DEPLOYMENT_MECHANISM;
|
|
|
|
switchStates[Switches::PDU2_CH6_PL_PCDU_BATT_1_14V8] = pcduSwitches::INIT_STATE_PAYLOAD_PCDU_CH6;
|
|
|
|
switchStates[Switches::PDU2_CH7_ACS_BOARD_SIDE_B_3V3] = pcduSwitches::INIT_STATE_ACS_BOARD_SIDE_B;
|
|
|
|
switchStates[Switches::PDU2_CH8_PAYLOAD_CAMERA] = pcduSwitches::INIT_STATE_PAYLOAD_CAMERA;
|
|
|
|
switchStates[Switches::PDU1_CH0_TCS_BOARD_3V3] = pcduSwitches::INIT_STATE_TCS_BOARD_3V3;
|
|
|
|
switchStates[Switches::PDU1_CH1_SYRLINKS_12V] = pcduSwitches::INIT_STATE_SYRLINKS;
|
|
|
|
switchStates[Switches::PDU1_CH2_STAR_TRACKER_5V] = pcduSwitches::INIT_STATE_STAR_TRACKER;
|
|
|
|
switchStates[Switches::PDU1_CH3_MGT_5V] = pcduSwitches::INIT_STATE_MGT;
|
|
|
|
switchStates[Switches::PDU1_CH4_SUS_NOMINAL_3V3] = pcduSwitches::INIT_STATE_SUS_NOMINAL;
|
|
|
|
switchStates[Switches::PDU1_CH5_SOLAR_CELL_EXP_5V] = pcduSwitches::INIT_STATE_SOLAR_CELL_EXP;
|
|
|
|
switchStates[Switches::PDU1_CH6_PLOC_12V] = pcduSwitches::INIT_STATE_PLOC;
|
|
|
|
switchStates[Switches::PDU1_CH7_ACS_A_SIDE_3V3] = pcduSwitches::INIT_STATE_ACS_BOARD_SIDE_A;
|
2021-02-01 11:17:20 +01:00
|
|
|
}
|
|
|
|
|
2021-01-28 14:55:21 +01:00
|
|
|
void PCDUHandler::readCommandQueue() {
|
2022-01-17 15:58:27 +01:00
|
|
|
ReturnValue_t result;
|
|
|
|
CommandMessage command;
|
|
|
|
|
|
|
|
result = commandQueue->receiveMessage(&command);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = poolManager.handleHousekeepingMessage(&command);
|
|
|
|
if (result == RETURN_OK) {
|
|
|
|
return;
|
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
MessageQueueId_t PCDUHandler::getCommandQueue() const { return commandQueue->getId(); }
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-03-04 18:12:16 +01:00
|
|
|
void PCDUHandler::handleChangedDataset(sid_t sid, store_address_t storeId, bool* clearMessage) {
|
2022-01-17 15:58:27 +01:00
|
|
|
if (sid == sid_t(objects::PDU2_HANDLER, PDU2::HK_TABLE_DATA_SET_ID)) {
|
|
|
|
updateHkTableDataset(storeId, &pdu2HkTableDataset, &timeStampPdu2HkDataset);
|
|
|
|
updatePdu2SwitchStates();
|
|
|
|
} else if (sid == sid_t(objects::PDU1_HANDLER, PDU1::HK_TABLE_DATA_SET_ID)) {
|
|
|
|
updateHkTableDataset(storeId, &pdu1HkTableDataset, &timeStampPdu1HkDataset);
|
|
|
|
updatePdu1SwitchStates();
|
|
|
|
} else {
|
|
|
|
sif::error << "PCDUHandler::handleChangedDataset: Invalid sid" << std::endl;
|
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
void PCDUHandler::updateHkTableDataset(store_address_t storeId, LocalPoolDataSetBase* dataset,
|
|
|
|
CCSDSTime::CDS_short* datasetTimeStamp) {
|
|
|
|
ReturnValue_t result;
|
|
|
|
|
|
|
|
HousekeepingSnapshot packetUpdate(reinterpret_cast<uint8_t*>(datasetTimeStamp),
|
|
|
|
sizeof(CCSDSTime::CDS_short), dataset);
|
|
|
|
const uint8_t* packet_ptr = NULL;
|
|
|
|
size_t size;
|
|
|
|
result = IPCStore->getData(storeId, &packet_ptr, &size);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
sif::error << "PCDUHandler::updateHkTableDataset: Failed to get data from IPCStore."
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
dataset->read();
|
|
|
|
result = packetUpdate.deSerialize(&packet_ptr, &size, SerializeIF::Endianness::MACHINE);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
sif::error << "PCDUHandler::updateHkTableDataset: Failed to deserialize received packet "
|
|
|
|
"in hk table dataset"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
dataset->commit();
|
|
|
|
result = IPCStore->deleteData(storeId);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
sif::error << "PCDUHandler::updateHkTableDataset: Failed to delete data in IPCStore"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
2021-02-06 11:57:45 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 11:17:20 +01:00
|
|
|
void PCDUHandler::updatePdu2SwitchStates() {
|
2022-03-03 15:37:36 +01:00
|
|
|
using namespace pcduSwitches;
|
2022-03-03 19:39:36 +01:00
|
|
|
PoolReadGuard rg(&pdu2HkTableDataset);
|
|
|
|
if (rg.getReadResult() == RETURN_OK) {
|
|
|
|
MutexGuard mg(pwrMutex);
|
2022-03-03 15:37:36 +01:00
|
|
|
switchStates[Switches::PDU2_CH0_Q7S] = pdu2HkTableDataset.outEnabledQ7S.value;
|
|
|
|
switchStates[Switches::PDU2_CH1_PL_PCDU_BATT_0_14V8] =
|
|
|
|
pdu2HkTableDataset.outEnabledPlPCDUCh1.value;
|
|
|
|
switchStates[Switches::PDU2_CH2_RW_5V] = pdu2HkTableDataset.outEnabledReactionWheels.value;
|
|
|
|
switchStates[Switches::PDU2_CH3_TCS_BOARD_HEATER_IN_8V] =
|
2022-01-17 15:58:27 +01:00
|
|
|
pdu2HkTableDataset.outEnabledTCSBoardHeaterIn.value;
|
2022-03-03 15:37:36 +01:00
|
|
|
switchStates[Switches::PDU2_CH4_SUS_REDUNDANT_3V3] =
|
|
|
|
pdu2HkTableDataset.outEnabledSUSRedundant.value;
|
|
|
|
switchStates[Switches::PDU2_CH5_DEPLOYMENT_MECHANISM_8V] =
|
2022-01-17 15:58:27 +01:00
|
|
|
pdu2HkTableDataset.outEnabledDeplMechanism.value;
|
2022-03-03 15:37:36 +01:00
|
|
|
switchStates[Switches::PDU2_CH6_PL_PCDU_BATT_1_14V8] =
|
|
|
|
pdu2HkTableDataset.outEnabledPlPCDUCh6.value;
|
|
|
|
switchStates[Switches::PDU2_CH7_ACS_BOARD_SIDE_B_3V3] =
|
|
|
|
pdu2HkTableDataset.outEnabledAcsBoardSideB.value;
|
|
|
|
switchStates[Switches::PDU2_CH8_PAYLOAD_CAMERA] =
|
|
|
|
pdu2HkTableDataset.outEnabledPayloadCamera.value;
|
2022-01-17 15:58:27 +01:00
|
|
|
} else {
|
|
|
|
sif::debug << "PCDUHandler::updatePdu2SwitchStates: Failed to read PDU2 Hk Dataset"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
2021-02-01 11:17:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PCDUHandler::updatePdu1SwitchStates() {
|
2022-03-03 19:39:36 +01:00
|
|
|
using namespace pcduSwitches;
|
|
|
|
PoolReadGuard rg(&pdu1HkTableDataset);
|
|
|
|
if (rg.getReadResult() == RETURN_OK) {
|
|
|
|
MutexGuard mg(pwrMutex);
|
2022-03-03 15:37:36 +01:00
|
|
|
switchStates[Switches::PDU1_CH0_TCS_BOARD_3V3] = pdu1HkTableDataset.outEnabledTCSBoard3V3.value;
|
|
|
|
switchStates[Switches::PDU1_CH1_SYRLINKS_12V] = pdu1HkTableDataset.outEnabledSyrlinks.value;
|
|
|
|
switchStates[Switches::PDU1_CH2_STAR_TRACKER_5V] =
|
|
|
|
pdu1HkTableDataset.outEnabledStarTracker.value;
|
|
|
|
switchStates[Switches::PDU1_CH3_MGT_5V] = pdu1HkTableDataset.outEnabledMGT.value;
|
|
|
|
switchStates[Switches::PDU1_CH4_SUS_NOMINAL_3V3] =
|
|
|
|
pdu1HkTableDataset.outEnabledSUSNominal.value;
|
|
|
|
switchStates[Switches::PDU1_CH5_SOLAR_CELL_EXP_5V] =
|
|
|
|
pdu1HkTableDataset.outEnabledSolarCellExp.value;
|
|
|
|
switchStates[Switches::PDU1_CH6_PLOC_12V] = pdu1HkTableDataset.outEnabledPLOC.value;
|
|
|
|
switchStates[Switches::PDU1_CH7_ACS_A_SIDE_3V3] =
|
|
|
|
pdu1HkTableDataset.outEnabledAcsBoardSideA.value;
|
|
|
|
switchStates[Switches::PDU1_CH8_UNOCCUPIED] = pdu1HkTableDataset.outEnabledChannel8.value;
|
2022-01-17 15:58:27 +01:00
|
|
|
} else {
|
|
|
|
sif::debug << "PCDUHandler::updatePdu1SwitchStates: Failed to read dataset" << std::endl;
|
|
|
|
}
|
2021-02-01 11:17:20 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
LocalDataPoolManager* PCDUHandler::getHkManagerHandle() { return &poolManager; }
|
2021-01-28 14:55:21 +01:00
|
|
|
|
|
|
|
void PCDUHandler::sendSwitchCommand(uint8_t switchNr, ReturnValue_t onOff) const {
|
2022-03-03 15:37:36 +01:00
|
|
|
using namespace pcduSwitches;
|
2022-01-17 15:58:27 +01:00
|
|
|
ReturnValue_t result;
|
2022-03-03 15:37:36 +01:00
|
|
|
uint16_t memoryAddress = 0;
|
2022-01-17 15:58:27 +01:00
|
|
|
size_t parameterValueSize = sizeof(uint8_t);
|
2022-03-03 15:37:36 +01:00
|
|
|
uint8_t parameterValue = 0;
|
|
|
|
GomspaceDeviceHandler* pdu = nullptr;
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
switch (switchNr) {
|
2022-03-03 15:37:36 +01:00
|
|
|
case pcduSwitches::PDU1_CH0_TCS_BOARD_3V3: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_TCS_BOARD_3V3;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH1_SYRLINKS_12V: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_SYRLINKS;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH2_STAR_TRACKER_5V: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_STAR_TRACKER;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH3_MGT_5V: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_MGT;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
2022-03-03 15:43:21 +01:00
|
|
|
case pcduSwitches::PDU1_CH4_SUS_NOMINAL_3V3: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_SUS_NOMINAL;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH5_SOLAR_CELL_EXP_5V: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_SOLAR_CELL_EXP;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH6_PLOC_12V: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_PLOC;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH7_ACS_A_SIDE_3V3: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_ACS_BOARD_SIDE_A;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU1_CH8_UNOCCUPIED: {
|
|
|
|
memoryAddress = PDU1::CONFIG_ADDRESS_OUT_EN_CHANNEL8;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU1_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// That does not really make sense but let's keep it here for completeness reasons..
|
|
|
|
case pcduSwitches::PDU2_CH0_Q7S: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_Q7S;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU2_CH1_PL_PCDU_BATT_0_14V8: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_PAYLOAD_PCDU_CH1;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU2_CH2_RW_5V: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_RW;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
2022-03-03 15:37:36 +01:00
|
|
|
case pcduSwitches::PDU2_CH3_TCS_BOARD_HEATER_IN_8V: {
|
2022-01-17 15:58:27 +01:00
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_TCS_BOARD_HEATER_IN;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
2022-03-03 15:37:36 +01:00
|
|
|
}
|
2022-03-03 15:43:21 +01:00
|
|
|
case pcduSwitches::PDU2_CH4_SUS_REDUNDANT_3V3: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_SUS_REDUNDANT;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
2022-03-03 15:37:36 +01:00
|
|
|
case pcduSwitches::PDU2_CH5_DEPLOYMENT_MECHANISM_8V: {
|
2022-01-17 15:58:27 +01:00
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_DEPLOYMENT_MECHANISM;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
2022-03-03 15:37:36 +01:00
|
|
|
}
|
2022-03-03 15:43:21 +01:00
|
|
|
case pcduSwitches::PDU2_CH6_PL_PCDU_BATT_1_14V8: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_PAYLOAD_PCDU_CH6;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU2_CH7_ACS_BOARD_SIDE_B_3V3: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_ACS_BOARD_SIDE_B;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case pcduSwitches::PDU2_CH8_PAYLOAD_CAMERA: {
|
|
|
|
memoryAddress = PDU2::CONFIG_ADDRESS_OUT_EN_PAYLOAD_CAMERA;
|
|
|
|
pdu = ObjectManager::instance()->get<GomspaceDeviceHandler>(objects::PDU2_HANDLER);
|
|
|
|
break;
|
|
|
|
}
|
2022-03-03 15:37:36 +01:00
|
|
|
|
|
|
|
default: {
|
2022-01-17 15:58:27 +01:00
|
|
|
sif::error << "PCDUHandler::sendSwitchCommand: Invalid switch number " << std::endl;
|
|
|
|
return;
|
2022-03-03 15:37:36 +01:00
|
|
|
}
|
2022-01-17 15:58:27 +01:00
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
switch (onOff) {
|
2021-01-28 14:55:21 +01:00
|
|
|
case PowerSwitchIF::SWITCH_ON:
|
2022-01-17 15:58:27 +01:00
|
|
|
parameterValue = 1;
|
|
|
|
break;
|
2021-01-28 14:55:21 +01:00
|
|
|
case PowerSwitchIF::SWITCH_OFF:
|
2022-01-17 15:58:27 +01:00
|
|
|
parameterValue = 0;
|
|
|
|
break;
|
2021-01-28 14:55:21 +01:00
|
|
|
default:
|
2022-01-17 15:58:27 +01:00
|
|
|
sif::error << "PCDUHandler::sendSwitchCommand: Invalid state commanded" << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
GomspaceSetParamMessage setParamMessage(memoryAddress, ¶meterValue, parameterValueSize);
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
size_t serializedLength = 0;
|
|
|
|
uint8_t command[4];
|
|
|
|
uint8_t* commandPtr = command;
|
|
|
|
size_t maxSize = sizeof(command);
|
|
|
|
setParamMessage.serialize(&commandPtr, &serializedLength, maxSize, SerializeIF::Endianness::BIG);
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
store_address_t storeAddress;
|
|
|
|
result = IPCStore->addData(&storeAddress, command, sizeof(command));
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
CommandMessage message;
|
|
|
|
ActionMessage::setCommand(&message, GOMSPACE::PARAM_SET, storeAddress);
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
result = commandQueue->sendMessage(pdu->getCommandQueue(), &message, 0);
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
sif::debug << "PCDUHandler::sendSwitchCommand: Failed to send message to PDU Handler"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
void PCDUHandler::sendFuseOnCommand(uint8_t fuseNr) const {}
|
|
|
|
|
|
|
|
ReturnValue_t PCDUHandler::getSwitchState(uint8_t switchNr) const {
|
|
|
|
if (switchNr >= pcduSwitches::NUMBER_OF_SWITCHES) {
|
|
|
|
sif::debug << "PCDUHandler::getSwitchState: Invalid switch number" << std::endl;
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
2022-03-03 19:39:36 +01:00
|
|
|
pwrMutex->lockMutex();
|
|
|
|
uint8_t currentState = switchStates[switchNr];
|
|
|
|
pwrMutex->unlockMutex();
|
|
|
|
if (currentState == 1) {
|
2022-01-17 15:58:27 +01:00
|
|
|
return PowerSwitchIF::SWITCH_ON;
|
|
|
|
} else {
|
|
|
|
return PowerSwitchIF::SWITCH_OFF;
|
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
ReturnValue_t PCDUHandler::getFuseState(uint8_t fuseNr) const { return RETURN_OK; }
|
|
|
|
|
|
|
|
uint32_t PCDUHandler::getSwitchDelayMs(void) const { return 20000; }
|
|
|
|
|
|
|
|
object_id_t PCDUHandler::getObjectId() const { return SystemObject::getObjectId(); }
|
|
|
|
|
|
|
|
ReturnValue_t PCDUHandler::initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
|
|
|
|
LocalDataPoolManager& poolManager) {
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_Q7S, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_PAYLOAD_PCDU_CH1,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_RW, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_TCS_BOARD_HEATER_IN,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_SUS_REDUNDANT, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_DEPLOYMENT_MECHANISM,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_PAYLOAD_PCDU_CH6,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_ACS_BOARD_SIDE_B,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CURRENT_OUT_PAYLOAD_CAMERA, new PoolEntry<int16_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_Q7S, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_PAYLOAD_PCDU_CH1,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_RW, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_TCS_BOARD_HEATER_IN,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_SUS_REDUNDANT, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_DEPLOYMENT_MECHANISM,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_PAYLOAD_PCDU_CH6,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_ACS_BOARD_SIDE_B,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VOLTAGE_OUT_PAYLOAD_CAMERA, new PoolEntry<int16_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VCC, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_VBAT, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_TEMPERATURE, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CONV_EN_1, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CONV_EN_2, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_CONV_EN_3, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_Q7S,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_Q7S}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_PAYLOAD_PCDU_CH1,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_PAYLOAD_PCDU_CH1}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_RW,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_RW}));
|
2021-07-19 12:44:43 +02:00
|
|
|
#if BOARD_TE0720 == 1
|
2022-01-17 15:58:27 +01:00
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_TCS_BOARD_HEATER_IN, new PoolEntry<uint8_t>({1}));
|
2021-02-01 11:17:20 +01:00
|
|
|
#else
|
2022-01-17 15:58:27 +01:00
|
|
|
localDataPoolMap.emplace(
|
|
|
|
P60System::PDU2_OUT_EN_TCS_BOARD_HEATER_IN,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_TCS_BOARD_8V_HEATER_IN}));
|
2021-02-01 11:17:20 +01:00
|
|
|
#endif
|
2022-01-17 15:58:27 +01:00
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_SUS_REDUNDANT,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_SUS_REDUNDANT}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_DEPLOYMENT_MECHANISM,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_DEPLOYMENT_MECHANISM}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_PAYLOAD_PCDU_CH6,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_PAYLOAD_PCDU_CH6}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_ACS_BOARD_SIDE_B,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_ACS_BOARD_SIDE_B}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_OUT_EN_PAYLOAD_CAMERA,
|
|
|
|
new PoolEntry<uint8_t>({pcduSwitches::INIT_STATE_PAYLOAD_CAMERA}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_BOOTCAUSE, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_BOOTCNT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_UPTIME, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_RESETCAUSE, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_BATT_MODE, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_Q7S, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_PAYLOAD_PCDU_CH1, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_RW, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_TCS_BOARD_HEATER_IN,
|
|
|
|
new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_TCS_BOARD_HEATER_IN,
|
|
|
|
new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_SUS_REDUNDANT, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_DEPLOYMENT_MECHANISM,
|
|
|
|
new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_PAYLOAD_PCDU_CH6, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_ACS_BOARD_SIDE_B, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_LATCHUP_PAYLOAD_CAMERA, new PoolEntry<uint16_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_0, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_1, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_2, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_3, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_4, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_5, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_6, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_7, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_0_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_1_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_2_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_3_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_4_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_5_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_6_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_DEVICE_7_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CNT_GND, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CNT_I2C, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CNT_CAN, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CNT_CSP1, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CNT_CSP2, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_GND_LEFT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_I2C_LEFT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CAN_LEFT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CSP_LEFT1, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU2_WDT_CSP_LEFT2, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_TCS_BOARD_3V3, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_SYRLINKS, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_STAR_TRACKER, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_MGT, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_SUS_NOMINAL, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_SOLAR_CELL_EXP, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_PLOC, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_ACS_BOARD_SIDE_A,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CURRENT_OUT_CHANNEL8, new PoolEntry<int16_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_TCS_BOARD_3V3, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_SYRLINKS, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_STAR_TRACKER, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_MGT, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_SUS_NOMINAL, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_SOLAR_CELL_EXP, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_PLOC, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_ACS_BOARD_SIDE_A,
|
|
|
|
new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VOLTAGE_OUT_CHANNEL8, new PoolEntry<int16_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VCC, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_VBAT, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_TEMPERATURE, new PoolEntry<int16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CONV_EN_1, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CONV_EN_2, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_CONV_EN_3, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_TCS_BOARD_3V3, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_SYRLINKS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_STAR_TRACKER, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_MGT, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_SUS_NOMINAL, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_SOLAR_CELL_EXP, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_PLOC, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_ACS_BOARD_SIDE_A, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_OUT_EN_CHANNEL8, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_BOOTCAUSE, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_BOOTCNT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_UPTIME, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_RESETCAUSE, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_BATT_MODE, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_TCS_BOARD_3V3, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_SYRLINKS, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_STAR_TRACKER, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_MGT, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_SUS_NOMINAL, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_SOLAR_CELL_EXP, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_PLOC, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_ACS_BOARD_SIDE_A, new PoolEntry<uint16_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_LATCHUP_CHANNEL8, new PoolEntry<uint16_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_0, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_1, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_2, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_3, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_4, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_5, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_6, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_7, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_0_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_1_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_2_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_3_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_4_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_5_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_6_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_DEVICE_7_STATUS, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CNT_GND, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CNT_I2C, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CNT_CAN, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CNT_CSP1, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CNT_CSP2, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_GND_LEFT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_I2C_LEFT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CAN_LEFT, new PoolEntry<uint32_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CSP_LEFT1, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::PDU1_WDT_CSP_LEFT2, new PoolEntry<uint8_t>({0}));
|
|
|
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t PCDUHandler::initializeAfterTaskCreation() {
|
2022-01-17 15:58:27 +01:00
|
|
|
if (executingTask != nullptr) {
|
|
|
|
pstIntervalMs = executingTask->getPeriodMs();
|
|
|
|
}
|
|
|
|
this->poolManager.initializeAfterTaskCreation();
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
initializeSwitchStates();
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
uint32_t PCDUHandler::getPeriodicOperationFrequency() const { return pstIntervalMs; }
|
2021-01-28 14:55:21 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
void PCDUHandler::setTaskIF(PeriodicTaskIF* task) { executingTask = task; }
|
2021-01-28 14:55:21 +01:00
|
|
|
|
|
|
|
LocalPoolDataSetBase* PCDUHandler::getDataSetHandle(sid_t sid) {
|
2022-01-17 15:58:27 +01:00
|
|
|
if (sid == pdu2HkTableDataset.getSid()) {
|
|
|
|
return &pdu2HkTableDataset;
|
|
|
|
} else {
|
|
|
|
sif::error << "PCDUHandler::getDataSetHandle: Invalid sid" << std::endl;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-01-28 14:55:21 +01:00
|
|
|
}
|