2021-07-07 12:12:01 +02:00
|
|
|
#ifndef MISSION_DEVICES_STARTRACKERHANDLER_H_
|
|
|
|
#define MISSION_DEVICES_STARTRACKERHANDLER_H_
|
|
|
|
|
2021-11-27 19:40:52 +01:00
|
|
|
#include <fsfw/datapool/PoolReadGuard.h>
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2021-12-22 11:17:50 +01:00
|
|
|
#include "ArcsecDatalinkLayer.h"
|
2021-12-07 16:30:17 +01:00
|
|
|
#include "ArcsecJsonParamBase.h"
|
2022-02-27 15:48:42 +01:00
|
|
|
#include "OBSWConfig.h"
|
2021-12-21 15:46:09 +01:00
|
|
|
#include "StrHelper.h"
|
2022-01-17 15:58:27 +01:00
|
|
|
#include "fsfw/devicehandlers/DeviceHandlerBase.h"
|
|
|
|
#include "fsfw/src/fsfw/serialize/SerializeAdapter.h"
|
|
|
|
#include "fsfw/timemanager/Countdown.h"
|
2022-02-05 18:08:54 +01:00
|
|
|
#include "linux/devices/devicedefinitions/StarTrackerDefinitions.h"
|
2022-01-17 15:58:27 +01:00
|
|
|
#include "thirdparty/arcsec_star_tracker/common/SLIP.h"
|
2021-07-07 12:12:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This is the device handler for the star tracker from arcsec.
|
|
|
|
*
|
|
|
|
* @details Datasheet: https://eive-cloud.irs.uni-stuttgart.de/index.php/apps/files/?dir=/EIVE_IRS/
|
|
|
|
* Arbeitsdaten/08_Used%20Components/ArcSec_KULeuven_Startracker/
|
|
|
|
* Sagitta%201.0%20Datapack&fileid=659181
|
|
|
|
* @author J. Meier
|
|
|
|
*/
|
2022-01-17 15:58:27 +01:00
|
|
|
class StarTrackerHandler : public DeviceHandlerBase {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @brief Constructor
|
|
|
|
*
|
|
|
|
* @param objectId
|
|
|
|
* @param comIF
|
|
|
|
* @param comCookie
|
|
|
|
* @param gpioComIF Pointer to gpio communication interface
|
|
|
|
* @param enablePin GPIO connected to the enable pin of the reaction wheels. Must be pulled
|
|
|
|
* to high to enable the device.
|
|
|
|
*/
|
|
|
|
StarTrackerHandler(object_id_t objectId, object_id_t comIF, CookieIF* comCookie,
|
|
|
|
StrHelper* strHelper);
|
|
|
|
virtual ~StarTrackerHandler();
|
|
|
|
|
|
|
|
ReturnValue_t initialize() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Overwrite this function from DHB to handle commands executed by the str image
|
|
|
|
* loader task.
|
|
|
|
*/
|
|
|
|
ReturnValue_t executeAction(ActionId_t actionId, MessageQueueId_t commandedBy,
|
|
|
|
const uint8_t* data, size_t size) override;
|
|
|
|
|
|
|
|
void performOperationHook() override;
|
|
|
|
|
2022-02-25 14:24:51 +01:00
|
|
|
Submode_t getInitialSubmode() override;
|
|
|
|
|
2022-02-21 10:03:49 +01:00
|
|
|
static const Submode_t SUBMODE_BOOTLOADER = 1;
|
|
|
|
static const Submode_t SUBMODE_FIRMWARE = 2;
|
2022-02-14 16:42:04 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
protected:
|
|
|
|
void doStartUp() override;
|
|
|
|
void doShutDown() override;
|
|
|
|
void doOffActivity() override;
|
|
|
|
ReturnValue_t buildNormalDeviceCommand(DeviceCommandId_t* id) override;
|
|
|
|
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t* id) override;
|
|
|
|
void fillCommandAndReplyMap() override;
|
|
|
|
ReturnValue_t buildCommandFromCommand(DeviceCommandId_t deviceCommand, const uint8_t* commandData,
|
|
|
|
size_t commandDataLen) override;
|
2022-02-21 10:03:49 +01:00
|
|
|
ReturnValue_t isModeCombinationValid(Mode_t mode, Submode_t submode) override;
|
2022-01-17 15:58:27 +01:00
|
|
|
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;
|
|
|
|
void setNormalDatapoolEntriesInvalid() override;
|
|
|
|
uint32_t getTransitionDelayMs(Mode_t modeFrom, Mode_t modeTo) override;
|
|
|
|
ReturnValue_t initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
|
|
|
|
LocalDataPoolManager& poolManager) override;
|
|
|
|
/**
|
|
|
|
* @brief Overwritten here to always read all available data from the UartComIF.
|
|
|
|
*/
|
|
|
|
virtual size_t getNextReplyLength(DeviceCommandId_t deviceCommand) override;
|
|
|
|
virtual ReturnValue_t doSendReadHook() override;
|
2022-02-23 18:15:34 +01:00
|
|
|
virtual void doTransition(Mode_t modeFrom, Submode_t subModeFrom) override;
|
2022-01-17 15:58:27 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const uint8_t INTERFACE_ID = CLASS_ID::STR_HANDLER;
|
|
|
|
|
|
|
|
//! [EXPORT] : [COMMENT] Status in temperature reply signals error
|
|
|
|
static const ReturnValue_t TEMPERATURE_REQ_FAILED = MAKE_RETURN_CODE(0xA0);
|
|
|
|
//! [EXPORT] : [COMMENT] Ping command failed
|
|
|
|
static const ReturnValue_t PING_FAILED = MAKE_RETURN_CODE(0xA1);
|
|
|
|
//! [EXPORT] : [COMMENT] Status in version reply signals error
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t VERSION_REQ_FAILED = MAKE_RETURN_CODE(0xA2);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Status in interface reply signals error
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t INTERFACE_REQ_FAILED = MAKE_RETURN_CODE(0xA3);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Status in power reply signals error
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t POWER_REQ_FAILED = MAKE_RETURN_CODE(0xA4);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Status of reply to parameter set command signals error
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t SET_PARAM_FAILED = MAKE_RETURN_CODE(0xA5);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Status of reply to action command signals error
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t ACTION_FAILED = MAKE_RETURN_CODE(0xA6);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received invalid path string. Exceeds allowed length
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t FILE_PATH_TOO_LONG = MAKE_RETURN_CODE(0xA7);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Name of file received with command is too long
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t FILENAME_TOO_LONG = MAKE_RETURN_CODE(0xA8);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received version reply with invalid program ID
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t INVALID_PROGRAM = MAKE_RETURN_CODE(0xA9);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Status field reply signals error
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t REPLY_ERROR = MAKE_RETURN_CODE(0xAA);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received command which is too short (some data is missing for proper
|
|
|
|
//! execution)
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t COMMAND_TOO_SHORT = MAKE_RETURN_CODE(0xAB);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received command with invalid length (too few or too many parameters)
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t INVALID_LENGTH = MAKE_RETURN_CODE(0xAC);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Region mismatch between send and received data
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t REGION_MISMATCH = MAKE_RETURN_CODE(0xAD);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Address mismatch between send and received data
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t ADDRESS_MISMATCH = MAKE_RETURN_CODE(0xAE);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Length field mismatch between send and received data
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t lENGTH_MISMATCH = MAKE_RETURN_CODE(0xAF);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Specified file does not exist
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t FILE_NOT_EXISTS = MAKE_RETURN_CODE(0xB0);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Download blob pixel command has invalid type field
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t INVALID_TYPE = MAKE_RETURN_CODE(0xB1);
|
2022-01-17 15:58:27 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received FPGA action command with invalid ID
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t INVALID_ID = MAKE_RETURN_CODE(0xB2);
|
2022-01-29 12:27:26 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received reply is too short
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t REPLY_TOO_SHORT = MAKE_RETURN_CODE(0xB3);
|
2022-01-29 12:27:26 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Received reply with invalid CRC
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t CRC_FAILURE = MAKE_RETURN_CODE(0xB4);
|
2022-01-29 12:27:26 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Star tracker handler currently executing a command and using the
|
|
|
|
//! communication interface
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t STR_HELPER_EXECUTING = MAKE_RETURN_CODE(0xB5);
|
2022-02-14 11:28:15 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Star tracker is already in firmware mode
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t STARTRACKER_ALREADY_BOOTED = MAKE_RETURN_CODE(0xB6);
|
2022-02-27 15:48:42 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Star tracker is in firmware mode but must be in bootloader mode to
|
|
|
|
//! execute this command
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t STARTRACKER_RUNNING_FIRMWARE = MAKE_RETURN_CODE(0xB7);
|
2022-02-27 15:48:42 +01:00
|
|
|
//! [EXPORT] : [COMMENT] Star tracker is in bootloader mode but must be in firmware mode to
|
|
|
|
//! execute this command
|
2022-02-27 15:46:06 +01:00
|
|
|
static const ReturnValue_t STARTRACKER_RUNNING_BOOTLOADER = MAKE_RETURN_CODE(0xB8);
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2022-02-23 18:15:34 +01:00
|
|
|
static const uint8_t SUBSYSTEM_ID = SUBSYSTEM_ID::STR_HANDLER;
|
|
|
|
|
|
|
|
//! [EXPORT] : [COMMENT] Failed to boot firmware
|
|
|
|
static const Event BOOTING_FIRMWARE_FAILED = MAKE_EVENT(1, severity::LOW);
|
|
|
|
//! [EXPORT] : [COMMENT] Failed to boot star tracker into bootloader mode
|
|
|
|
static const Event BOOTING_BOOTLOADER_FAILED = MAKE_EVENT(2, severity::LOW);
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
static const size_t MAX_PATH_SIZE = 50;
|
|
|
|
static const size_t MAX_FILE_NAME = 30;
|
|
|
|
|
|
|
|
static const uint8_t STATUS_OFFSET = 1;
|
2022-01-19 11:52:06 +01:00
|
|
|
static const uint8_t PARAMS_OFFSET = 1;
|
2022-01-17 15:58:27 +01:00
|
|
|
static const uint8_t TICKS_OFFSET = 2;
|
|
|
|
static const uint8_t TIME_OFFSET = 6;
|
|
|
|
static const uint8_t TM_DATA_FIELD_OFFSET = 14;
|
|
|
|
static const uint8_t PARAMETER_ID_OFFSET = 0;
|
|
|
|
static const uint8_t ACTION_ID_OFFSET = 0;
|
|
|
|
static const uint8_t ACTION_DATA_OFFSET = 2;
|
|
|
|
// Ping request will reply ping with this ID (data field)
|
|
|
|
static const uint32_t PING_ID = 0x55;
|
|
|
|
static const uint32_t BOOT_REGION_ID = 1;
|
|
|
|
static const MutexIF::TimeoutType TIMEOUT_TYPE = MutexIF::TimeoutType::WAITING;
|
|
|
|
static const uint32_t MUTEX_TIMEOUT = 20;
|
|
|
|
static const uint32_t BOOT_TIMEOUT = 1000;
|
2022-02-23 18:15:34 +01:00
|
|
|
static const uint32_t DEFAULT_TRANSITION_DELAY = 15000;
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2022-02-27 15:46:06 +01:00
|
|
|
class FlashReadCmd {
|
2022-01-17 15:58:27 +01:00
|
|
|
public:
|
2022-02-25 14:24:51 +01:00
|
|
|
// Minimum length of a read command (region, length and filename)
|
|
|
|
static const size_t MIN_LENGTH = 7;
|
2022-01-17 15:58:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class ChecksumCmd {
|
|
|
|
public:
|
|
|
|
static const uint8_t ADDRESS_OFFSET = 1;
|
|
|
|
static const uint8_t LENGTH_OFFSET = 5;
|
|
|
|
// Length of checksum command
|
|
|
|
static const size_t LENGTH = 9;
|
|
|
|
uint8_t rememberRegion = 0;
|
|
|
|
uint32_t rememberAddress = 0;
|
|
|
|
uint32_t rememberLength = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
ChecksumCmd checksumCmd;
|
|
|
|
|
|
|
|
MessageQueueIF* eventQueue = nullptr;
|
|
|
|
|
|
|
|
ArcsecDatalinkLayer dataLinkLayer;
|
|
|
|
|
2022-02-14 11:28:15 +01:00
|
|
|
startracker::TemperatureSet temperatureSet;
|
|
|
|
startracker::VersionSet versionSet;
|
|
|
|
startracker::PowerSet powerSet;
|
|
|
|
startracker::InterfaceSet interfaceSet;
|
|
|
|
startracker::TimeSet timeSet;
|
|
|
|
startracker::SolutionSet solutionSet;
|
|
|
|
startracker::HistogramSet histogramSet;
|
|
|
|
startracker::ChecksumSet checksumSet;
|
|
|
|
startracker::CameraSet cameraSet;
|
|
|
|
startracker::LimitsSet limitsSet;
|
|
|
|
startracker::LogLevelSet loglevelSet;
|
|
|
|
startracker::MountingSet mountingSet;
|
|
|
|
startracker::ImageProcessorSet imageProcessorSet;
|
|
|
|
startracker::CentroidingSet centroidingSet;
|
|
|
|
startracker::LisaSet lisaSet;
|
|
|
|
startracker::MatchingSet matchingSet;
|
|
|
|
startracker::TrackingSet trackingSet;
|
|
|
|
startracker::ValidationSet validationSet;
|
|
|
|
startracker::AlgoSet algoSet;
|
|
|
|
startracker::SubscriptionSet subscriptionSet;
|
|
|
|
startracker::LogSubscriptionSet logSubscriptionSet;
|
|
|
|
startracker::DebugCameraSet debugCameraSet;
|
2022-01-17 15:58:27 +01:00
|
|
|
|
|
|
|
// Pointer to object responsible for uploading and downloading images to/from the star tracker
|
|
|
|
StrHelper* strHelper = nullptr;
|
|
|
|
|
2022-02-04 13:06:56 +01:00
|
|
|
uint8_t commandBuffer[startracker::MAX_FRAME_SIZE];
|
2022-01-17 15:58:27 +01:00
|
|
|
|
|
|
|
// Countdown to insert delay for star tracker to switch from bootloader to firmware program
|
2022-02-14 11:28:15 +01:00
|
|
|
// Loading firmware requires some time and the command will not trigger a reply when executed
|
2022-01-17 15:58:27 +01:00
|
|
|
Countdown bootCountdown;
|
|
|
|
|
2022-02-14 11:28:15 +01:00
|
|
|
#ifdef EGSE
|
|
|
|
std::string paramJsonFile = "/home/pi/arcsec/json/flight-config.json";
|
2022-02-05 15:39:16 +01:00
|
|
|
#else
|
2022-02-01 11:45:22 +01:00
|
|
|
#if OBSW_STAR_TRACKER_GROUND_CONFIG == 1
|
|
|
|
std::string paramJsonFile = "/mnt/sd0/startracker/ground-config.json";
|
|
|
|
#else
|
|
|
|
std::string paramJsonFile = "/mnt/sd0/startracker/flight-config.json";
|
|
|
|
#endif
|
2022-02-05 15:39:16 +01:00
|
|
|
#endif
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2022-02-27 15:48:42 +01:00
|
|
|
enum class NormalState { TEMPERATURE_REQUEST, SOLUTION_REQUEST };
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2022-02-23 18:15:34 +01:00
|
|
|
NormalState normalState = NormalState::TEMPERATURE_REQUEST;
|
2022-01-17 15:58:27 +01:00
|
|
|
|
2022-02-23 18:15:34 +01:00
|
|
|
enum class InternalState {
|
2022-01-17 15:58:27 +01:00
|
|
|
IDLE,
|
|
|
|
BOOT,
|
2022-02-23 18:15:34 +01:00
|
|
|
REQ_VERSION,
|
2022-02-14 11:28:15 +01:00
|
|
|
VERIFY_BOOT,
|
|
|
|
STARTUP_CHECK,
|
2022-01-17 15:58:27 +01:00
|
|
|
BOOT_DELAY,
|
2022-02-14 11:28:15 +01:00
|
|
|
FIRMWARE_CHECK,
|
2022-02-11 08:24:35 +01:00
|
|
|
LOGLEVEL,
|
2022-01-17 15:58:27 +01:00
|
|
|
LIMITS,
|
|
|
|
TRACKING,
|
|
|
|
MOUNTING,
|
2022-01-29 12:27:26 +01:00
|
|
|
IMAGE_PROCESSOR,
|
2022-01-17 15:58:27 +01:00
|
|
|
CAMERA,
|
|
|
|
BLOB,
|
|
|
|
CENTROIDING,
|
|
|
|
LISA,
|
|
|
|
MATCHING,
|
|
|
|
VALIDATION,
|
|
|
|
ALGO,
|
2022-02-11 08:24:35 +01:00
|
|
|
LOG_SUBSCRIPTION,
|
|
|
|
DEBUG_CAMERA,
|
2022-01-17 15:58:27 +01:00
|
|
|
WAIT_FOR_EXECUTION,
|
2022-02-14 11:28:15 +01:00
|
|
|
DONE,
|
2022-02-23 18:15:34 +01:00
|
|
|
FAILED_FIRMWARE_BOOT,
|
|
|
|
BOOT_BOOTLOADER,
|
|
|
|
BOOTLOADER_CHECK,
|
|
|
|
BOOTING_BOOTLOADER_FAILED
|
|
|
|
};
|
|
|
|
|
|
|
|
InternalState internalState = InternalState::IDLE;
|
|
|
|
|
2022-02-27 15:48:42 +01:00
|
|
|
enum class StartupState { IDLE, CHECK_PROGRAM, WAIT_CHECK_PROGRAM, BOOT_BOOTLOADER, DONE };
|
2022-01-17 15:58:27 +01:00
|
|
|
|
|
|
|
StartupState startupState = StartupState::IDLE;
|
|
|
|
|
|
|
|
bool strHelperExecuting = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles internal state
|
|
|
|
*/
|
|
|
|
void handleInternalState();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks mode for commands requiring MODE_ON of MODE_NORMAL for execution.
|
|
|
|
*
|
|
|
|
* @param actionId Action id of command to execute
|
|
|
|
*/
|
|
|
|
ReturnValue_t checkMode(ActionId_t actionId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This function initializes the serial link ip protocol struct slipInfo.
|
|
|
|
*/
|
|
|
|
void slipInit();
|
|
|
|
|
|
|
|
ReturnValue_t scanForActionReply(DeviceCommandId_t* foundId);
|
2022-01-19 11:52:06 +01:00
|
|
|
ReturnValue_t scanForSetParameterReply(DeviceCommandId_t* foundId);
|
|
|
|
ReturnValue_t scanForGetParameterReply(DeviceCommandId_t* foundId);
|
2022-01-17 15:58:27 +01:00
|
|
|
ReturnValue_t scanForTmReply(DeviceCommandId_t* foundId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to ping the star tracker
|
|
|
|
*/
|
|
|
|
void preparePingRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to request the time telemetry.
|
|
|
|
*/
|
|
|
|
void prepareTimeRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles all received event messages
|
|
|
|
*/
|
|
|
|
void handleEvent(EventMessage* eventMessage);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Extracts information for flash-read-command from TC data and starts execution of
|
|
|
|
* flash-read-procedure
|
|
|
|
*
|
|
|
|
* @param commandData Pointer to received command data
|
|
|
|
* @param commandDataLen Size of received command data
|
|
|
|
*
|
|
|
|
* @return RETURN_OK if start of execution was successful, otherwise error return value
|
|
|
|
*/
|
2022-02-25 14:24:51 +01:00
|
|
|
ReturnValue_t executeFlashReadCommand(const uint8_t* commandData, size_t commandDataLen);
|
2022-01-17 15:58:27 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to boot image (works only when star tracker is
|
|
|
|
* in bootloader mode).
|
|
|
|
*/
|
|
|
|
void prepareBootCommand();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with command to get the checksum of a flash part
|
|
|
|
*/
|
|
|
|
ReturnValue_t prepareChecksumCommand(const uint8_t* commandData, size_t commandDataLen);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills the command buffer with the command to take an image.
|
|
|
|
*/
|
|
|
|
void prepareTakeImageCommand(const uint8_t* commandData);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to request the version telemetry packet
|
|
|
|
*/
|
|
|
|
void prepareVersionRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills the command buffer with data to request the interface telemetry packet.
|
|
|
|
*/
|
|
|
|
void prepareInterfaceRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills the command buffer with data to request the power telemetry packet.
|
|
|
|
*/
|
|
|
|
void preparePowerRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to reboot star tracker.
|
|
|
|
*/
|
2022-02-27 15:46:06 +01:00
|
|
|
void prepareSwitchToBootloaderCmd();
|
2022-01-17 15:58:27 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to subscribe to a telemetry packet.
|
|
|
|
*
|
|
|
|
* @param tmId The ID of the telemetry packet to subscribe to
|
|
|
|
*/
|
|
|
|
void prepareSubscriptionCommand(const uint8_t* tmId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to request solution telemtry packet (contains
|
|
|
|
* attitude information)
|
|
|
|
*/
|
|
|
|
void prepareSolutionRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to request temperature from star tracker
|
|
|
|
*/
|
|
|
|
void prepareTemperatureRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fills command buffer with data to request histogram
|
|
|
|
*/
|
|
|
|
void prepareHistogramRequest();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reads parameters from json file specified by string in commandData and
|
|
|
|
* prepares the command to apply the parameter set to the star tracker
|
|
|
|
*
|
|
|
|
* @param commandData Contains string with file name
|
|
|
|
* @param commandDataLen Length of command
|
|
|
|
* @param paramSet The object defining the command generation
|
|
|
|
*
|
|
|
|
* @return RETURN_OK if successful, otherwise error return Value
|
|
|
|
*/
|
|
|
|
ReturnValue_t prepareParamCommand(const uint8_t* commandData, size_t commandDataLen,
|
|
|
|
ArcsecJsonParamBase& paramSet);
|
|
|
|
|
2022-01-19 11:52:06 +01:00
|
|
|
/**
|
2022-02-09 19:20:19 +01:00
|
|
|
* @brief The following function will fill the command buffer with the command to request
|
|
|
|
* a parameter set.
|
2022-01-19 11:52:06 +01:00
|
|
|
*/
|
|
|
|
ReturnValue_t prepareRequestCameraParams();
|
|
|
|
ReturnValue_t prepareRequestLimitsParams();
|
2022-02-09 19:20:19 +01:00
|
|
|
ReturnValue_t prepareRequestLogLevelParams();
|
|
|
|
ReturnValue_t prepareRequestMountingParams();
|
|
|
|
ReturnValue_t prepareRequestImageProcessorParams();
|
|
|
|
ReturnValue_t prepareRequestCentroidingParams();
|
|
|
|
ReturnValue_t prepareRequestLisaParams();
|
|
|
|
ReturnValue_t prepareRequestMatchingParams();
|
|
|
|
ReturnValue_t prepareRequestTrackingParams();
|
|
|
|
ReturnValue_t prepareRequestValidationParams();
|
|
|
|
ReturnValue_t prepareRequestAlgoParams();
|
|
|
|
ReturnValue_t prepareRequestSubscriptionParams();
|
|
|
|
ReturnValue_t prepareRequestLogSubscriptionParams();
|
|
|
|
ReturnValue_t prepareRequestDebugCameraParams();
|
2022-01-19 11:52:06 +01:00
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
/**
|
|
|
|
* @brief Handles action replies with datasets.
|
|
|
|
*/
|
|
|
|
ReturnValue_t handleActionReplySet(LocalPoolDataSetBase& dataset, size_t size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Default function to handle action replies
|
|
|
|
*/
|
|
|
|
ReturnValue_t handleActionReply();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles reply to upload centroid command
|
|
|
|
*/
|
|
|
|
ReturnValue_t handleUploadCentroidReply();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles reply to checksum command
|
|
|
|
*/
|
|
|
|
ReturnValue_t handleChecksumReply();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles all set parameter replies
|
|
|
|
*/
|
|
|
|
ReturnValue_t handleSetParamReply();
|
|
|
|
|
|
|
|
ReturnValue_t handlePingReply();
|
|
|
|
|
2022-01-19 11:52:06 +01:00
|
|
|
ReturnValue_t handleParamRequest(LocalPoolDataSetBase& dataset, size_t size);
|
|
|
|
|
2022-01-17 15:58:27 +01:00
|
|
|
/**
|
|
|
|
* @brief Checks the loaded program by means of the version set
|
|
|
|
*/
|
|
|
|
ReturnValue_t checkProgram();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles the startup state machine
|
|
|
|
*/
|
|
|
|
void handleStartup(const uint8_t* parameterId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handles telemtry replies and fills the appropriate dataset
|
|
|
|
*
|
|
|
|
* @param dataset Dataset where reply data will be written to
|
|
|
|
* @param size Size of the dataset
|
|
|
|
*
|
|
|
|
* @return RETURN_OK if successful, otherwise error return value
|
|
|
|
*/
|
|
|
|
ReturnValue_t handleTm(LocalPoolDataSetBase& dataset, size_t size);
|
2022-02-14 11:28:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Checks if star tracker is in valid mode for executing the received command.
|
|
|
|
*
|
|
|
|
* @param actioId Id of received command
|
|
|
|
*
|
|
|
|
* @return RETURN_OK if star tracker is in valid mode, otherwise error return value
|
|
|
|
*/
|
|
|
|
ReturnValue_t checkCommand(ActionId_t actionId);
|
2022-02-23 18:15:34 +01:00
|
|
|
|
|
|
|
void doOnTransition(Submode_t subModeFrom);
|
|
|
|
void doNormalTransition(Mode_t modeFrom, Submode_t subModeFrom);
|
|
|
|
void bootFirmware(Mode_t toMode);
|
|
|
|
void bootBootloader();
|
2021-07-07 12:12:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_DEVICES_STARTRACKERHANDLER_H_ */
|