eive-obsw/mission/system/com/comModeTree.h

25 lines
634 B
C
Raw Normal View History

#ifndef MISSION_SYSTEM_TREE_COMMODETREE_H_
#define MISSION_SYSTEM_TREE_COMMODETREE_H_
#include <fsfw/devicehandlers/DeviceHandlerIF.h>
2023-03-24 20:50:33 +01:00
#include "ComSubsystem.h"
namespace satsystem {
namespace com {
2023-01-28 14:49:28 +01:00
extern ComSubsystem SUBSYSTEM;
// The syrlinks must not transmitting longer then 15 minutes otherwise the
// transceiver might be damaged due to overheating
// This is the initial timeout of 2 minutes. The timeout needs to be incremented
// before each overpass
static const uint32_t TRANSMITTER_TIMEOUT = 120000;
2023-02-10 17:52:46 +01:00
Subsystem& init();
2023-01-27 14:44:40 +01:00
} // namespace com
} // namespace satsystem
#endif /* MISSION_SYSTEM_TREE_COMMODETREE_H_ */