fixed init for SensorProcessing and type of timeDiff
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
This commit is contained in:
parent
12a367f65f
commit
b6c5796121
@ -21,8 +21,7 @@
|
|||||||
|
|
||||||
using namespace Math;
|
using namespace Math;
|
||||||
|
|
||||||
SensorProcessing::SensorProcessing(AcsParameters *acsParameters_)
|
SensorProcessing::SensorProcessing(AcsParameters *acsParameters_) {}
|
||||||
: savedMgmVecTot{0, 0, 0}, validMagField(false), validGcLatitude(false) {}
|
|
||||||
|
|
||||||
SensorProcessing::~SensorProcessing() {}
|
SensorProcessing::~SensorProcessing() {}
|
||||||
|
|
||||||
|
@ -70,15 +70,15 @@ class SensorProcessing {
|
|||||||
const AcsParameters::GpsParameters *gpsParameters,
|
const AcsParameters::GpsParameters *gpsParameters,
|
||||||
acsctrl::GpsDataProcessed *gpsDataProcessed);
|
acsctrl::GpsDataProcessed *gpsDataProcessed);
|
||||||
|
|
||||||
double savedMgmVecTot[3];
|
double savedMgmVecTot[3] = {0.0, 0.0, 0.0};
|
||||||
timeval timeOfSavedMagFieldEst;
|
timeval timeOfSavedMagFieldEst;
|
||||||
double savedSusVecTot[3];
|
double savedSusVecTot[3] = {0.0, 0.0, 0.0};
|
||||||
timeval timeOfSavedSusDirEst;
|
timeval timeOfSavedSusDirEst;
|
||||||
bool validMagField;
|
bool validMagField = false;
|
||||||
|
|
||||||
double savedPosSatE[3];
|
double savedPosSatE[3] = {0.0, 0.0, 0.0};
|
||||||
uint32_t timeOfSavedPosSatE;
|
double timeOfSavedPosSatE = 0.0;
|
||||||
bool validSavedPosSatE;
|
bool validSavedPosSatE = false;
|
||||||
const float zeroVector[3] = {0.0, 0.0, 0.0};
|
const float zeroVector[3] = {0.0, 0.0, 0.0};
|
||||||
|
|
||||||
SusConverter susConverter;
|
SusConverter susConverter;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user