Commit 96903ed5 authored by Thomas Schlichter's avatar Thomas Schlichter

Use logical && instead of binary & in phy_procedures_UE_RX()

This commit was developed at Fraunhofer IIS (https://www.iis.fraunhofer.de).
parent 1b53fd40
......@@ -4716,7 +4716,7 @@ LOG_DEBUG_END
if (do_pdcch_flag) {
if ((l==pilot1) ||
((pmch_flag==1)&(l==l2))) {
((pmch_flag==1)&&(l==l2))) {
LOG_D(PHY,"[UE %d] Frame %d: Calling pdcch procedures (eNB %d)\n",ue->Mod_id,frame_rx,eNB_id);
//start_meas(&ue->rx_pdcch_stats[ue->current_thread_id[subframe_rx]]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment