Merge remote-tracking branch 'origin/develop' into feature_always_create_new_active_file
Some checks are pending
EIVE/eive-obsw/pipeline/pr-develop Build queued...

This commit is contained in:
Robin Müller 2023-03-07 15:36:40 +01:00
commit 97888953ec
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 6 additions and 2 deletions

View File

@ -23,6 +23,9 @@ will consitute of a breaking change warranting a new major release:
## Fixed ## Fixed
- PUS 15 was not scheduled - PUS 15 was not scheduled
- Transmitter timeout set to 2 minutes instead of 15 minutes. This will prevent to discharge the battery
in case the syrlinks starts transmitting due to detection of unintentional bitlock. This happened e.g. on ground
when the uplink to the flying latop was established.
# [v1.35.1] 2023-03-04 # [v1.35.1] 2023-03-04

View File

@ -11,8 +11,9 @@ extern ComSubsystem SUBSYSTEM;
// The syrlinks must not transmitting longer then 15 minutes otherwise the // The syrlinks must not transmitting longer then 15 minutes otherwise the
// transceiver might be damaged due to overheating // transceiver might be damaged due to overheating
// 15 minutes in milliseconds // This is the initial timeout of 2 minutes. The timeout needs to be incremented
static const uint32_t TRANSMITTER_TIMEOUT = 900000; // before each overpass
static const uint32_t TRANSMITTER_TIMEOUT = 120000;
Subsystem& init(); Subsystem& init();
} // namespace com } // namespace com