From 36a3d857270dd5760a3df439dda9bf4b7b32dc54 Mon Sep 17 00:00:00 2001 From: Sandeep Kumar <ee13b1025@iith.ac.in> Date: Tue, 28 Jun 2016 18:05:23 +0200 Subject: [PATCH] init if before rf, cleaning usrp blocks --- targets/RT/USER/lte-enb.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/targets/RT/USER/lte-enb.c b/targets/RT/USER/lte-enb.c index 0ce83c721f..0e3af529c2 100644 --- a/targets/RT/USER/lte-enb.c +++ b/targets/RT/USER/lte-enb.c @@ -749,6 +749,12 @@ static void* eNB_thread_rx_common( void* param ) { #if defined(ENABLE_ITTI) wait_system_ready ("Waiting for eNB application to be ready %s\r", &start_eNB); #endif + + // Start IF device for this CC + if (eNB->node_function != eNodeB_3GPP) { + if (eNB->ifdevice.trx_start_func(&eNB->ifdevice) != 0 ) + LOG_E(HW,"Could not start the IF device\n"); + } // Start RF device for this CC if (eNB->node_function == eNodeB_3GPP || eNB->node_function == NGFI_RRU_IF4) { @@ -756,12 +762,6 @@ static void* eNB_thread_rx_common( void* param ) { LOG_E(HW,"Could not start the RF device\n"); } - // Start IF device for this CC - if (eNB->node_function != eNodeB_3GPP) { - if (eNB->ifdevice.trx_start_func(&eNB->ifdevice) != 0 ) - LOG_E(HW,"Could not start the IF device\n"); - } - // This is a forever while loop, it loops over subframes which are scheduled by incoming samples from HW devices while (!oai_exit) { VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_eNB_PROC_RX, 0 ); -- GitLab