First Version of ACS Controller #329

Merged
muellerr merged 106 commits from acs-ctrl-v1 into develop 2022-12-02 16:21:58 +01:00
2 changed files with 3 additions and 4 deletions
Showing only changes of commit 7be6bbc948 - Show all commits

View File

@ -443,8 +443,8 @@ void SensorProcessing::processGps(const double gps0latitude, const double gps0lo
} }
} }
void SensorProcessing::process(acsctrl::SusDataRaw *susData, timeval now, void SensorProcessing::process(timeval now, ACS::SensorValues *sensorValues,
ACS::SensorValues *sensorValues, ACS::OutputValues *outputValues, ACS::OutputValues *outputValues,
const AcsParameters *acsParameters) { const AcsParameters *acsParameters) {
sensorValues->update(); sensorValues->update();
// processGps(sensorValues->gps0latitude, sensorValues->gps0longitude, sensorValues->gps0Valid, // processGps(sensorValues->gps0latitude, sensorValues->gps0longitude, sensorValues->gps0Valid,

View File

@ -23,8 +23,7 @@ class SensorProcessing {
SensorProcessing(AcsParameters *acsParameters_); SensorProcessing(AcsParameters *acsParameters_);
virtual ~SensorProcessing(); virtual ~SensorProcessing();
void process(acsctrl::SusDataRaw *susData, timeval now, ACS::SensorValues *sensorValues, void process(timeval now, ACS::SensorValues *sensorValues, ACS::OutputValues *outputValues,
ACS::OutputValues *outputValues,
const AcsParameters *acsParameters); // Will call protected functions const AcsParameters *acsParameters); // Will call protected functions
private: private:
protected: protected: