well this was easy
Some checks are pending
EIVE/eive-obsw/pipeline/head Build started...
EIVE/eive-obsw/pipeline/pr-main This commit looks good

This commit is contained in:
Marius Eggert 2023-08-03 20:56:46 +02:00
parent b2d9582a46
commit 348b720885

View File

@ -217,6 +217,14 @@ ReturnValue_t GpsHyperionLinuxController::handleGpsReadData() {
return returnvalue::FAILED;
}
for (int idx = 0; idx < 12; idx++) {
sif::debug << "PRN:" << gps.skyview[idx].PRN << std::endl;
sif::debug << "Az:" << gps.skyview[idx].azimuth << std::endl;
sif::debug << "El:" << gps.skyview[idx].elevation << std::endl;
sif::debug << "SS:" << gps.skyview[idx].ss << std::endl;
sif::debug << "used:" << gps.skyview[idx].used << std::endl;
}
bool validFix = false;
uint8_t newFix = 0;
if (modeIsSet) {