2022-02-23 19:08:12 +01:00
|
|
|
#ifndef MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_
|
|
|
|
#define MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_
|
|
|
|
|
2022-10-12 17:23:54 +02:00
|
|
|
#include <fsfw/globalfunctions/PeriodicOperationDivider.h>
|
2022-10-12 14:24:45 +02:00
|
|
|
#include <unordered_map>
|
|
|
|
|
2022-10-12 14:09:07 +02:00
|
|
|
#include "devices/powerSwitcherList.h"
|
2022-10-12 17:18:57 +02:00
|
|
|
#include "eive/definitions.h"
|
2022-10-12 14:24:45 +02:00
|
|
|
#include "events/subsystemIdRanges.h"
|
2022-10-12 14:09:07 +02:00
|
|
|
#include "fsfw/action/HasActionsIF.h"
|
|
|
|
#include "fsfw/devicehandlers/CookieIF.h"
|
|
|
|
#include "fsfw/devicehandlers/DeviceHandlerIF.h"
|
|
|
|
#include "fsfw/objectmanager/SystemObject.h"
|
|
|
|
#include "fsfw/power/PowerSwitchIF.h"
|
|
|
|
#include "fsfw/returnvalues/returnvalue.h"
|
|
|
|
#include "fsfw/tasks/ExecutableObjectIF.h"
|
|
|
|
#include "fsfw/timemanager/Countdown.h"
|
|
|
|
#include "fsfw_hal/common/gpio/GpioIF.h"
|
|
|
|
#include "mission/memory/SdCardMountedIF.h"
|
2022-09-14 13:44:43 +02:00
|
|
|
#include "returnvalues/classIds.h"
|
|
|
|
|
2022-02-23 19:08:12 +01:00
|
|
|
/**
|
|
|
|
* @brief This class is used to control the solar array deployment.
|
|
|
|
*
|
|
|
|
* @author J. Meier
|
|
|
|
*/
|
|
|
|
class SolarArrayDeploymentHandler : public ExecutableObjectIF,
|
|
|
|
public SystemObject,
|
|
|
|
public HasActionsIF {
|
|
|
|
public:
|
2022-10-12 15:19:21 +02:00
|
|
|
// Burn them for a custom amount limited by 120 secs
|
2022-10-12 17:21:10 +02:00
|
|
|
static constexpr DeviceCommandId_t DEPLOY_SOLAR_ARRAYS_MANUALLY = 0x05;
|
2022-10-12 15:19:21 +02:00
|
|
|
// Careful with these command, not automatic off handling!
|
|
|
|
static constexpr DeviceCommandId_t FORCE_DEPLY_ON = 0x06;
|
|
|
|
static constexpr DeviceCommandId_t FORCE_DEPLY_OFF = 0x07;
|
|
|
|
|
|
|
|
static constexpr uint32_t FIRST_BURN_START_TIME = config::SA_DEPL_BURN_TIME_SECS;
|
2022-10-12 17:18:57 +02:00
|
|
|
static constexpr uint32_t FIRST_BURN_END_TIME =
|
|
|
|
FIRST_BURN_START_TIME + config::SA_DEPL_BURN_TIME_SECS;
|
|
|
|
static constexpr uint32_t WAIT_START_TIME = FIRST_BURN_END_TIME;
|
|
|
|
static constexpr uint32_t WAIT_END_TIME = WAIT_START_TIME + config::SA_DEPL_WAIT_TIME_SECS;
|
|
|
|
static constexpr uint32_t SECOND_BURN_START_TIME = WAIT_END_TIME;
|
|
|
|
static constexpr uint32_t SECOND_BURN_END_TIME =
|
|
|
|
SECOND_BURN_START_TIME + config::SA_DEPL_WAIT_TIME_SECS;
|
2022-10-12 15:19:21 +02:00
|
|
|
|
|
|
|
static constexpr char SD_0_DEPL_FILE[] = "/mnt/sd0/conf/deployment";
|
|
|
|
static constexpr char SD_1_DEPL_FILE[] = "/mnt/sd1/conf/deployment";
|
|
|
|
static constexpr char SD_0_DEPLY_INFO[] = "/mnt/sd0/conf/deployment_info.txt";
|
|
|
|
static constexpr char SD_1_DEPLY_INFO[] = "/mnt/sd1/conf/deployment_info.txt";
|
|
|
|
|
|
|
|
static constexpr char PHASE_INIT_STR[] = "init";
|
|
|
|
static constexpr char PHASE_FIRST_BURN_STR[] = "first_burn";
|
|
|
|
static constexpr char PHASE_WAIT_STR[] = "wait";
|
|
|
|
static constexpr char PHASE_SECOND_BURN_STR[] = "second_burn";
|
|
|
|
static constexpr char PHASE_DONE[] = "done";
|
2022-02-23 19:08:12 +01:00
|
|
|
/**
|
|
|
|
* @brief constructor
|
|
|
|
*
|
|
|
|
* @param setObjectId The object id of the SolarArrayDeploymentHandler.
|
|
|
|
* @param gpioDriverId The id of the gpio com if.
|
|
|
|
* @param gpioCookie GpioCookie holding information about the gpios used to switch the
|
|
|
|
* transistors.
|
|
|
|
* @param mainLineSwitcherObjectId The object id of the object responsible for switching
|
|
|
|
* the 8V power source. This is normally the PCDU.
|
|
|
|
* @param mainLineSwitch The id of the main line switch. This is defined in
|
|
|
|
* powerSwitcherList.h.
|
|
|
|
* @param deplSA1 gpioId of the GPIO controlling the deployment 1 transistor.
|
|
|
|
* @param deplSA2 gpioId of the GPIO controlling the deployment 2 transistor.
|
|
|
|
* @param burnTimeMs Time duration the power will be applied to the burn wires.
|
|
|
|
*/
|
2022-10-12 13:56:25 +02:00
|
|
|
SolarArrayDeploymentHandler(object_id_t setObjectId, GpioIF& gpio,
|
|
|
|
PowerSwitchIF& mainLineSwitcher, pcdu::Switches mainLineSwitch,
|
2022-10-12 14:24:45 +02:00
|
|
|
gpioId_t deplSA1, gpioId_t deplSA2, SdCardMountedIF& sdcMountedIF);
|
2022-02-23 19:08:12 +01:00
|
|
|
|
|
|
|
virtual ~SolarArrayDeploymentHandler();
|
|
|
|
|
|
|
|
virtual ReturnValue_t performOperation(uint8_t operationCode = 0) override;
|
|
|
|
|
|
|
|
virtual MessageQueueId_t getCommandQueue() const override;
|
|
|
|
virtual ReturnValue_t executeAction(ActionId_t actionId, MessageQueueId_t commandedBy,
|
|
|
|
const uint8_t* data, size_t size) override;
|
|
|
|
virtual ReturnValue_t initialize() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static const uint8_t INTERFACE_ID = CLASS_ID::SA_DEPL_HANDLER;
|
|
|
|
static const ReturnValue_t COMMAND_NOT_SUPPORTED = MAKE_RETURN_CODE(0xA0);
|
|
|
|
static const ReturnValue_t DEPLOYMENT_ALREADY_EXECUTING = MAKE_RETURN_CODE(0xA1);
|
|
|
|
static const ReturnValue_t MAIN_SWITCH_TIMEOUT_FAILURE = MAKE_RETURN_CODE(0xA2);
|
|
|
|
static const ReturnValue_t SWITCHING_DEPL_SA1_FAILED = MAKE_RETURN_CODE(0xA3);
|
|
|
|
static const ReturnValue_t SWITCHING_DEPL_SA2_FAILED = MAKE_RETURN_CODE(0xA4);
|
|
|
|
|
|
|
|
static const uint8_t SUBSYSTEM_ID = SUBSYSTEM_ID::SA_DEPL_HANDLER;
|
|
|
|
static const Event MAIN_SWITCH_ON_TIMEOUT = MAKE_EVENT(0, severity::LOW);
|
|
|
|
static const Event MAIN_SWITCH_OFF_TIMEOUT = MAKE_EVENT(1, severity::LOW);
|
|
|
|
static const Event DEPLOYMENT_FAILED = MAKE_EVENT(2, severity::HIGH);
|
|
|
|
static const Event DEPL_SA1_GPIO_SWTICH_ON_FAILED = MAKE_EVENT(3, severity::HIGH);
|
|
|
|
static const Event DEPL_SA2_GPIO_SWTICH_ON_FAILED = MAKE_EVENT(4, severity::HIGH);
|
|
|
|
|
2022-10-12 17:18:57 +02:00
|
|
|
enum AutonomousDeplState { INIT, FIRST_BURN, WAIT, SECOND_BURN, DONE };
|
|
|
|
enum StateMachine {
|
|
|
|
IDLE,
|
|
|
|
MAIN_POWER_ON,
|
|
|
|
MAIN_POWER_OFF,
|
|
|
|
WAIT_MAIN_POWER_ON,
|
|
|
|
WAIT_MAIN_POWER_OFF,
|
|
|
|
SWITCH_DEPL_GPIOS,
|
2022-10-12 15:19:21 +02:00
|
|
|
};
|
2022-02-23 19:08:12 +01:00
|
|
|
|
2022-10-12 17:18:57 +02:00
|
|
|
StateMachine stateMachine = IDLE;
|
|
|
|
bool actionActive = false;
|
|
|
|
ActionId_t activeCmd = HasActionsIF::INVALID_ACTION_ID;
|
|
|
|
std::optional<uint64_t> initUptime;
|
2022-10-12 17:23:54 +02:00
|
|
|
PeriodicOperationDivider opDivider = PeriodicOperationDivider(5);
|
2022-10-12 17:18:57 +02:00
|
|
|
uint8_t retryCounter = 3;
|
|
|
|
struct FsmInfo {
|
|
|
|
// false if OFF, true is ON
|
|
|
|
bool sa1OnOff = false;
|
|
|
|
bool sa2OnOff = false;
|
|
|
|
} fsmInfo;
|
|
|
|
|
|
|
|
bool startFsm(std::optional<bool> sa1OnOff, std::optional<bool> sa2OnOff);
|
|
|
|
void finishFsm(ReturnValue_t resultForActionHelper);
|
2022-10-12 14:24:45 +02:00
|
|
|
|
2022-10-12 17:18:57 +02:00
|
|
|
ReturnValue_t performAutonomousDepl(sd::SdCard sdCard);
|
|
|
|
bool autonomousDeplForFile(const char* filename);
|
2022-02-23 19:08:12 +01:00
|
|
|
/**
|
|
|
|
* This countdown is used to check if the PCDU sets the 8V line on in the intended time.
|
|
|
|
*/
|
|
|
|
Countdown mainSwitchCountdown;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This countdown is used to wait for the burn wire being successful cut.
|
|
|
|
*/
|
2022-10-12 17:18:57 +02:00
|
|
|
Countdown deploymentCountdown;
|
2022-02-23 19:08:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The message queue id of the component commanding an action will be stored in this variable.
|
|
|
|
* This is necessary to send later the action finish replies.
|
|
|
|
*/
|
|
|
|
MessageQueueId_t rememberCommanderId = 0;
|
|
|
|
|
|
|
|
/** Size of command queue */
|
|
|
|
size_t cmdQueueSize = 20;
|
2022-10-12 13:56:25 +02:00
|
|
|
GpioIF& gpioInterface;
|
2022-02-23 19:08:12 +01:00
|
|
|
gpioId_t deplSA1;
|
|
|
|
gpioId_t deplSA2;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* After initialization this pointer will hold the reference to the main line switcher object.
|
|
|
|
*/
|
2022-10-12 13:21:58 +02:00
|
|
|
PowerSwitchIF& mainLineSwitcher;
|
|
|
|
|
|
|
|
/** Switch number of the 8V power switch */
|
|
|
|
uint8_t mainLineSwitch;
|
2022-02-23 19:08:12 +01:00
|
|
|
|
2022-10-12 14:24:45 +02:00
|
|
|
SdCardMountedIF& sdcMan;
|
|
|
|
|
2022-02-23 19:08:12 +01:00
|
|
|
ActionHelper actionHelper;
|
|
|
|
|
2022-10-12 14:24:45 +02:00
|
|
|
/** Queue to receive messages from other objects. */
|
|
|
|
MessageQueueIF* commandQueue = nullptr;
|
|
|
|
|
2022-02-23 19:08:12 +01:00
|
|
|
void readCommandQueue();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This function performs actions dependent on the current state.
|
|
|
|
*/
|
|
|
|
void handleStateMachine();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This function polls the 8V switch state and changes the state machine when the
|
|
|
|
* switch has been enabled.
|
|
|
|
*/
|
2022-10-12 17:18:57 +02:00
|
|
|
bool checkMainPowerOn();
|
|
|
|
bool checkMainPowerOff();
|
|
|
|
bool checkMainPower(bool onOff);
|
2022-02-23 19:08:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This functions handles the switching of the solar array deployment transistors.
|
|
|
|
*/
|
2022-10-12 17:18:57 +02:00
|
|
|
ReturnValue_t deploymentTransistorsOn();
|
|
|
|
ReturnValue_t deploymentTransistorsOff();
|
2022-02-23 19:08:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_DEVICES_SOLARARRAYDEPLOYMENT_H_ */
|