Skip to content

Commit

Permalink
BICAS: Bugfix: Wrong var. name for SSID GND, REF25V
Browse files Browse the repository at this point in the history
Used wrong variable name for non-calibrating GND and REF25V data.

modified:   +proc/+L1L2/dc.m
  • Loading branch information
ErikPGJ committed Jan 2, 2024
1 parent bcf8082 commit 8804222
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mission/solar_orbiter/bicas/src/+bicas/+proc/+L1L2/dc.m
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@
elseif isequaln(Ssid, bicas.proc.L1L2.SignalSourceId.C.GND) || ...
isequaln(Ssid, bicas.proc.L1L2.SignalSourceId.C.REF25V)
% ==> No calibration.
samplesAVolt = ssSamplesTm;
% NOTE: samplesTm stores TM units using float!
samplesAVolt = samplesTm;

else
assert(Ssid.is_ASR())
Expand Down

0 comments on commit 8804222

Please sign in to comment.