diff --git a/mission/controller/AcsController.h b/mission/controller/AcsController.h index 83d9afab..14b710a2 100644 --- a/mission/controller/AcsController.h +++ b/mission/controller/AcsController.h @@ -33,7 +33,7 @@ class AcsController : public ExtendedControllerBase { uint32_t* msToReachTheMode) override; // MGMs - acsctrl::MgmData mgmData; + acsctrl::MgmDataRaw mgmData; MGMLIS3MDL::MgmPrimaryDataset mgm0Lis3Set = MGMLIS3MDL::MgmPrimaryDataset(objects::MGM_0_LIS3_HANDLER); diff --git a/mission/controller/controllerdefinitions/AcsCtrlDefinitions.h b/mission/controller/controllerdefinitions/AcsCtrlDefinitions.h index de971cf5..9a2b1abd 100644 --- a/mission/controller/controllerdefinitions/AcsCtrlDefinitions.h +++ b/mission/controller/controllerdefinitions/AcsCtrlDefinitions.h @@ -41,11 +41,11 @@ static constexpr uint8_t MGM_SET_ENTRIES = 10; static constexpr uint8_t SUS_SET_ENTRIES = 12; /** - * @brief This dataset can be used to store the collected temperatures of all temperature sensors + * @brief Raw MGM sensor data. Includes the IMTQ sensor data and actuator status. */ -class MgmData : public StaticLocalDataSet { +class MgmDataRaw : public StaticLocalDataSet { public: - MgmData(HasLocalDataPoolIF* hkOwner) : StaticLocalDataSet(hkOwner, MGM_SENSOR_DATA) {} + MgmDataRaw(HasLocalDataPoolIF* hkOwner) : StaticLocalDataSet(hkOwner, MGM_SENSOR_DATA) {} // The ACS board measurement are in floating point uT lp_vec_t mgm0Lis3 = lp_vec_t(sid.objectId, MGM_0_LIS3_UT, this);