corrected mac_nr_pdu includes

This commit is contained in:
Francisco Paisana 2020-05-22 16:40:19 +01:00 committed by Francisco Paisana
parent 0b701022a3
commit edba7f57e4
7 changed files with 8 additions and 8 deletions

View File

@ -44,7 +44,7 @@ using namespace srslte;
#if PCAP #if PCAP
#include "srslte/common/mac_nr_pcap.h" #include "srslte/common/mac_nr_pcap.h"
#include "srslte/common/mac_nr_pdu.h" #include "srslte/mac/mac_nr_pdu.h"
static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr; static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr;
#endif #endif

View File

@ -41,7 +41,7 @@
#if PCAP #if PCAP
#include "srslte/common/mac_nr_pcap.h" #include "srslte/common/mac_nr_pcap.h"
#include "srslte/common/mac_nr_pdu.h" #include "srslte/mac/mac_nr_pdu.h"
static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr; static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr;
#endif #endif

View File

@ -44,7 +44,7 @@ using namespace srslte;
#if PCAP #if PCAP
#include "srslte/common/mac_nr_pcap.h" #include "srslte/common/mac_nr_pcap.h"
#include "srslte/common/mac_nr_pdu.h" #include "srslte/mac/mac_nr_pdu.h"
static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr; static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr;
#endif #endif

View File

@ -46,7 +46,7 @@ using namespace srslte;
#if PCAP #if PCAP
#include "srslte/common/mac_nr_pcap.h" #include "srslte/common/mac_nr_pcap.h"
#include "srslte/common/mac_nr_pdu.h" #include "srslte/mac/mac_nr_pdu.h"
static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr; static std::unique_ptr<srslte::mac_nr_pcap> pcap_handle = nullptr;
#endif #endif

View File

@ -24,7 +24,7 @@
#include "srslte/common/logmap.h" #include "srslte/common/logmap.h"
#include "srslte/common/mac_nr_pcap.h" #include "srslte/common/mac_nr_pcap.h"
#include "srslte/common/mac_nr_pdu.h" #include "srslte/mac/mac_nr_pdu.h"
#include "srsenb/hdr/stack/enb_stack_base.h" #include "srsenb/hdr/stack/enb_stack_base.h"
#include "srslte/interfaces/enb_metrics_interface.h" #include "srslte/interfaces/enb_metrics_interface.h"
@ -48,7 +48,7 @@ struct mac_nr_args_t {
class mac_nr : public mac_interface_phy_nr, public mac_interface_rrc_nr, public mac_interface_rlc_nr class mac_nr : public mac_interface_phy_nr, public mac_interface_rrc_nr, public mac_interface_rlc_nr
{ {
public: public:
mac_nr(srslte::logger* logger_); mac_nr();
~mac_nr(); ~mac_nr();
int init(const mac_nr_args_t& args_, int init(const mac_nr_args_t& args_,

View File

@ -33,7 +33,7 @@
namespace srsenb { namespace srsenb {
mac_nr::mac_nr(srslte::logger* logger_) : pool(srslte::byte_buffer_pool::get_instance()), log_h("MAC") mac_nr::mac_nr() : pool(srslte::byte_buffer_pool::get_instance()), log_h("MAC")
{ {
bcch_bch_payload = srslte::allocate_unique_buffer(*pool); bcch_bch_payload = srslte::allocate_unique_buffer(*pool);

View File

@ -25,8 +25,8 @@
#include "srslte/common/block_queue.h" #include "srslte/common/block_queue.h"
#include "srslte/common/logmap.h" #include "srslte/common/logmap.h"
#include "srslte/common/mac_nr_pcap.h" #include "srslte/common/mac_nr_pcap.h"
#include "srslte/common/mac_nr_pdu.h"
#include "srslte/interfaces/ue_nr_interfaces.h" #include "srslte/interfaces/ue_nr_interfaces.h"
#include "srslte/mac/mac_nr_pdu.h"
#include "srsue/hdr/stack/mac/mux.h" #include "srsue/hdr/stack/mac/mux.h"
#include "srsue/hdr/stack/ue_stack_base.h" #include "srsue/hdr/stack/ue_stack_base.h"