resolve some more merge conflicts

This commit is contained in:
Robin Müller 2023-03-15 11:48:50 +01:00
parent d0607824ad
commit 43fd0b2f59
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 0 additions and 15 deletions

View File

@ -6,11 +6,7 @@
#include "fsfw/tmtcservices/CommandingServiceBase.h"
struct HealthServiceCfg {
<<<<<<< HEAD
HealthServiceCfg(object_id_t objectId, uint16_t apid, HealthTable &healthTable,
=======
HealthServiceCfg(object_id_t objectId, uint16_t apid, object_id_t healthTable,
>>>>>>> upstream/development
uint16_t maxNumHealthInfoPerCycle)
: objectId(objectId),
apid(apid),
@ -18,11 +14,7 @@ struct HealthServiceCfg {
maxNumHealthInfoPerCycle(maxNumHealthInfoPerCycle) {}
object_id_t objectId;
uint16_t apid;
<<<<<<< HEAD
HealthTable &table;
=======
object_id_t table;
>>>>>>> upstream/development
uint16_t maxNumHealthInfoPerCycle;
uint8_t service = 201;
uint8_t numParallelCommands = 4;
@ -47,11 +39,8 @@ class CServiceHealthCommanding : public CommandingServiceBase {
public:
CServiceHealthCommanding(HealthServiceCfg args);
~CServiceHealthCommanding() override = default;
<<<<<<< HEAD
=======
ReturnValue_t initialize() override;
>>>>>>> upstream/development
protected:
/* CSB abstract function implementations */
@ -70,12 +59,8 @@ class CServiceHealthCommanding : public CommandingServiceBase {
void doPeriodicOperation() override;
private:
<<<<<<< HEAD
HealthTable &healthTable;
=======
const object_id_t healthTableId;
HealthTable *healthTable;
>>>>>>> upstream/development
uint16_t maxNumHealthInfoPerCycle = 0;
bool reportAllHealth = false;
ReturnValue_t iterateHealthTable(bool reset);