some bugfixes
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
2022-08-19 15:49:22 +02:00
parent 4aad06469d
commit 0ea993e16b
6 changed files with 39 additions and 41 deletions

View File

@ -8,10 +8,7 @@
namespace acsctrl {
enum SetIds : uint32_t {
MGM_SENSOR_DATA,
SUS_SENSOR_DATA
};
enum SetIds : uint32_t { MGM_SENSOR_DATA, SUS_SENSOR_DATA };
enum PoolIds : lp_id_t {
MGM_0_LIS3_UT,
@ -63,11 +60,11 @@ class MgmData : public StaticLocalDataSet<MGM_SET_ENTRIES> {
private:
};
class SusData: public StaticLocalDataSet<SUS_SET_ENTRIES> {
public:
class SusData : public StaticLocalDataSet<SUS_SET_ENTRIES> {
public:
SusData(HasLocalDataPoolIF* hkOwner) : StaticLocalDataSet(hkOwner, SUS_SENSOR_DATA) {}
private:
private:
};
} // namespace acsctrl