added function to delete files
This commit is contained in:
parent
2a91105124
commit
2c4a47f302
@ -640,3 +640,19 @@ ReturnValue_t Guidance::getDistributionMatrixRw(ACS::SensorValues *sensorValues,
|
|||||||
return returnvalue::FAILED;
|
return returnvalue::FAILED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ReturnValue_t Guidance::solarArrayDeploymentComplete() {
|
||||||
|
if (std::filesystem::exists(SD_0_SKEWED_PTG_FILE)) {
|
||||||
|
std::remove(SD_0_SKEWED_PTG_FILE);
|
||||||
|
if (std::filesystem::exists(SD_0_SKEWED_PTG_FILE)) {
|
||||||
|
return returnvalue::FAILED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (std::filesystem::exists(SD_1_SKEWED_PTG_FILE)) {
|
||||||
|
std::remove(SD_1_SKEWED_PTG_FILE);
|
||||||
|
if (std::filesystem::exists(SD_1_SKEWED_PTG_FILE)) {
|
||||||
|
return returnvalue::FAILED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return returnvalue::OK;
|
||||||
|
}
|
||||||
|
@ -20,6 +20,7 @@ class Guidance {
|
|||||||
virtual ~Guidance();
|
virtual ~Guidance();
|
||||||
|
|
||||||
void getTargetParamsSafe(double sunTargetSafe[3], double satRateRef[3]);
|
void getTargetParamsSafe(double sunTargetSafe[3], double satRateRef[3]);
|
||||||
|
ReturnValue_t solarArrayDeploymentComplete();
|
||||||
|
|
||||||
// Function to get the target quaternion and refence rotation rate from gps position and
|
// Function to get the target quaternion and refence rotation rate from gps position and
|
||||||
// position of the ground station
|
// position of the ground station
|
||||||
|
Loading…
x
Reference in New Issue
Block a user