2021-09-26 22:22:55 +02:00
|
|
|
#include "MgmLIS3MDLHandler.h"
|
|
|
|
|
2021-09-26 22:45:32 +02:00
|
|
|
#include <cmath>
|
|
|
|
|
2022-04-27 08:39:21 +02:00
|
|
|
#include "fsfw/datapool/PoolReadGuard.h"
|
|
|
|
|
2021-09-26 22:22:55 +02:00
|
|
|
MgmLIS3MDLHandler::MgmLIS3MDLHandler(object_id_t objectId, object_id_t deviceCommunication,
|
2022-02-02 10:29:30 +01:00
|
|
|
CookieIF *comCookie, uint32_t transitionDelay)
|
|
|
|
: DeviceHandlerBase(objectId, deviceCommunication, comCookie),
|
|
|
|
dataset(this),
|
|
|
|
transitionDelay(transitionDelay) {
|
|
|
|
// Set to default values right away
|
|
|
|
registers[0] = MGMLIS3MDL::CTRL_REG1_DEFAULT;
|
|
|
|
registers[1] = MGMLIS3MDL::CTRL_REG2_DEFAULT;
|
|
|
|
registers[2] = MGMLIS3MDL::CTRL_REG3_DEFAULT;
|
|
|
|
registers[3] = MGMLIS3MDL::CTRL_REG4_DEFAULT;
|
|
|
|
registers[4] = MGMLIS3MDL::CTRL_REG5_DEFAULT;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
MgmLIS3MDLHandler::~MgmLIS3MDLHandler() {}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
|
|
|
void MgmLIS3MDLHandler::doStartUp() {
|
2022-02-02 10:29:30 +01:00
|
|
|
switch (internalState) {
|
|
|
|
case (InternalState::STATE_NONE): {
|
|
|
|
internalState = InternalState::STATE_FIRST_CONTACT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::STATE_FIRST_CONTACT): {
|
|
|
|
/* Will be set by checking device ID (WHO AM I register) */
|
|
|
|
if (commandExecuted) {
|
|
|
|
commandExecuted = false;
|
|
|
|
internalState = InternalState::STATE_SETUP;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::STATE_SETUP): {
|
|
|
|
internalState = InternalState::STATE_CHECK_REGISTERS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case (InternalState::STATE_CHECK_REGISTERS): {
|
|
|
|
/* Set up cached registers which will be used to configure the MGM. */
|
|
|
|
if (commandExecuted) {
|
|
|
|
commandExecuted = false;
|
|
|
|
if (goToNormalMode) {
|
|
|
|
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
|
|
|
void MgmLIS3MDLHandler::doShutDown() { setMode(_MODE_POWER_DOWN); }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmLIS3MDLHandler::buildTransitionDeviceCommand(DeviceCommandId_t *id) {
|
|
|
|
switch (internalState) {
|
|
|
|
case (InternalState::STATE_NONE):
|
|
|
|
case (InternalState::STATE_NORMAL): {
|
|
|
|
return DeviceHandlerBase::NOTHING_TO_SEND;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::STATE_FIRST_CONTACT): {
|
|
|
|
*id = MGMLIS3MDL::IDENTIFY_DEVICE;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::STATE_SETUP): {
|
|
|
|
*id = MGMLIS3MDL::SETUP_MGM;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (InternalState::STATE_CHECK_REGISTERS): {
|
|
|
|
*id = MGMLIS3MDL::READ_CONFIG_AND_DATA;
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default: {
|
2022-02-02 10:29:30 +01:00
|
|
|
/* might be a configuration error. */
|
2021-09-26 22:22:55 +02:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::warning << "GyroHandler::buildTransitionDeviceCommand: Unknown internal state!"
|
|
|
|
<< std::endl;
|
2021-09-26 22:22:55 +02:00
|
|
|
#else
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::printWarning("GyroHandler::buildTransitionDeviceCommand: Unknown internal state!\n");
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
|
|
|
return buildCommandFromCommand(*id, NULL, 0);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t MgmLIS3MDLHandler::readCommand(uint8_t command, bool continuousCom) {
|
2022-02-02 10:29:30 +01:00
|
|
|
command |= (1 << MGMLIS3MDL::RW_BIT);
|
|
|
|
if (continuousCom == true) {
|
|
|
|
command |= (1 << MGMLIS3MDL::MS_BIT);
|
|
|
|
}
|
|
|
|
return command;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t MgmLIS3MDLHandler::writeCommand(uint8_t command, bool continuousCom) {
|
2022-02-02 10:29:30 +01:00
|
|
|
command &= ~(1 << MGMLIS3MDL::RW_BIT);
|
|
|
|
if (continuousCom == true) {
|
|
|
|
command |= (1 << MGMLIS3MDL::MS_BIT);
|
|
|
|
}
|
|
|
|
return command;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void MgmLIS3MDLHandler::setupMgm() {
|
2022-02-02 10:29:30 +01:00
|
|
|
registers[0] = MGMLIS3MDL::CTRL_REG1_DEFAULT;
|
|
|
|
registers[1] = MGMLIS3MDL::CTRL_REG2_DEFAULT;
|
|
|
|
registers[2] = MGMLIS3MDL::CTRL_REG3_DEFAULT;
|
|
|
|
registers[3] = MGMLIS3MDL::CTRL_REG4_DEFAULT;
|
|
|
|
registers[4] = MGMLIS3MDL::CTRL_REG5_DEFAULT;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
prepareCtrlRegisterWrite();
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmLIS3MDLHandler::buildNormalDeviceCommand(DeviceCommandId_t *id) {
|
|
|
|
// Data/config register will be read in an alternating manner.
|
|
|
|
if (communicationStep == CommunicationStep::DATA) {
|
|
|
|
*id = MGMLIS3MDL::READ_CONFIG_AND_DATA;
|
|
|
|
communicationStep = CommunicationStep::TEMPERATURE;
|
|
|
|
return buildCommandFromCommand(*id, NULL, 0);
|
|
|
|
} else {
|
|
|
|
*id = MGMLIS3MDL::READ_TEMPERATURE;
|
|
|
|
communicationStep = CommunicationStep::DATA;
|
|
|
|
return buildCommandFromCommand(*id, NULL, 0);
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmLIS3MDLHandler::buildCommandFromCommand(DeviceCommandId_t deviceCommand,
|
|
|
|
const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) {
|
|
|
|
switch (deviceCommand) {
|
|
|
|
case (MGMLIS3MDL::READ_CONFIG_AND_DATA): {
|
|
|
|
std::memset(commandBuffer, 0, sizeof(commandBuffer));
|
|
|
|
commandBuffer[0] = readCommand(MGMLIS3MDL::CTRL_REG1, true);
|
|
|
|
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = MGMLIS3MDL::NR_OF_DATA_AND_CFG_REGISTERS + 1;
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::READ_TEMPERATURE): {
|
|
|
|
std::memset(commandBuffer, 0, 3);
|
|
|
|
commandBuffer[0] = readCommand(MGMLIS3MDL::TEMP_LOWBYTE, true);
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = 3;
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::IDENTIFY_DEVICE): {
|
|
|
|
return identifyDevice();
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::TEMP_SENSOR_ENABLE): {
|
|
|
|
return enableTemperatureSensor(commandData, commandDataLen);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::SETUP_MGM): {
|
|
|
|
setupMgm();
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::ACCURACY_OP_MODE_SET): {
|
|
|
|
return setOperatingMode(commandData, commandDataLen);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default:
|
2022-02-02 10:29:30 +01:00
|
|
|
return DeviceHandlerIF::COMMAND_NOT_IMPLEMENTED;
|
|
|
|
}
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::FAILED;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmLIS3MDLHandler::identifyDevice() {
|
2022-02-02 10:29:30 +01:00
|
|
|
uint32_t size = 2;
|
|
|
|
commandBuffer[0] = readCommand(MGMLIS3MDL::IDENTIFY_DEVICE_REG_ADDR);
|
|
|
|
commandBuffer[1] = 0x00;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = size;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmLIS3MDLHandler::scanForReply(const uint8_t *start, size_t len,
|
|
|
|
DeviceCommandId_t *foundId, size_t *foundLen) {
|
|
|
|
*foundLen = len;
|
|
|
|
if (len == MGMLIS3MDL::NR_OF_DATA_AND_CFG_REGISTERS + 1) {
|
2021-09-26 22:22:55 +02:00
|
|
|
*foundLen = len;
|
2022-02-02 10:29:30 +01:00
|
|
|
*foundId = MGMLIS3MDL::READ_CONFIG_AND_DATA;
|
|
|
|
// Check validity by checking config registers
|
|
|
|
if (start[1] != registers[0] or start[2] != registers[1] or start[3] != registers[2] or
|
|
|
|
start[4] != registers[3] or start[5] != registers[4]) {
|
2021-09-26 22:22:55 +02:00
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::warning << "MGMHandlerLIS3MDL::scanForReply: Invalid registers!" << std::endl;
|
2021-09-26 22:22:55 +02:00
|
|
|
#else
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::printWarning("MGMHandlerLIS3MDL::scanForReply: Invalid registers!\n");
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2022-02-02 10:29:30 +01:00
|
|
|
return DeviceHandlerIF::INVALID_DATA;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
if (mode == _MODE_START_UP) {
|
|
|
|
commandExecuted = true;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
|
|
|
|
} else if (len == MGMLIS3MDL::TEMPERATURE_REPLY_LEN) {
|
|
|
|
*foundLen = len;
|
|
|
|
*foundId = MGMLIS3MDL::READ_TEMPERATURE;
|
|
|
|
} else if (len == MGMLIS3MDL::SETUP_REPLY_LEN) {
|
|
|
|
*foundLen = len;
|
|
|
|
*foundId = MGMLIS3MDL::SETUP_MGM;
|
|
|
|
} else if (len == SINGLE_COMMAND_ANSWER_LEN) {
|
|
|
|
*foundLen = len;
|
|
|
|
*foundId = getPendingCommand();
|
|
|
|
if (*foundId == MGMLIS3MDL::IDENTIFY_DEVICE) {
|
|
|
|
if (start[1] != MGMLIS3MDL::DEVICE_ID) {
|
2021-09-26 22:22:55 +02:00
|
|
|
#if FSFW_VERBOSE_LEVEL >= 1
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::warning << "MGMHandlerLIS3MDL::scanForReply: "
|
|
|
|
"Device identification failed!"
|
|
|
|
<< std::endl;
|
2021-09-26 22:22:55 +02:00
|
|
|
#else
|
2022-02-02 10:29:30 +01:00
|
|
|
sif::printWarning(
|
|
|
|
"MGMHandlerLIS3MDL::scanForReply: "
|
|
|
|
"Device identification failed!\n");
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
return DeviceHandlerIF::INVALID_DATA;
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
if (mode == _MODE_START_UP) {
|
|
|
|
commandExecuted = true;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
} else {
|
|
|
|
return DeviceHandlerIF::INVALID_DATA;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
/* Data with SPI Interface always has this answer */
|
|
|
|
if (start[0] == 0b11111111) {
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2022-02-02 10:29:30 +01:00
|
|
|
} else {
|
|
|
|
return DeviceHandlerIF::INVALID_DATA;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmLIS3MDLHandler::interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) {
|
|
|
|
switch (id) {
|
2021-09-26 22:22:55 +02:00
|
|
|
case MGMLIS3MDL::IDENTIFY_DEVICE: {
|
2022-02-02 10:29:30 +01:00
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
case MGMLIS3MDL::SETUP_MGM: {
|
2022-02-02 10:29:30 +01:00
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
case MGMLIS3MDL::READ_CONFIG_AND_DATA: {
|
2022-02-02 10:29:30 +01:00
|
|
|
// TODO: Store configuration in new local datasets.
|
|
|
|
float sensitivityFactor = getSensitivityFactor(getSensitivity(registers[2]));
|
|
|
|
|
|
|
|
int16_t mgmMeasurementRawX =
|
|
|
|
packet[MGMLIS3MDL::X_HIGHBYTE_IDX] << 8 | packet[MGMLIS3MDL::X_LOWBYTE_IDX];
|
|
|
|
int16_t mgmMeasurementRawY =
|
|
|
|
packet[MGMLIS3MDL::Y_HIGHBYTE_IDX] << 8 | packet[MGMLIS3MDL::Y_LOWBYTE_IDX];
|
|
|
|
int16_t mgmMeasurementRawZ =
|
|
|
|
packet[MGMLIS3MDL::Z_HIGHBYTE_IDX] << 8 | packet[MGMLIS3MDL::Z_LOWBYTE_IDX];
|
|
|
|
|
2022-02-22 11:33:41 +01:00
|
|
|
// Target value in microtesla
|
2022-02-02 10:29:30 +01:00
|
|
|
float mgmX = static_cast<float>(mgmMeasurementRawX) * sensitivityFactor *
|
|
|
|
MGMLIS3MDL::GAUSS_TO_MICROTESLA_FACTOR;
|
|
|
|
float mgmY = static_cast<float>(mgmMeasurementRawY) * sensitivityFactor *
|
|
|
|
MGMLIS3MDL::GAUSS_TO_MICROTESLA_FACTOR;
|
|
|
|
float mgmZ = static_cast<float>(mgmMeasurementRawZ) * sensitivityFactor *
|
|
|
|
MGMLIS3MDL::GAUSS_TO_MICROTESLA_FACTOR;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-22 11:33:41 +01:00
|
|
|
if (periodicPrintout) {
|
|
|
|
if (debugDivider.checkAndIncrement()) {
|
2021-09-26 22:22:55 +02:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-22 11:33:41 +01:00
|
|
|
sif::info << "MGMHandlerLIS3: Magnetic field strength in"
|
|
|
|
" microtesla:"
|
|
|
|
<< std::endl;
|
|
|
|
sif::info << "X: " << mgmX << " uT" << std::endl;
|
|
|
|
sif::info << "Y: " << mgmY << " uT" << std::endl;
|
|
|
|
sif::info << "Z: " << mgmZ << " uT" << std::endl;
|
2021-09-26 22:22:55 +02:00
|
|
|
#else
|
2022-02-22 11:33:41 +01:00
|
|
|
sif::printInfo("MGMHandlerLIS3: Magnetic field strength in microtesla:\n");
|
|
|
|
sif::printInfo("X: %f uT\n", mgmX);
|
|
|
|
sif::printInfo("Y: %f uT\n", mgmY);
|
|
|
|
sif::printInfo("Z: %f uT\n", mgmZ);
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 0 */
|
2022-02-22 11:33:41 +01:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
2022-02-22 11:33:41 +01:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
PoolReadGuard readHelper(&dataset);
|
2022-08-16 01:08:26 +02:00
|
|
|
if (readHelper.getReadResult() == returnvalue::OK) {
|
2022-08-15 10:49:00 +02:00
|
|
|
if (std::abs(mgmX) > absLimitX or std::abs(mgmY) > absLimitY or
|
|
|
|
std::abs(mgmZ) > absLimitZ) {
|
|
|
|
dataset.fieldStrengths.setValid(false);
|
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
if (std::abs(mgmX) < absLimitX) {
|
2022-08-15 10:49:00 +02:00
|
|
|
dataset.fieldStrengths[0] = mgmX;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
|
|
|
|
if (std::abs(mgmY) < absLimitY) {
|
2022-08-15 10:49:00 +02:00
|
|
|
dataset.fieldStrengths[1] = mgmY;
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (std::abs(mgmZ) < absLimitZ) {
|
2022-08-15 10:49:00 +02:00
|
|
|
dataset.fieldStrengths[2] = mgmZ;
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
2022-08-15 10:49:00 +02:00
|
|
|
dataset.fieldStrengths.setValid(true);
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
case MGMLIS3MDL::READ_TEMPERATURE: {
|
2022-02-02 10:29:30 +01:00
|
|
|
int16_t tempValueRaw = packet[2] << 8 | packet[1];
|
|
|
|
float tempValue = 25.0 + ((static_cast<float>(tempValueRaw)) / 8.0);
|
2022-02-22 11:33:41 +01:00
|
|
|
if (periodicPrintout) {
|
|
|
|
if (debugDivider.check()) {
|
2021-09-26 22:22:55 +02:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2022-02-22 11:33:41 +01:00
|
|
|
sif::info << "MGMHandlerLIS3: Temperature: " << tempValue << " C" << std::endl;
|
2021-09-26 22:22:55 +02:00
|
|
|
#else
|
2022-02-22 11:33:41 +01:00
|
|
|
sif::printInfo("MGMHandlerLIS3: Temperature: %f C\n");
|
2021-09-26 22:22:55 +02:00
|
|
|
#endif
|
2022-02-22 11:33:41 +01:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
}
|
2022-02-22 11:33:41 +01:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t result = dataset.read();
|
2022-08-16 01:08:26 +02:00
|
|
|
if (result == returnvalue::OK) {
|
2022-02-02 10:29:30 +01:00
|
|
|
dataset.temperature = tempValue;
|
|
|
|
dataset.commit();
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MGMLIS3MDL::Sensitivies MgmLIS3MDLHandler::getSensitivity(uint8_t ctrlRegister2) {
|
2022-02-02 10:29:30 +01:00
|
|
|
bool fs0Set = ctrlRegister2 & (1 << MGMLIS3MDL::FSO); // Checks if FS0 bit is set
|
|
|
|
bool fs1Set = ctrlRegister2 & (1 << MGMLIS3MDL::FS1); // Checks if FS1 bit is set
|
|
|
|
|
|
|
|
if (fs0Set && fs1Set)
|
|
|
|
return MGMLIS3MDL::Sensitivies::GAUSS_16;
|
|
|
|
else if (!fs0Set && fs1Set)
|
|
|
|
return MGMLIS3MDL::Sensitivies::GAUSS_12;
|
|
|
|
else if (fs0Set && !fs1Set)
|
|
|
|
return MGMLIS3MDL::Sensitivies::GAUSS_8;
|
|
|
|
else
|
|
|
|
return MGMLIS3MDL::Sensitivies::GAUSS_4;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
float MgmLIS3MDLHandler::getSensitivityFactor(MGMLIS3MDL::Sensitivies sens) {
|
2022-02-02 10:29:30 +01:00
|
|
|
switch (sens) {
|
|
|
|
case (MGMLIS3MDL::GAUSS_4): {
|
|
|
|
return MGMLIS3MDL::FIELD_LSB_PER_GAUSS_4_SENS;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::GAUSS_8): {
|
|
|
|
return MGMLIS3MDL::FIELD_LSB_PER_GAUSS_8_SENS;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::GAUSS_12): {
|
|
|
|
return MGMLIS3MDL::FIELD_LSB_PER_GAUSS_12_SENS;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-02 10:29:30 +01:00
|
|
|
case (MGMLIS3MDL::GAUSS_16): {
|
|
|
|
return MGMLIS3MDL::FIELD_LSB_PER_GAUSS_16_SENS;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default: {
|
2022-02-02 10:29:30 +01:00
|
|
|
// Should never happen
|
|
|
|
return MGMLIS3MDL::FIELD_LSB_PER_GAUSS_4_SENS;
|
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
|
|
|
ReturnValue_t MgmLIS3MDLHandler::enableTemperatureSensor(const uint8_t *commandData,
|
|
|
|
size_t commandDataLen) {
|
|
|
|
triggerEvent(CHANGE_OF_SETUP_PARAMETER);
|
|
|
|
uint32_t size = 2;
|
|
|
|
commandBuffer[0] = writeCommand(MGMLIS3MDL::CTRL_REG1);
|
|
|
|
if (commandDataLen > 1) {
|
|
|
|
return INVALID_NUMBER_OR_LENGTH_OF_PARAMETERS;
|
|
|
|
}
|
|
|
|
switch (*commandData) {
|
2021-09-26 22:22:55 +02:00
|
|
|
case (MGMLIS3MDL::ON): {
|
2022-02-02 10:29:30 +01:00
|
|
|
commandBuffer[1] = registers[0] | (1 << 7);
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
case (MGMLIS3MDL::OFF): {
|
2022-02-02 10:29:30 +01:00
|
|
|
commandBuffer[1] = registers[0] & ~(1 << 7);
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
default:
|
2022-02-02 10:29:30 +01:00
|
|
|
return INVALID_COMMAND_PARAMETER;
|
|
|
|
}
|
|
|
|
registers[0] = commandBuffer[1];
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = size;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t MgmLIS3MDLHandler::setOperatingMode(const uint8_t *commandData,
|
2022-02-02 10:29:30 +01:00
|
|
|
size_t commandDataLen) {
|
|
|
|
triggerEvent(CHANGE_OF_SETUP_PARAMETER);
|
|
|
|
if (commandDataLen != 1) {
|
|
|
|
return INVALID_NUMBER_OR_LENGTH_OF_PARAMETERS;
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
switch (commandData[0]) {
|
2021-09-26 22:22:55 +02:00
|
|
|
case MGMLIS3MDL::LOW:
|
2022-02-02 10:29:30 +01:00
|
|
|
registers[0] = (registers[0] & (~(1 << MGMLIS3MDL::OM1))) & (~(1 << MGMLIS3MDL::OM0));
|
|
|
|
registers[3] = (registers[3] & (~(1 << MGMLIS3MDL::OMZ1))) & (~(1 << MGMLIS3MDL::OMZ0));
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
case MGMLIS3MDL::MEDIUM:
|
2022-02-02 10:29:30 +01:00
|
|
|
registers[0] = (registers[0] & (~(1 << MGMLIS3MDL::OM1))) | (1 << MGMLIS3MDL::OM0);
|
|
|
|
registers[3] = (registers[3] & (~(1 << MGMLIS3MDL::OMZ1))) | (1 << MGMLIS3MDL::OMZ0);
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
|
|
|
case MGMLIS3MDL::HIGH:
|
2022-02-02 10:29:30 +01:00
|
|
|
registers[0] = (registers[0] | (1 << MGMLIS3MDL::OM1)) & (~(1 << MGMLIS3MDL::OM0));
|
|
|
|
registers[3] = (registers[3] | (1 << MGMLIS3MDL::OMZ1)) & (~(1 << MGMLIS3MDL::OMZ0));
|
|
|
|
break;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
|
|
|
case MGMLIS3MDL::ULTRA:
|
2022-02-02 10:29:30 +01:00
|
|
|
registers[0] = (registers[0] | (1 << MGMLIS3MDL::OM1)) | (1 << MGMLIS3MDL::OM0);
|
|
|
|
registers[3] = (registers[3] | (1 << MGMLIS3MDL::OMZ1)) | (1 << MGMLIS3MDL::OMZ0);
|
|
|
|
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
|
|
|
return prepareCtrlRegisterWrite();
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void MgmLIS3MDLHandler::fillCommandAndReplyMap() {
|
2022-02-02 10:29:30 +01:00
|
|
|
insertInCommandAndReplyMap(MGMLIS3MDL::READ_CONFIG_AND_DATA, 1, &dataset);
|
|
|
|
insertInCommandAndReplyMap(MGMLIS3MDL::READ_TEMPERATURE, 1);
|
|
|
|
insertInCommandAndReplyMap(MGMLIS3MDL::SETUP_MGM, 1);
|
|
|
|
insertInCommandAndReplyMap(MGMLIS3MDL::IDENTIFY_DEVICE, 1);
|
|
|
|
insertInCommandAndReplyMap(MGMLIS3MDL::TEMP_SENSOR_ENABLE, 1);
|
|
|
|
insertInCommandAndReplyMap(MGMLIS3MDL::ACCURACY_OP_MODE_SET, 1);
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
void MgmLIS3MDLHandler::setToGoToNormalMode(bool enable) { this->goToNormalMode = enable; }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
|
|
|
ReturnValue_t MgmLIS3MDLHandler::prepareCtrlRegisterWrite() {
|
2022-02-02 10:29:30 +01:00
|
|
|
commandBuffer[0] = writeCommand(MGMLIS3MDL::CTRL_REG1, true);
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
for (size_t i = 0; i < MGMLIS3MDL::NR_OF_CTRL_REGISTERS; i++) {
|
|
|
|
commandBuffer[i + 1] = registers[i];
|
|
|
|
}
|
|
|
|
rawPacket = commandBuffer;
|
|
|
|
rawPacketLen = MGMLIS3MDL::NR_OF_CTRL_REGISTERS + 1;
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
// We dont have to check if this is working because we just did i
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-02-22 11:33:41 +01:00
|
|
|
void MgmLIS3MDLHandler::doTransition(Mode_t modeFrom, Submode_t subModeFrom) {
|
|
|
|
DeviceHandlerBase::doTransition(modeFrom, subModeFrom);
|
|
|
|
}
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
uint32_t MgmLIS3MDLHandler::getTransitionDelayMs(Mode_t from, Mode_t to) { return transitionDelay; }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
void MgmLIS3MDLHandler::modeChanged(void) { internalState = InternalState::STATE_NONE; }
|
2021-09-26 22:22:55 +02:00
|
|
|
|
2022-02-02 10:29:30 +01:00
|
|
|
ReturnValue_t MgmLIS3MDLHandler::initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
|
|
|
|
LocalDataPoolManager &poolManager) {
|
2022-08-15 10:49:00 +02:00
|
|
|
localDataPoolMap.emplace(MGMLIS3MDL::FIELD_STRENGTHS, &mgmXYZ);
|
|
|
|
localDataPoolMap.emplace(MGMLIS3MDL::TEMPERATURE_CELCIUS, &temperature);
|
2022-08-30 11:02:21 +02:00
|
|
|
poolManager.subscribeForRegularPeriodicPacket({dataset.getSid(), false, 10.0});
|
2022-08-16 01:08:26 +02:00
|
|
|
return returnvalue::OK;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void MgmLIS3MDLHandler::setAbsoluteLimits(float xLimit, float yLimit, float zLimit) {
|
2022-02-02 10:29:30 +01:00
|
|
|
this->absLimitX = xLimit;
|
|
|
|
this->absLimitY = yLimit;
|
|
|
|
this->absLimitZ = zLimit;
|
2021-09-26 22:22:55 +02:00
|
|
|
}
|
2022-02-22 11:33:41 +01:00
|
|
|
|
|
|
|
void MgmLIS3MDLHandler::enablePeriodicPrintouts(bool enable, uint8_t divider) {
|
|
|
|
periodicPrintout = enable;
|
|
|
|
debugDivider.setDivider(divider);
|
|
|
|
}
|