Renaming UE IDX to UE ID (Leftover fixes) [Issue-ID: ODUHIGH-401]
[o-du/l2.git] / src / phy_stub / phy_stub_thread_hdl.c
index 752c2f1..a622c76 100644 (file)
@@ -158,11 +158,11 @@ void *l1ConsoleHandler(void *args)
          while(counter)
          {
             /* Start Pumping data from PHY stub to DU */
-            for(drbIdx = 0; drbIdx < NUM_DRB_TO_PUMP_DATA; drbIdx++) //Number of DRB times the loop will run
+            for(ueIdx=0; ueIdx < MAX_NUM_UE; ueIdx++)
             {
-               for(ueIdx=0; ueIdx<MAX_NUM_UE; ueIdx++)
+               for(drbIdx = 0; drbIdx < NUM_DRB_TO_PUMP_DATA; drbIdx++) //Number of DRB times the loop will run
                {
-                  DU_LOG("\nDEBUG  --> PHY STUB: Sending UL User Data[DrbId:%d] for UEId %d\n",drbIdx,ueIdx);
+                  DU_LOG("\nDEBUG  --> PHY STUB: Sending UL User Data[DrbId:%d] for UEIdx %d\n",drbIdx,ueIdx);
                   l1SendUlUserData(drbIdx,ueIdx);
                   /* TODO :- sleep(1) will be removed once we will be able to
                    * send continuous data packet */