From aca6c21944842d7b17bb31714c65d30a4227074f Mon Sep 17 00:00:00 2001 From: cesaaargm Date: Tue, 27 Feb 2024 21:13:23 +0100 Subject: [PATCH] Revert "[TAS-111] time synch check: first draft" This reverts commit 50fbc3e9 --- src/core/libs/osnma_msg_receiver.cc | 31 +++++------------------------ src/core/libs/osnma_msg_receiver.h | 1 - 2 files changed, 5 insertions(+), 27 deletions(-) diff --git a/src/core/libs/osnma_msg_receiver.cc b/src/core/libs/osnma_msg_receiver.cc index b3d0099fd..eb75c71eb 100644 --- a/src/core/libs/osnma_msg_receiver.cc +++ b/src/core/libs/osnma_msg_receiver.cc @@ -22,7 +22,6 @@ #include "gnss_crypto.h" #include "gnss_satellite.h" #include "osnma_dsm_reader.h" // for OSNMA_DSM_Reader -#include "pvt_interface.h" #include // for DLOG #include // for gr::io_signature::make #include @@ -63,6 +62,9 @@ osnma_msg_receiver::osnma_msg_receiver( d_old_mack_message.set_capacity(10); // register OSNMA input message port from telemetry blocks this->message_port_register_in(pmt::mp("OSNMA_from_TLM")); + // register OSNMA output message port to PVT block + this->message_port_register_out(pmt::mp("OSNMA_to_PVT")); + this->set_msg_handler(pmt::mp("OSNMA_from_TLM"), #if HAS_GENERIC_LAMBDA [this](auto&& PH1) { msg_handler_osnma(PH1); }); @@ -73,33 +75,9 @@ osnma_msg_receiver::osnma_msg_receiver( boost::bind(&osnma_msg_receiver::msg_handler_osnma, this, _1)); #endif #endif - // register OSNMA input message port from PVT block - this->message_port_register_in(pmt::mp("pvt_to_osnma")); - this->set_msg_handler(pmt::mp("pvt_to_osnma"), -#if HAS_GENERIC_LAMBDA - [this](auto&& PH1) { msg_handler_pvt_to_osnma(PH1); }); -#else -#if USE_BOOST_BIND_PLACEHOLDERS - boost::bind(&osnma_msg_receiver::msg_handler_pvt_to_osnma, this, boost::placeholders::_1)); -#else - boost::bind(&osnma_msg_receiver::msg_handler_pvt_to_osnma, this, _1)); -#endif -#endif - // register OSNMA output message port to PVT block - this->message_port_register_out(pmt::mp("OSNMA_to_PVT")); } -void osnma_msg_receiver::msg_handler_pvt_to_osnma(const pmt::pmt_t& msg) -{ - try - { - d_receiver_time = wht::any_cast(pmt::any_ref(msg)); // C: TODO - check if this is the correct way to get the time from the PVT block - } - catch (const pmt::exception& e) - { - LOG(WARNING) << "osnma_msg_receiver pmt exception: " << e.what(); - } -} + void osnma_msg_receiver::msg_handler_osnma(const pmt::pmt_t& msg) { // requires mutex with msg_handler_osnma function called by the scheduler @@ -135,6 +113,7 @@ void osnma_msg_receiver::msg_handler_osnma(const pmt::pmt_t& msg) // } // } + process_osnma_message(nma_msg); } else { diff --git a/src/core/libs/osnma_msg_receiver.h b/src/core/libs/osnma_msg_receiver.h index 3097845c4..664921d35 100644 --- a/src/core/libs/osnma_msg_receiver.h +++ b/src/core/libs/osnma_msg_receiver.h @@ -60,7 +60,6 @@ private: osnma_msg_receiver(const std::string& pemFilePath, const std::string& merkleFilePath); void msg_handler_osnma(const pmt::pmt_t& msg); - void msg_handler_pvt_to_osnma(const pmt::pmt_t& msg); void process_osnma_message(const std::shared_ptr& osnma_msg); void read_nma_header(uint8_t nma_header); void read_dsm_header(uint8_t dsm_header);