Fix NaN for Limiting Rotation Rates #872
No reviewers
Labels
No Label
OPS TODO
api change
breaking api change
bug
documentation
duplicate
feature
help wanted
invalid
question
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Depends on
#170 Removed duplicate Code
eive/fsfw
#281 Leap Seconds
eive/eive-tmtc
Reference: eive/eive-obsw#872
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "limit-rot-rate-fix"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
WIP: Fix NaN for Limiting Rotation Ratesto Fix NaN for Limiting Rotation Rates@ -79,6 +79,7 @@ CoreController::CoreController(object_id_t objectId, bool enableHkSet)
} catch (const std::filesystem::filesystem_error &e) {
sif::error << "CoreController::CoreController: Failed with exception " << e.what() << std::endl;
}
initLeapSeconds();
shouldn't this be inside the function above? If this is done, the default value setting needs to be moved to constructor/initialize function so it is always executed..
the function will initialize the leap seconds, no matter what. it could be up there yes, but a try catch for a function that will definitely do what it needs to be doing seemed unnecessary