eive-obsw/mission/devices/GyroADIS1650XHandler.h

83 lines
2.9 KiB
C
Raw Normal View History

2021-05-24 00:30:46 +02:00
#ifndef MISSION_DEVICES_GYROADIS16507HANDLER_H_
#define MISSION_DEVICES_GYROADIS16507HANDLER_H_
2021-09-22 16:00:31 +02:00
#include "FSFWConfig.h"
2022-01-18 11:41:19 +01:00
#include "OBSWConfig.h"
#include "devicedefinitions/GyroADIS1650XDefinitions.h"
2021-09-22 16:00:31 +02:00
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
2022-01-18 11:41:19 +01:00
#include "fsfw/globalfunctions/PeriodicOperationDivider.h"
2021-09-22 16:00:31 +02:00
2021-12-15 10:15:06 +01:00
#if OBSW_ADIS1650X_LINUX_COM_IF == 1
2021-05-24 20:33:59 +02:00
class SpiComIF;
class SpiCookie;
#endif
2021-06-15 13:58:19 +02:00
/**
* @brief Device handle for the ADIS16507 Gyroscope by Analog Devices
* @details
* Flight manual:
* https://egit.irs.uni-stuttgart.de/redmine/projects/eive-flight-manual/wiki/ADIS16507_Gyro
*/
2022-01-18 11:41:19 +01:00
class GyroADIS1650XHandler : public DeviceHandlerBase {
public:
GyroADIS1650XHandler(object_id_t objectId, object_id_t deviceCommunication, CookieIF *comCookie,
ADIS1650X::Type type);
2022-02-19 16:51:46 +01:00
void enablePeriodicPrintouts(bool enable, uint8_t divider);
2022-01-19 14:08:30 +01:00
void setToGoToNormalModeImmediately();
2022-01-18 11:41:19 +01:00
// DeviceHandlerBase abstract function implementation
void doStartUp() override;
void doShutDown() override;
ReturnValue_t buildNormalDeviceCommand(DeviceCommandId_t *id) override;
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t *id) override;
ReturnValue_t buildCommandFromCommand(DeviceCommandId_t deviceCommand, const uint8_t *commandData,
size_t commandDataLen) override;
void fillCommandAndReplyMap() override;
ReturnValue_t scanForReply(const uint8_t *start, size_t remainingSize, DeviceCommandId_t *foundId,
size_t *foundLen) override;
ReturnValue_t interpretDeviceReply(DeviceCommandId_t id, const uint8_t *packet) override;
uint32_t getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) override;
ReturnValue_t initializeLocalDataPool(localpool::DataPool &localDataPoolMap,
LocalDataPoolManager &poolManager) override;
private:
std::array<uint8_t, 32> commandBuffer;
ADIS1650X::Type adisType;
AdisGyroPrimaryDataset primaryDataset;
AdisGyroConfigDataset configDataset;
2022-01-19 14:08:30 +01:00
bool goToNormalMode = false;
bool warningSwitch = true;
2022-01-18 11:41:19 +01:00
enum class InternalState { STARTUP, CONFIG, IDLE };
enum class BurstModes {
BURST_16_BURST_SEL_0,
BURST_16_BURST_SEL_1,
BURST_32_BURST_SEL_0,
BURST_32_BURST_SEL_1
};
InternalState internalState = InternalState::STARTUP;
bool commandExecuted = false;
void prepareReadCommand(uint8_t *regList, size_t len);
BurstModes getBurstMode();
2021-05-24 20:57:12 +02:00
2021-12-15 10:15:06 +01:00
#if OBSW_ADIS1650X_LINUX_COM_IF == 1
2022-01-18 11:41:19 +01:00
static ReturnValue_t spiSendCallback(SpiComIF *comIf, SpiCookie *cookie, const uint8_t *sendData,
size_t sendLen, void *args);
2021-05-24 20:33:59 +02:00
#endif
2022-01-18 11:41:19 +01:00
Countdown breakCountdown;
void prepareWriteCommand(uint8_t startReg, uint8_t valueOne, uint8_t valueTwo);
2021-05-25 13:53:03 +02:00
2022-01-18 11:41:19 +01:00
ReturnValue_t handleSensorData(const uint8_t *packet);
2022-02-19 16:51:46 +01:00
bool periodicPrintout = false;
PeriodicOperationDivider debugDivider = PeriodicOperationDivider(3);
2021-05-24 00:30:46 +02:00
};
#endif /* MISSION_DEVICES_GYROADIS16507HANDLER_H_ */