1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-10-30 22:56:22 +00:00

Do not repeat NMA messages

This commit is contained in:
Carles Fernandez 2023-05-23 12:58:51 +02:00
parent 29f43b72c5
commit 9f2264a970
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 3 additions and 2 deletions

View File

@ -1405,8 +1405,9 @@ int32_t Galileo_Inav_Message::page_jk_decoder(const char* data_jk)
}
OSNMA_msg Galileo_Inav_Message::get_osnma_msg() const
OSNMA_msg Galileo_Inav_Message::get_osnma_msg()
{
nma_position_filled = std::array<int8_t, 15>{};
return nma_msg;
}

View File

@ -124,7 +124,7 @@ public:
/*
* \brief Returns an OSNMA_msg object filled with the latest NMA message received. Resets msg buffer.
*/
OSNMA_msg get_osnma_msg() const;
OSNMA_msg get_osnma_msg();
inline bool get_flag_CRC_test() const
{