Robin Mueller
192c7c6f31
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
16 lines
411 B
C++
16 lines
411 B
C++
#ifndef MISSION_SYSTEM_PAYLOADSUBSYSTEM_H_
|
|
#define MISSION_SYSTEM_PAYLOADSUBSYSTEM_H_
|
|
|
|
#include <fsfw/subsystem/Subsystem.h>
|
|
|
|
class PayloadSubsystem : public Subsystem {
|
|
public:
|
|
PayloadSubsystem(object_id_t setObjectId, uint32_t maxNumberOfSequences,
|
|
uint32_t maxNumberOfTables);
|
|
|
|
private:
|
|
void announceMode(bool recursive) override;
|
|
};
|
|
|
|
#endif /* MISSION_SYSTEM_PAYLOADSUBSYSTEM_H_ */
|