Jakob Meier
89757c447c
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
556 lines
23 KiB
C++
556 lines
23 KiB
C++
#include "GomspaceDeviceHandler.h"
|
|
|
|
#include <common/config/commonObjects.h>
|
|
#include <fsfw/datapool/PoolReadGuard.h>
|
|
|
|
#include "devicedefinitions/GomSpacePackets.h"
|
|
#include "devicedefinitions/powerDefinitions.h"
|
|
|
|
GomspaceDeviceHandler::GomspaceDeviceHandler(object_id_t objectId, object_id_t comIF,
|
|
CookieIF* comCookie, FailureIsolationBase* customFdir,
|
|
uint16_t maxConfigTableAddress,
|
|
uint16_t maxHkTableAddress, uint16_t hkTableReplySize)
|
|
: DeviceHandlerBase(objectId, comIF, comCookie, customFdir),
|
|
maxConfigTableAddress(maxConfigTableAddress),
|
|
maxHkTableAddress(maxHkTableAddress),
|
|
hkTableReplySize(hkTableReplySize) {
|
|
if (comCookie == nullptr) {
|
|
sif::error << "GomspaceDeviceHandler::GomspaceDeviceHandler: Invalid com cookie" << std::endl;
|
|
}
|
|
}
|
|
|
|
GomspaceDeviceHandler::~GomspaceDeviceHandler() {}
|
|
|
|
void GomspaceDeviceHandler::doStartUp() {}
|
|
|
|
void GomspaceDeviceHandler::doShutDown() {}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::buildNormalDeviceCommand(DeviceCommandId_t* id) {
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::buildTransitionDeviceCommand(DeviceCommandId_t* id) {
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::buildCommandFromCommand(DeviceCommandId_t deviceCommand,
|
|
const uint8_t* commandData,
|
|
size_t commandDataLen) {
|
|
ReturnValue_t result = childCommandHook(deviceCommand, commandData, commandDataLen);
|
|
switch (deviceCommand) {
|
|
case (GOMSPACE::PING): {
|
|
result = generatePingCommand(commandData, commandDataLen);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
break;
|
|
}
|
|
case (GOMSPACE::REBOOT): {
|
|
generateRebootCommand();
|
|
break;
|
|
}
|
|
case (GOMSPACE::PARAM_SET): {
|
|
result = generateSetParamCommand(commandData, commandDataLen);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
break;
|
|
}
|
|
case (GOMSPACE::PARAM_GET): {
|
|
result = generateGetParamCommand(commandData, commandDataLen);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
break;
|
|
}
|
|
case (GOMSPACE::GNDWDT_RESET): {
|
|
result = generateResetWatchdogCmd();
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
break;
|
|
}
|
|
case (GOMSPACE::PRINT_SWITCH_V_I):
|
|
case (GOMSPACE::PRINT_LATCHUPS): {
|
|
result = printStatus(deviceCommand);
|
|
break;
|
|
}
|
|
case (GOMSPACE::REQUEST_HK_TABLE): {
|
|
result = generateRequestFullHkTableCmd(hkTableReplySize);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
return DeviceHandlerIF::COMMAND_NOT_IMPLEMENTED;
|
|
}
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
void GomspaceDeviceHandler::fillCommandAndReplyMap() {
|
|
this->insertInCommandAndReplyMap(GOMSPACE::PING, 3);
|
|
this->insertInCommandMap(GOMSPACE::REBOOT);
|
|
this->insertInCommandAndReplyMap(GOMSPACE::PARAM_SET, 3);
|
|
this->insertInCommandAndReplyMap(GOMSPACE::PARAM_GET, 3);
|
|
this->insertInCommandAndReplyMap(GOMSPACE::REQUEST_HK_TABLE, 3);
|
|
this->insertInCommandMap(GOMSPACE::GNDWDT_RESET);
|
|
this->insertInCommandMap(GOMSPACE::PRINT_SWITCH_V_I);
|
|
this->insertInCommandMap(GOMSPACE::PRINT_LATCHUPS);
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::scanForReply(const uint8_t* start, size_t remainingSize,
|
|
DeviceCommandId_t* foundId, size_t* foundLen) {
|
|
switch (rememberCommandId) {
|
|
case (GOMSPACE::PING):
|
|
*foundId = GOMSPACE::PING;
|
|
*foundLen = PING_REPLY_SIZE;
|
|
rememberCommandId = GOMSPACE::NONE;
|
|
break;
|
|
case (GOMSPACE::PARAM_GET): {
|
|
*foundId = GOMSPACE::PARAM_GET;
|
|
*foundLen = rememberRequestedSize + GOMSPACE::GS_HDR_LENGTH;
|
|
rememberCommandId = GOMSPACE::NONE;
|
|
break;
|
|
}
|
|
case (GOMSPACE::PARAM_SET): {
|
|
*foundId = GOMSPACE::PARAM_SET;
|
|
*foundLen = rememberRequestedSize;
|
|
rememberCommandId = GOMSPACE::NONE;
|
|
break;
|
|
}
|
|
case (GOMSPACE::REQUEST_HK_TABLE): {
|
|
*foundId = GOMSPACE::REQUEST_HK_TABLE;
|
|
*foundLen = rememberRequestedSize + GOMSPACE::GS_HDR_LENGTH;
|
|
rememberCommandId = GOMSPACE::NONE;
|
|
break;
|
|
}
|
|
default:
|
|
return IGNORE_REPLY_DATA;
|
|
}
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::interpretDeviceReply(DeviceCommandId_t id,
|
|
const uint8_t* packet) {
|
|
switch (id) {
|
|
case (GOMSPACE::PING): {
|
|
SerializeElement<uint32_t> replyTime = *packet;
|
|
handleDeviceTM(&replyTime, id, true);
|
|
break;
|
|
}
|
|
case (GOMSPACE::PARAM_GET): {
|
|
// -2 to subtract address size from gomspace parameter reply packet
|
|
uint16_t payloadLength = (*(packet + 2) << 8 | *(packet + 3)) - 2;
|
|
if (payloadLength > sizeof(uint32_t)) {
|
|
sif::error << "GomspaceDeviceHandler: PARAM_GET: Invalid payload "
|
|
<< "size in reply" << std::endl;
|
|
return INVALID_PAYLOAD_SIZE;
|
|
}
|
|
uint8_t tempPayloadBuffer[payloadLength];
|
|
/* Extract information from received data */
|
|
CspGetParamReply cspGetParamReply(tempPayloadBuffer, payloadLength);
|
|
size_t size = GOMSPACE::GS_HDR_LENGTH + payloadLength;
|
|
ReturnValue_t result =
|
|
cspGetParamReply.deSerialize(&packet, &size, SerializeIF::Endianness::BIG);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler: Failed to deserialize get parameter"
|
|
<< "reply" << std::endl;
|
|
return result;
|
|
}
|
|
uint8_t action = cspGetParamReply.getAction();
|
|
uint8_t tableId = cspGetParamReply.getTableId();
|
|
uint16_t address = cspGetParamReply.getAddress();
|
|
/* Pack relevant information into a tm packet */
|
|
ParamReply paramReply(action, tableId, address, payloadLength, tempPayloadBuffer);
|
|
handleDeviceTM(¶mReply, id, true);
|
|
break;
|
|
}
|
|
case (GOMSPACE::PARAM_SET): {
|
|
/* When setting a parameter, the p60dock sends back the state of the
|
|
* operation */
|
|
if (*packet != PARAM_SET_OK) {
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
}
|
|
setParamCallback(setParamCacher, true);
|
|
break;
|
|
}
|
|
case (GOMSPACE::REQUEST_HK_TABLE): {
|
|
letChildHandleHkReply(id, packet);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
void GomspaceDeviceHandler::setNormalDatapoolEntriesInvalid() {}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::generateSetParamCommand(const uint8_t* commandData,
|
|
size_t commandDataLen) {
|
|
ReturnValue_t result =
|
|
setParamCacher.deSerialize(&commandData, &commandDataLen, SerializeIF::Endianness::BIG);
|
|
// This breaks layering but I really don't want to accept this command..
|
|
if (setParamCacher.getAddress() == PDU2::CONFIG_ADDRESS_OUT_EN_Q7S and
|
|
this->getObjectId() == objects::PDU2_HANDLER) {
|
|
triggerEvent(power::SWITCHING_Q7S_DENIED, 0, 0);
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
}
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler: Failed to deserialize set parameter "
|
|
"message"
|
|
<< std::endl;
|
|
return result;
|
|
}
|
|
result = setParamCallback(setParamCacher, false);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
/* Get and check address */
|
|
uint16_t address = setParamCacher.getAddress();
|
|
if (address > maxConfigTableAddress) {
|
|
sif::error << "GomspaceDeviceHandler: Invalid address for set parameter "
|
|
<< "action" << std::endl;
|
|
return INVALID_ADDRESS;
|
|
}
|
|
uint16_t checksum = GOMSPACE::IGNORE_CHECKSUM;
|
|
uint16_t seq = 0;
|
|
uint16_t total = 0;
|
|
/* CSP reply only contains the transaction state */
|
|
uint16_t querySize = 1;
|
|
const uint8_t* parameterPtr = setParamCacher.getParameter();
|
|
uint8_t parameterSize = setParamCacher.getParameterSize();
|
|
uint16_t payloadlength = sizeof(address) + parameterSize;
|
|
|
|
/* Generate command for CspComIF */
|
|
CspSetParamCommand setParamCmd(querySize, payloadlength, checksum, seq, total, address,
|
|
parameterPtr, parameterSize);
|
|
size_t cspPacketLen = 0;
|
|
uint8_t* buffer = cspPacket;
|
|
result = setParamCmd.serialize(&buffer, &cspPacketLen, sizeof(cspPacket),
|
|
SerializeIF::Endianness::BIG);
|
|
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler: Failed to serialize command for "
|
|
<< "CspComIF" << std::endl;
|
|
return result;
|
|
}
|
|
if (cspPacketLen > MAX_PACKET_LEN) {
|
|
sif::error << "GomspaceDeviceHandler: Invalid length of set parameter "
|
|
"command"
|
|
<< std::endl;
|
|
return PACKET_TOO_LONG;
|
|
}
|
|
rawPacket = cspPacket;
|
|
rawPacketLen = cspPacketLen;
|
|
rememberRequestedSize = querySize;
|
|
rememberCommandId = GOMSPACE::PARAM_SET;
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::generateGetParamCommand(const uint8_t* commandData,
|
|
size_t commandDataLen) {
|
|
ReturnValue_t result;
|
|
/* Unpack the received action message */
|
|
GetParamMessageUnpacker getParamMessage;
|
|
result = getParamMessage.deSerialize(&commandData, &commandDataLen, SerializeIF::Endianness::BIG);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "Failed to deserialize message to extract information "
|
|
"from get parameter message"
|
|
<< std::endl;
|
|
return result;
|
|
}
|
|
/* Get an check table id to read from */
|
|
uint8_t tableId = getParamMessage.getTableId();
|
|
if (tableId != CONFIG_TABLE_ID && tableId != HK_TABLE_ID) {
|
|
sif::error << "GomspaceDeviceHandler: Invalid table id in get parameter"
|
|
" message"
|
|
<< std::endl;
|
|
return INVALID_TABLE_ID;
|
|
}
|
|
/* Get and check address */
|
|
uint16_t address = getParamMessage.getAddress();
|
|
if (address > maxHkTableAddress && tableId == HK_TABLE_ID) {
|
|
sif::error << "GomspaceDeviceHandler: Invalid address to get parameter from "
|
|
<< "housekeeping table" << std::endl;
|
|
return INVALID_ADDRESS;
|
|
}
|
|
if (address > maxConfigTableAddress && tableId == CONFIG_TABLE_ID) {
|
|
sif::error << "GomspaceDeviceHandler: Invalid address to get parameter from "
|
|
<< "configuration table" << std::endl;
|
|
return INVALID_ADDRESS;
|
|
}
|
|
uint16_t length = sizeof(address);
|
|
uint16_t checksum = GOMSPACE::IGNORE_CHECKSUM;
|
|
uint16_t seq = 0;
|
|
uint16_t total = 0;
|
|
uint8_t parameterSize = getParamMessage.getParameterSize();
|
|
if (parameterSize > sizeof(uint32_t)) {
|
|
sif::error << "GomspaceDeviceHandler: GET_PARAM: Invalid parameter "
|
|
<< "size" << std::endl;
|
|
return INVALID_PARAM_SIZE;
|
|
}
|
|
uint16_t querySize = parameterSize + GOMSPACE::GS_HDR_LENGTH;
|
|
|
|
/* Generate the CSP command to send to the P60 Dock */
|
|
CspGetParamCommand getParamCmd(querySize, tableId, length, checksum, seq, total, address);
|
|
size_t cspPacketLen = 0;
|
|
uint8_t* buffer = cspPacket;
|
|
result = getParamCmd.serialize(&buffer, &cspPacketLen, sizeof(cspPacket),
|
|
SerializeIF::Endianness::BIG);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler: Failed to serialize command to "
|
|
<< "get parameter" << std::endl;
|
|
}
|
|
if (cspPacketLen > MAX_PACKET_LEN) {
|
|
sif::error << "GomspaceDeviceHandler: Received invalid get parameter "
|
|
"command"
|
|
<< std::endl;
|
|
return PACKET_TOO_LONG;
|
|
}
|
|
rawPacket = cspPacket;
|
|
rawPacketLen = cspPacketLen;
|
|
rememberRequestedSize = querySize;
|
|
rememberCommandId = GOMSPACE::PARAM_GET;
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::generatePingCommand(const uint8_t* commandData,
|
|
size_t commandDataLen) {
|
|
CspPingCommand cspPingCommand(commandData, commandDataLen);
|
|
size_t cspPacketLen = 0;
|
|
uint8_t* buffer = cspPacket;
|
|
ReturnValue_t result = cspPingCommand.serialize(&buffer, &cspPacketLen, sizeof(cspPacket),
|
|
SerializeIF::Endianness::BIG);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler: Failed to serialize ping command" << std::endl;
|
|
return result;
|
|
}
|
|
if (cspPacketLen > MAX_PACKET_LEN) {
|
|
sif::error << "GomspaceDeviceHandler: Received invalid ping message" << std::endl;
|
|
return PACKET_TOO_LONG;
|
|
}
|
|
rawPacket = cspPacket;
|
|
rawPacketLen = cspPacketLen;
|
|
rememberCommandId = GOMSPACE::PING;
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
void GomspaceDeviceHandler::generateRebootCommand() {
|
|
uint8_t cspPort = GOMSPACE::REBOOT_PORT;
|
|
uint16_t querySize = 0;
|
|
*cspPacket = GOMSPACE::REBOOT_PORT;
|
|
*(cspPacket + 1) = querySize;
|
|
size_t cspPacketLen = sizeof(cspPort) + sizeof(cspPacketLen);
|
|
rawPacket = cspPacket;
|
|
rawPacketLen = cspPacketLen;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::childCommandHook(DeviceCommandId_t cmd,
|
|
const uint8_t* commandData,
|
|
size_t commandDataLen) {
|
|
return DeviceHandlerIF::COMMAND_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::setParamCallback(SetParamMessageUnpacker& unpacker,
|
|
bool afterExecution) {
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::initializePduPool(
|
|
localpool::DataPool& localDataPoolMap, LocalDataPoolManager& poolManager,
|
|
std::array<uint8_t, PDU::CHANNELS_LEN> initOutEnb) {
|
|
localDataPoolMap.emplace(P60System::pool::PDU_CURRENTS, new PoolEntry<int16_t>(9));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_VOLTAGES, new PoolEntry<int16_t>(9));
|
|
|
|
localDataPoolMap.emplace(P60System::pool::PDU_VCC, new PoolEntry<int16_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_VBAT, new PoolEntry<int16_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_TEMPERATURE, new PoolEntry<float>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_CONV_EN, new PoolEntry<uint8_t>(3));
|
|
|
|
localDataPoolMap.emplace(P60System::pool::PDU_OUT_ENABLE,
|
|
new PoolEntry<uint8_t>(initOutEnb.data(), initOutEnb.size()));
|
|
|
|
localDataPoolMap.emplace(P60System::pool::PDU_BOOTCAUSE, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_BOOTCNT, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_UPTIME, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_RESETCAUSE, new PoolEntry<uint16_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_BATT_MODE, new PoolEntry<uint8_t>({0}));
|
|
|
|
localDataPoolMap.emplace(P60System::pool::PDU_LATCHUPS, new PoolEntry<uint16_t>(9));
|
|
|
|
localDataPoolMap.emplace(P60System::pool::PDU_DEVICES, new PoolEntry<uint8_t>(8));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_STATUSES, new PoolEntry<uint8_t>(8));
|
|
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CNT_GND, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CNT_I2C, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CNT_CAN, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CNT_CSP1, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CNT_CSP2, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_GND_LEFT, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_I2C_LEFT, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CAN_LEFT, new PoolEntry<uint32_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CSP_LEFT1, new PoolEntry<uint8_t>({0}));
|
|
localDataPoolMap.emplace(P60System::pool::PDU_WDT_CSP_LEFT2, new PoolEntry<uint8_t>({0}));
|
|
return RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::generateResetWatchdogCmd() {
|
|
WatchdogResetCommand watchdogResetCommand;
|
|
size_t cspPacketLen = 0;
|
|
uint8_t* buffer = cspPacket;
|
|
ReturnValue_t result = watchdogResetCommand.serialize(&buffer, &cspPacketLen, sizeof(cspPacket),
|
|
SerializeIF::Endianness::BIG);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler: Failed to serialize watchdog reset "
|
|
<< "command" << std::endl;
|
|
return result;
|
|
}
|
|
rawPacket = cspPacket;
|
|
rawPacketLen = cspPacketLen;
|
|
rememberRequestedSize = 0; // No bytes will be queried with the ground
|
|
// watchdog command.
|
|
rememberCommandId = GOMSPACE::GNDWDT_RESET;
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::generateRequestFullHkTableCmd(uint16_t hkTableReplySize) {
|
|
uint16_t querySize = hkTableReplySize;
|
|
uint8_t tableId = HK_TABLE_ID;
|
|
RequestFullTableCommand requestFullTableCommand(querySize, tableId);
|
|
|
|
size_t cspPacketLen = 0;
|
|
uint8_t* buffer = cspPacket;
|
|
ReturnValue_t result = requestFullTableCommand.serialize(
|
|
&buffer, &cspPacketLen, sizeof(cspPacket), SerializeIF::Endianness::BIG);
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "GomspaceDeviceHandler::generateRequestFullHkTableCmd Failed to serialize "
|
|
"full table request command "
|
|
<< std::endl;
|
|
return result;
|
|
}
|
|
rawPacket = cspPacket;
|
|
rawPacketLen = cspPacketLen;
|
|
rememberRequestedSize = querySize;
|
|
rememberCommandId = GOMSPACE::REQUEST_HK_TABLE;
|
|
return RETURN_OK;
|
|
}
|
|
|
|
uint32_t GomspaceDeviceHandler::getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) { return 0; }
|
|
|
|
void GomspaceDeviceHandler::setModeNormal() { mode = MODE_NORMAL; }
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::printStatus(DeviceCommandId_t cmd) {
|
|
sif::info << "No printHkTable implementation given.." << std::endl;
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t GomspaceDeviceHandler::parsePduHkTable(PDU::PduCoreHk& coreHk, PDU::PduAuxHk& auxHk,
|
|
const uint8_t* packet) {
|
|
uint16_t dataOffset = 0;
|
|
PoolReadGuard pg0(&coreHk);
|
|
PoolReadGuard pg1(&auxHk);
|
|
if (pg0.getReadResult() != HasReturnvaluesIF::RETURN_OK or
|
|
pg1.getReadResult() != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::warning << "Reading PDU1 datasets failed!" << std::endl;
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
}
|
|
/* Fist 10 bytes contain the gomspace header. Each variable is preceded by the 16-bit table
|
|
* address. */
|
|
dataOffset += 12;
|
|
for (uint8_t idx = 0; idx < PDU::CHANNELS_LEN; idx++) {
|
|
coreHk.currents[idx] = (packet[dataOffset] << 8) | packet[dataOffset + 1];
|
|
dataOffset += 4;
|
|
}
|
|
for (uint8_t idx = 0; idx < PDU::CHANNELS_LEN; idx++) {
|
|
coreHk.voltages[idx] = (packet[dataOffset] << 8) | packet[dataOffset + 1];
|
|
dataOffset += 4;
|
|
}
|
|
|
|
auxHk.vcc = *(packet + dataOffset) << 8 | *(packet + dataOffset + 1);
|
|
dataOffset += 4;
|
|
auxHk.vbat = *(packet + dataOffset) << 8 | *(packet + dataOffset + 1);
|
|
dataOffset += 4;
|
|
coreHk.temperature =
|
|
static_cast<int16_t>(*(packet + dataOffset) << 8 | *(packet + dataOffset + 1)) * 0.1;
|
|
dataOffset += 4;
|
|
|
|
for (uint8_t idx = 0; idx < 3; idx++) {
|
|
auxHk.converterEnable[idx] = packet[dataOffset];
|
|
dataOffset += 3;
|
|
}
|
|
|
|
for (uint8_t idx = 0; idx < PDU::CHANNELS_LEN; idx++) {
|
|
coreHk.outputEnables[idx] = packet[dataOffset];
|
|
dataOffset += 3;
|
|
}
|
|
|
|
auxHk.bootcause = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
coreHk.bootcount = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.uptime = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.resetcause = *(packet + dataOffset + 1) << 8 | *(packet + dataOffset);
|
|
dataOffset += 4;
|
|
coreHk.battMode = *(packet + dataOffset);
|
|
/* +10 because here begins the second gomspace csp packet */
|
|
dataOffset += 3 + 10;
|
|
|
|
for (uint8_t idx = 0; idx < PDU::CHANNELS_LEN; idx++) {
|
|
auxHk.latchups[idx] = *(packet + dataOffset) << 8 | *(packet + dataOffset + 1);
|
|
dataOffset += 4;
|
|
}
|
|
|
|
for (uint8_t idx = 0; idx < PDU::DEVICES_NUM; idx++) {
|
|
auxHk.deviceTypes[idx] = *(packet + dataOffset);
|
|
dataOffset += 3;
|
|
}
|
|
for (uint8_t idx = 0; idx < PDU::DEVICES_NUM; idx++) {
|
|
auxHk.devicesStatus[idx] = *(packet + dataOffset);
|
|
dataOffset += 3;
|
|
}
|
|
|
|
auxHk.gndWdtReboots = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.i2cWdtReboots = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.canWdtReboots = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.csp1WdtReboots = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.csp2WdtReboots = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.groundWatchdogSecondsLeft = *(packet + dataOffset) << 24 |
|
|
*(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.i2cWatchdogSecondsLeft = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.canWatchdogSecondsLeft = *(packet + dataOffset) << 24 | *(packet + dataOffset + 1) << 16 |
|
|
*(packet + dataOffset + 2) << 8 | *(packet + dataOffset + 3);
|
|
dataOffset += 6;
|
|
auxHk.csp1WatchdogPingsLeft = *(packet + dataOffset);
|
|
dataOffset += 3;
|
|
auxHk.csp2WatchdogPingsLeft = *(packet + dataOffset);
|
|
|
|
coreHk.setChanged(true);
|
|
if (not coreHk.isValid()) {
|
|
coreHk.setValidity(true, true);
|
|
}
|
|
if (not auxHk.isValid()) {
|
|
auxHk.setValidity(true, true);
|
|
}
|
|
return RETURN_OK;
|
|
}
|