2022-08-15 10:50:19 +02:00
|
|
|
#ifndef MISSION_CONTROLLER_CONTROLLERDEFINITIONS_ACSCTRLDEFINITIONS_H_
|
|
|
|
#define MISSION_CONTROLLER_CONTROLLERDEFINITIONS_ACSCTRLDEFINITIONS_H_
|
|
|
|
|
|
|
|
#include <fsfw/datapoollocal/StaticLocalDataSet.h>
|
2022-08-15 17:25:16 +02:00
|
|
|
#include <fsfw/datapoollocal/localPoolDefinitions.h>
|
|
|
|
|
2022-08-15 10:50:19 +02:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace acsctrl {
|
|
|
|
|
2022-08-19 15:49:22 +02:00
|
|
|
enum SetIds : uint32_t { MGM_SENSOR_DATA, SUS_SENSOR_DATA };
|
2022-08-15 10:50:19 +02:00
|
|
|
|
|
|
|
enum PoolIds : lp_id_t {
|
|
|
|
MGM_0_LIS3_UT,
|
|
|
|
MGM_1_RM3100_UT,
|
|
|
|
MGM_2_LIS3_UT,
|
|
|
|
MGM_3_RM3100_UT,
|
|
|
|
MGM_IMTQ_CAL_NT,
|
2022-08-17 09:27:19 +02:00
|
|
|
MGM_IMTQ_CAL_ACT_STATUS,
|
|
|
|
|
|
|
|
SUS_0_N_LOC_XFYFZM_PT_XF,
|
|
|
|
SUS_6_R_LOC_XFYBZM_PT_XF,
|
|
|
|
|
|
|
|
SUS_1_N_LOC_XBYFZM_PT_XB,
|
|
|
|
SUS_7_R_LOC_XBYBZM_PT_XB,
|
|
|
|
|
|
|
|
SUS_2_N_LOC_XFYBZB_PT_YB,
|
|
|
|
SUS_8_R_LOC_XBYBZB_PT_YB,
|
|
|
|
|
|
|
|
SUS_3_N_LOC_XFYBZF_PT_YF,
|
|
|
|
SUS_9_R_LOC_XBYBZB_PT_YF,
|
|
|
|
|
|
|
|
SUS_4_N_LOC_XMYFZF_PT_ZF,
|
|
|
|
SUS_10_N_LOC_XMYBZF_PT_ZF,
|
|
|
|
|
|
|
|
SUS_5_N_LOC_XFYMZB_PT_ZB,
|
|
|
|
SUS_11_R_LOC_XBYMZB_PT_ZB,
|
2022-08-15 10:50:19 +02:00
|
|
|
};
|
|
|
|
|
2022-08-16 11:27:16 +02:00
|
|
|
static constexpr uint8_t MGM_SET_ENTRIES = 10;
|
2022-08-17 09:27:19 +02:00
|
|
|
static constexpr uint8_t SUS_SET_ENTRIES = 12;
|
2022-08-15 10:50:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This dataset can be used to store the collected temperatures of all temperature sensors
|
|
|
|
*/
|
|
|
|
class MgmData : public StaticLocalDataSet<MGM_SET_ENTRIES> {
|
2022-08-15 17:25:16 +02:00
|
|
|
public:
|
2022-08-15 10:50:19 +02:00
|
|
|
MgmData(HasLocalDataPoolIF* hkOwner) : StaticLocalDataSet(hkOwner, MGM_SENSOR_DATA) {}
|
|
|
|
|
|
|
|
// The ACS board measurement are in floating point uT
|
|
|
|
lp_vec_t<float, 3> mgm0Lis3 = lp_vec_t<float, 3>(sid.objectId, MGM_0_LIS3_UT, this);
|
|
|
|
lp_vec_t<float, 3> mgm1Rm3100 = lp_vec_t<float, 3>(sid.objectId, MGM_1_RM3100_UT, this);
|
|
|
|
lp_vec_t<float, 3> mgm2Lis3 = lp_vec_t<float, 3>(sid.objectId, MGM_2_LIS3_UT, this);
|
|
|
|
lp_vec_t<float, 3> mgm3Rm3100 = lp_vec_t<float, 3>(sid.objectId, MGM_3_RM3100_UT, this);
|
|
|
|
// The IMTQ measurements are in integer nT
|
|
|
|
lp_vec_t<int32_t, 3> imtqCal = lp_vec_t<int32_t, 3>(sid.objectId, MGM_IMTQ_CAL_NT, this);
|
2022-08-15 17:25:16 +02:00
|
|
|
lp_var_t<uint8_t> actuationCalStatus =
|
|
|
|
lp_var_t<uint8_t>(sid.objectId, MGM_IMTQ_CAL_ACT_STATUS, this);
|
2022-08-15 10:50:19 +02:00
|
|
|
|
2022-08-15 17:25:16 +02:00
|
|
|
private:
|
2022-08-15 10:50:19 +02:00
|
|
|
};
|
|
|
|
|
2022-08-19 15:49:22 +02:00
|
|
|
class SusData : public StaticLocalDataSet<SUS_SET_ENTRIES> {
|
|
|
|
public:
|
2022-08-17 09:27:19 +02:00
|
|
|
SusData(HasLocalDataPoolIF* hkOwner) : StaticLocalDataSet(hkOwner, SUS_SENSOR_DATA) {}
|
2022-08-19 15:49:22 +02:00
|
|
|
|
|
|
|
private:
|
2022-08-17 09:27:19 +02:00
|
|
|
};
|
|
|
|
|
2022-08-15 17:25:16 +02:00
|
|
|
} // namespace acsctrl
|
2022-08-15 10:50:19 +02:00
|
|
|
|
|
|
|
#endif /* MISSION_CONTROLLER_CONTROLLERDEFINITIONS_ACSCTRLDEFINITIONS_H_ */
|