Skip to content
Snippets Groups Projects
Commit ceef3701 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

only process EGNOS corrections

parent 07c1ce2c
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
...@@ -35,7 +35,8 @@ RawDataType UBloxRaw::addDataStream(const std::vector<uint8_t>& data_stream) ...@@ -35,7 +35,8 @@ RawDataType UBloxRaw::addDataStream(const std::vector<uint8_t>& data_stream)
case NAV_SBAS: // SBAS case NAV_SBAS: // SBAS
//std::cout << "SBAS received!\n"; //std::cout << "SBAS received!\n";
nav_.addSbasMessage(raw_data_.sbsmsg); if (raw_data_.sbsmsg.prn == 123 or raw_data_.sbsmsg.prn == 136) // only EGNOS corrections
nav_.addSbasMessage(raw_data_.sbsmsg);
// std::cout << "SBAS added!\n"; // std::cout << "SBAS added!\n";
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment