Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 22bf685c authored by Martin Dippold's avatar Martin Dippold
Browse files

* Bugfix for the function convert to 1 hz. Do it only if an additional signal is detected

parent 0197e263
Branches
Tags
No related merge requests found
...@@ -29,7 +29,7 @@ Module output ...@@ -29,7 +29,7 @@ Module output
ErgEntryListC = New List(Of tCompCali) ErgEntryListC = New List(Of tCompCali)
GenErgOutData(calibration) GenErgOutData(calibration)
If Crt.hz_out = 1 Then If Crt.hz_out = 1 Then
ConvTo1Hz(InputData(tComp.t), InputUndefData) If InputUndefData.Count > 0 Then ConvTo1Hz(InputData(tComp.t), InputUndefData)
ConvTo1Hz(InputData) ConvTo1Hz(InputData)
ConvTo1Hz(CalcData) ConvTo1Hz(CalcData)
End If End If
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment