Merge branch 'main' into ptg-improv
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
This commit is contained in:
commit
58be09bd4b
@ -21,6 +21,10 @@ will consitute of a breaking change warranting a new major release:
|
|||||||
- Rotational rate limit for the GS target pointing is now seperated from controller limit. It
|
- Rotational rate limit for the GS target pointing is now seperated from controller limit. It
|
||||||
is also reduced to 0.75°/s now.
|
is also reduced to 0.75°/s now.
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Fixed wrong sign in calculation of total current within the `PWR Controller`.
|
||||||
|
|
||||||
# [v7.7.3] 2024-03-18
|
# [v7.7.3] 2024-03-18
|
||||||
|
|
||||||
- Bumped `eive-fsfw`
|
- Bumped `eive-fsfw`
|
||||||
|
@ -182,7 +182,7 @@ void PowerController::calculateStateOfCharge() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// calculate total battery current
|
// calculate total battery current
|
||||||
iBat = p60CoreHk.batteryCurrent.value + bpxBatteryHk.dischargeCurrent.value;
|
iBat = p60CoreHk.batteryCurrent.value - bpxBatteryHk.dischargeCurrent.value;
|
||||||
|
|
||||||
result = calculateOpenCircuitVoltageCharge();
|
result = calculateOpenCircuitVoltageCharge();
|
||||||
if (result != returnvalue::OK) {
|
if (result != returnvalue::OK) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user