2021-09-26 22:22:55 +02:00
|
|
|
#include "MgmRM3100Handler.h"
|
|
|
|
|
|
|
|
#include "fsfw/datapool/PoolReadGuard.h"
|
|
|
|
#include "fsfw/devicehandlers/DeviceHandlerMessage.h"
|
2022-02-02 10:29:30 +01:00
|
|
|
#include "fsfw/globalfunctions/bitutility.h"
|
2021-09-26 22:22:55 +02:00
|
|
|
#include "fsfw/objectmanager/SystemObjectIF.h"
|
|
|
|
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
MgmRM3100Handler::MgmRM3100Handler(object_id_t objectId, object_id_t deviceCommunication,
|
|
|
|
CookieIF *comCookie, uint32_t transitionDelay)
|
|
|
|
: DeviceHandlerBase(objectId, deviceCommunication, comCookie),
|
|
|
|
primaryDataset(this),
|
|
|
|
transitionDelay(transitionDelay) {
|
2021-09-26 22:22:55 +02:00
|
|
|
#if FSFW_HAL_RM3100_MGM_DEBUG == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
debugDivider = new PeriodicOperationDivider(3);
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
MgmRM3100Handler::~MgmRM3100Handler() {}
|
|
|
|
|
|
|
|
void MgmRM3100Handler::doStartUp() {
|
2022-02-02 10:29:30 +01:00
|
|
|
switch (internalState) {
|
|
|
|
case (InternalState::NONE): {
|
|
|
|
internalState = InternalState::CONFIGURE_CMM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::CONFIGURE_CMM): {
|
|
|
|
internalState = InternalState::READ_CMM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::READ_CMM): {
|
|
|
|
if (commandExecuted) {
|
|
|
|
internalState = InternalState::STATE_CONFIGURE_TMRC;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::STATE_CONFIGURE_TMRC): {
|
|
|
|
if (commandExecuted) {
|
|
|
|
internalState = InternalState::STATE_READ_TMRC;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::STATE_READ_TMRC): {
|
|
|
|
if (commandExecuted) {
|
|
|
|
internalState = InternalState::NORMAL;
|
|
|
|
if (goToNormalModeAtStartup) {
|
|
|
|
setMode(MODE_NORMAL);
|
|
|
|
} else {
|
|
|
|
setMode(_MODE_TO_ON);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default: {
|
2022-02-02 10:29:30 +01:00
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
void MgmRM3100Handler::doShutDown() { setMode(_MODE_POWER_DOWN); }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmRM3100Handler::buildTransitionDeviceCommand(DeviceCommandId_t *id) {
|
|
|
|
size_t commandLen = 0;
|
|
|
|
switch (internalState) {
|
|
|
|
case (InternalState::NONE):
|
|
|
|
case (InternalState::NORMAL): {
|
|
|
|
return NOTHING_TO_SEND;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::CONFIGURE_CMM): {
|
|
|
|
*id = RM3100::CONFIGURE_CMM;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::READ_CMM): {
|
|
|
|
*id = RM3100::READ_CMM;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::STATE_CONFIGURE_TMRC): {
|
|
|
|
commandBuffer[0] = RM3100::TMRC_DEFAULT_VALUE;
|
|
|
|
commandLen = 1;
|
|
|
|
*id = RM3100::CONFIGURE_TMRC;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::STATE_READ_TMRC): {
|
|
|
|
*id = RM3100::READ_TMRC;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default:
|
2021-09-26 22:45:32 +02:00
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
// Might be a configuration error
|
|
|
|
sif::warning << "MgmRM3100Handler::buildTransitionDeviceCommand: "
|
|
|
|
"Unknown internal state"
|
|
|
|
<< std::endl;
|
2021-09-26 22:45:32 +02:00
|
|
|
#else
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::printWarning(
|
|
|
|
"MgmRM3100Handler::buildTransitionDeviceCommand: "
|
|
|
|
"Unknown internal state\n");
|
2021-09-26 22:45:32 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2022-02-02 10:29:30 +01:00
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
return buildCommandFromCommand(*id, commandBuffer, commandLen);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmRM3100Handler::buildCommandFromCommand(DeviceCommandId_t deviceCommand,
|
2022-02-02 10:29:30 +01:00
|
|
|
const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) {
|
|
|
|
switch (deviceCommand) {
|
|
|
|
case (RM3100::CONFIGURE_CMM): {
|
|
|
|
commandBuffer[0] = RM3100::CMM_REGISTER;
|
|
|
|
commandBuffer[1] = RM3100::CMM_VALUE;
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::READ_CMM): {
|
|
|
|
commandBuffer[0] = RM3100::CMM_REGISTER | RM3100::READ_MASK;
|
|
|
|
commandBuffer[1] = 0;
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::CONFIGURE_TMRC): {
|
|
|
|
return handleTmrcConfigCommand(deviceCommand, commandData, commandDataLen);
|
|
|
|
}
|
|
|
|
case (RM3100::READ_TMRC): {
|
|
|
|
commandBuffer[0] = RM3100::TMRC_REGISTER | RM3100::READ_MASK;
|
|
|
|
commandBuffer[1] = 0;
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::CONFIGURE_CYCLE_COUNT): {
|
|
|
|
return handleCycleCountConfigCommand(deviceCommand, commandData, commandDataLen);
|
|
|
|
}
|
|
|
|
case (RM3100::READ_CYCLE_COUNT): {
|
|
|
|
commandBuffer[0] = RM3100::CYCLE_COUNT_START_REGISTER | RM3100::READ_MASK;
|
|
|
|
std::memset(commandBuffer + 1, 0, 6);
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = 7;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::READ_DATA): {
|
|
|
|
commandBuffer[0] = RM3100::MEASUREMENT_REG_START | RM3100::READ_MASK;
|
|
|
|
std::memset(commandBuffer + 1, 0, 9);
|
|
|
|
rawPacketLen = 10;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default:
|
2022-02-02 10:29:30 +01:00
|
|
|
return DeviceHandlerIF::COMMAND_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
return RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmRM3100Handler::buildNormalDeviceCommand(DeviceCommandId_t *id) {
|
|
|
|
*id = RM3100::READ_DATA;
|
|
|
|
return buildCommandFromCommand(*id, nullptr, 0);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmRM3100Handler::scanForReply(const uint8_t *start, size_t len,
|
|
|
|
DeviceCommandId_t *foundId, size_t *foundLen) {
|
|
|
|
// For SPI, ID will always be the one of the last sent command
|
|
|
|
*foundId = this->getPendingCommand();
|
|
|
|
*foundLen = len;
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmRM3100Handler::interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) {
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
|
|
|
switch (id) {
|
|
|
|
case (RM3100::CONFIGURE_CMM):
|
|
|
|
case (RM3100::CONFIGURE_CYCLE_COUNT):
|
|
|
|
case (RM3100::CONFIGURE_TMRC): {
|
|
|
|
// We can only check whether write was successful with read operation
|
|
|
|
if (mode == _MODE_START_UP) {
|
|
|
|
commandExecuted = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::READ_CMM): {
|
|
|
|
uint8_t cmmValue = packet[1];
|
|
|
|
// We clear the seventh bit in any case
|
|
|
|
// because this one is zero sometimes for some reason
|
|
|
|
bitutil::clear(&cmmValue, 6);
|
|
|
|
if (cmmValue == cmmRegValue and internalState == InternalState::READ_CMM) {
|
|
|
|
commandExecuted = true;
|
|
|
|
} else {
|
|
|
|
// Attempt reconfiguration
|
|
|
|
internalState = InternalState::CONFIGURE_CMM;
|
|
|
|
return DeviceHandlerIF::DEVICE_REPLY_INVALID;
|
|
|
|
}
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (RM3100::READ_TMRC): {
|
|
|
|
if (packet[1] == tmrcRegValue) {
|
|
|
|
commandExecuted = true;
|
2021-09-26 22:22:55 +02:00
|
|
|
// Reading TMRC was commanded. Trigger event to inform ground
|
2022-02-02 10:29:30 +01:00
|
|
|
if (mode != _MODE_START_UP) {
|
|
|
|
triggerEvent(tmrcSet, tmrcRegValue, 0);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
} else {
|
|
|
|
// Attempt reconfiguration
|
|
|
|
internalState = InternalState::STATE_CONFIGURE_TMRC;
|
|
|
|
return DeviceHandlerIF::DEVICE_REPLY_INVALID;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::READ_CYCLE_COUNT): {
|
|
|
|
uint16_t cycleCountX = packet[1] << 8 | packet[2];
|
|
|
|
uint16_t cycleCountY = packet[3] << 8 | packet[4];
|
|
|
|
uint16_t cycleCountZ = packet[5] << 8 | packet[6];
|
|
|
|
if (cycleCountX != cycleCountRegValueX or cycleCountY != cycleCountRegValueY or
|
|
|
|
cycleCountZ != cycleCountRegValueZ) {
|
|
|
|
return DeviceHandlerIF::DEVICE_REPLY_INVALID;
|
|
|
|
}
|
|
|
|
// Reading TMRC was commanded. Trigger event to inform ground
|
|
|
|
if (mode != _MODE_START_UP) {
|
|
|
|
uint32_t eventParam1 = (cycleCountX << 16) | cycleCountY;
|
|
|
|
triggerEvent(cycleCountersSet, eventParam1, cycleCountZ);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (RM3100::READ_DATA): {
|
|
|
|
result = handleDataReadout(packet);
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default:
|
2022-02-02 10:29:30 +01:00
|
|
|
return DeviceHandlerIF::UNKNOWN_DEVICE_REPLY;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
return result;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmRM3100Handler::handleCycleCountConfigCommand(DeviceCommandId_t deviceCommand,
|
2022-02-02 10:29:30 +01:00
|
|
|
const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) {
|
|
|
|
if (commandData == nullptr) {
|
|
|
|
return DeviceHandlerIF::INVALID_COMMAND_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set cycle count
|
|
|
|
if (commandDataLen == 2) {
|
|
|
|
handleCycleCommand(true, commandData, commandDataLen);
|
|
|
|
} else if (commandDataLen == 6) {
|
|
|
|
handleCycleCommand(false, commandData, commandDataLen);
|
|
|
|
} else {
|
|
|
|
return DeviceHandlerIF::INVALID_COMMAND_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
commandBuffer[0] = RM3100::CYCLE_COUNT_VALUE;
|
|
|
|
std::memcpy(commandBuffer + 1, &cycleCountRegValueX, 2);
|
|
|
|
std::memcpy(commandBuffer + 3, &cycleCountRegValueY, 2);
|
|
|
|
std::memcpy(commandBuffer + 5, &cycleCountRegValueZ, 2);
|
|
|
|
rawPacketLen = 7;
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmRM3100Handler::handleCycleCommand(bool oneCycleValue, const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) {
|
|
|
|
RM3100::CycleCountCommand command(oneCycleValue);
|
|
|
|
ReturnValue_t result =
|
|
|
|
command.deSerialize(&commandData, &commandDataLen, SerializeIF::Endianness::BIG);
|
|
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
return result;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
// Data sheet p.30 "while noise limits the useful upper range to ~400 cycle counts."
|
|
|
|
if (command.cycleCountX > 450) {
|
|
|
|
return DeviceHandlerIF::INVALID_COMMAND_PARAMETER;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
if (not oneCycleValue and (command.cycleCountY > 450 or command.cycleCountZ > 450)) {
|
|
|
|
return DeviceHandlerIF::INVALID_COMMAND_PARAMETER;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
cycleCountRegValueX = command.cycleCountX;
|
|
|
|
cycleCountRegValueY = command.cycleCountY;
|
|
|
|
cycleCountRegValueZ = command.cycleCountZ;
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmRM3100Handler::handleTmrcConfigCommand(DeviceCommandId_t deviceCommand,
|
2022-02-02 10:29:30 +01:00
|
|
|
const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) {
|
|
|
|
if (commandData == nullptr or commandDataLen != 1) {
|
|
|
|
return DeviceHandlerIF::INVALID_COMMAND_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
commandBuffer[0] = RM3100::TMRC_REGISTER;
|
|
|
|
commandBuffer[1] = commandData[0];
|
|
|
|
tmrcRegValue = commandData[0];
|
|
|
|
rawPacketLen = 2;
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void MgmRM3100Handler::fillCommandAndReplyMap() {
|
2022-02-02 10:29:30 +01:00
|
|
|
insertInCommandAndReplyMap(RM3100::CONFIGURE_CMM, 3);
|
|
|
|
insertInCommandAndReplyMap(RM3100::READ_CMM, 3);
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
insertInCommandAndReplyMap(RM3100::CONFIGURE_TMRC, 3);
|
|
|
|
insertInCommandAndReplyMap(RM3100::READ_TMRC, 3);
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
insertInCommandAndReplyMap(RM3100::CONFIGURE_CYCLE_COUNT, 3);
|
|
|
|
insertInCommandAndReplyMap(RM3100::READ_CYCLE_COUNT, 3);
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
insertInCommandAndReplyMap(RM3100::READ_DATA, 3, &primaryDataset);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
void MgmRM3100Handler::modeChanged(void) { internalState = InternalState::NONE; }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmRM3100Handler::initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
|
|
|
|
LocalDataPoolManager &poolManager) {
|
|
|
|
localDataPoolMap.emplace(RM3100::FIELD_STRENGTH_X, new PoolEntry<float>({0.0}));
|
|
|
|
localDataPoolMap.emplace(RM3100::FIELD_STRENGTH_Y, new PoolEntry<float>({0.0}));
|
|
|
|
localDataPoolMap.emplace(RM3100::FIELD_STRENGTH_Z, new PoolEntry<float>({0.0}));
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t MgmRM3100Handler::getTransitionDelayMs(Mode_t from, Mode_t to) {
|
2022-02-02 10:29:30 +01:00
|
|
|
return this->transitionDelay;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
void MgmRM3100Handler::setToGoToNormalMode(bool enable) { goToNormalModeAtStartup = enable; }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
|
|
|
ReturnValue_t MgmRM3100Handler::handleDataReadout(const uint8_t *packet) {
|
2022-02-02 10:29:30 +01:00
|
|
|
// Analyze data here. The sensor generates 24 bit signed values so we need to do some bitshift
|
|
|
|
// trickery here to calculate the raw values first
|
|
|
|
int32_t fieldStrengthRawX = ((packet[1] << 24) | (packet[2] << 16) | (packet[3] << 8)) >> 8;
|
|
|
|
int32_t fieldStrengthRawY = ((packet[4] << 24) | (packet[5] << 16) | (packet[6] << 8)) >> 8;
|
|
|
|
int32_t fieldStrengthRawZ = ((packet[7] << 24) | (packet[8] << 16) | (packet[3] << 8)) >> 8;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
// Now scale to physical value in microtesla
|
|
|
|
float fieldStrengthX = fieldStrengthRawX * scaleFactorX;
|
|
|
|
float fieldStrengthY = fieldStrengthRawY * scaleFactorX;
|
|
|
|
float fieldStrengthZ = fieldStrengthRawZ * scaleFactorX;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
|
|
|
#if FSFW_HAL_RM3100_MGM_DEBUG == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
if (debugDivider->checkAndIncrement()) {
|
2021-09-26 22:45:32 +02:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::info << "MgmRM3100Handler: Magnetic field strength in"
|
|
|
|
" microtesla:"
|
|
|
|
<< std::endl;
|
|
|
|
sif::info << "X: " << fieldStrengthX << " uT" << std::endl;
|
|
|
|
sif::info << "Y: " << fieldStrengthY << " uT" << std::endl;
|
|
|
|
sif::info << "Z: " << fieldStrengthZ << " uT" << std::endl;
|
2021-09-26 22:45:32 +02:00
|
|
|
#else
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::printInfo("MgmRM3100Handler: Magnetic field strength in microtesla:\n");
|
|
|
|
sif::printInfo("X: %f uT\n", fieldStrengthX);
|
|
|
|
sif::printInfo("Y: %f uT\n", fieldStrengthY);
|
|
|
|
sif::printInfo("Z: %f uT\n", fieldStrengthZ);
|
2021-09-26 22:45:32 +02:00
|
|
|
#endif
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
// TODO: Sanity check on values?
|
|
|
|
PoolReadGuard readGuard(&primaryDataset);
|
|
|
|
if (readGuard.getReadResult() == HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
primaryDataset.fieldStrengthX = fieldStrengthX;
|
|
|
|
primaryDataset.fieldStrengthY = fieldStrengthY;
|
|
|
|
primaryDataset.fieldStrengthZ = fieldStrengthZ;
|
|
|
|
primaryDataset.setValidity(true, true);
|
|
|
|
}
|
|
|
|
return RETURN_OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|