- Oct 16, 2017
-
-
Cédric Roux authored
- change target values - change upper/lower limit to trigger a tpc - don't use ul_cqi from SR The value of ul_cqi is not convincing, for both PUSCH and PUCCH, more work/analysis is required.
-
David Price authored
-
- Oct 12, 2017
-
-
Cédric Roux authored
-
- Oct 11, 2017
-
-
Cédric Roux authored
-
- Oct 10, 2017
-
-
Cédric Roux authored
- re-use ta_timer - when ta_timer is running: - no TA sent to UE - no TA from UE (for UE to have time to apply previous TA command) - decrease ta_timer every TTI - be careful to use correct value of ta_update (31 means no TA) Maybe not correct, to be checked.
-
- Oct 08, 2017
-
-
knopp authored
-
- Oct 07, 2017
- Oct 06, 2017
-
-
Cédric Roux authored
-
Cédric Roux authored
-
Cédric Roux authored
-
Cédric Roux authored
-
- Oct 05, 2017
-
-
David Price authored
NFAPI RACH now working. Gets sent to VNF. VNF cores currently on receipt. Probably fixed by merge from main RU-RAU-split which I will do next
-
- Oct 04, 2017
-
-
Cédric Roux authored
- don't use o_flip anymore in ulsch_decoding - remove dl_cqi from eNB_UE_STATS - put dl_cqi[NFAPI_CC_MAX] in UE_sched_ctrl - adapt code for this dl_cqi change (from eNB_UE_STATS to UE_sched_ctrl) - extract_pusch_csi has been fixed for CQI_ReportModeAperiodic_rm30, the others need to be done. Program will exit if one uses them. Not sure if setting sched_ctl->dl_cqi[CC_idP] has to be done in this function...
-
- Oct 03, 2017
-
-
Cédric Roux authored
-
- Oct 02, 2017
-
-
Cédric Roux authored
-
Cédric Roux authored
-
- Oct 01, 2017
- Sep 28, 2017
-
-
Cédric Roux authored
-
- Sep 25, 2017
-
-
knopp authored
-
Francois TABURET authored
-
- Sep 24, 2017
-
-
knopp authored
-
- Sep 22, 2017
-
-
knopp authored
-
- Sep 21, 2017
-
-
knopp authored
-
- Sep 19, 2017
-
-
knopp authored
-
- Sep 15, 2017
-
-
knopp authored
-
- Sep 14, 2017
-
-
knopp authored
-
- Aug 29, 2017
-
-
Cédric Roux authored
- ENB_PHY_OUTPUT_SIGNAL to trace output signal - ENB_MAC_SCHEDULING_REQUEST to trace scheduling requests
-
- Aug 17, 2017
-
-
knopp authored
-
- Aug 15, 2017
-
-
knopp authored
-
- Aug 13, 2017
-
-
knopp authored
complete programming of Msg2/Msg4 procedures for eMTC. Addition of skeleton for PUCCH UCI (NFAPI) in L1. Some cleanup of eNB_scheduler.c
-
- Aug 10, 2017
- Aug 08, 2017
-
-
knopp authored
L1/L2 scheduling extensions for BL/CE operation, BR random-access procedure, BR PRACH detection. Still untested, but compilation succeeds. Missing elements in L2 - PUSCH programming for Msg3, Msg4 retransmission programming for BL/CE. DLSCH/ULSCH programming for UE-specific DLSCH/ULSCH for BL/CE
-
- Jul 27, 2017
-
-
Cédric Roux authored
This bug happens when we detect uplink failure for one UE. In this case, a DCI format 1A is sent to the UE to ask it to do random acces. The way this DCI is generated was not compatible with how the software is organized. It was expected that the DCI are added (with add_ue_spec_dci and add_common_dci) in a very specific order: first all DCIs in common space are added (with add_common_dci) then all DCIs in UE specific space are added (with add_ue_spec_dci). The problem was that the DCI format 1A DCI sent to the UE for it to do random access is added (with add_ue_spec_dci) before the DCIs in common space. That totally messed up the logic in add_common_dci and add_ue_spec_dci. The solution is to get rid of Num_common_dci and Num_ue_spec_dci, replace those two counters by only one (Num_dci) and add "search_space" in the dci_alloc structure to be used later by the function "allocate_CCEs" when calling "get_nCCE_offset". The software had to be adapted to the new variables, everywhere. I am not sure that the simulators work. It seems that some of them didn't use Num_common_dci and Num_ue_spec_dci to decide on what space (common or UE specific) to put the DCI, but relied on the rnti (comparing with SI_RNTI). To be tested properly. The modified simulators are: - openair1/SIMULATION/LTE_PHY/dlsim.c - openair1/SIMULATION/LTE_PHY/dlsim_tm4.c - openair1/SIMULATION/LTE_PHY/dlsim_tm7.c - openair1/SIMULATION/LTE_PHY/framegen.c - openair1/SIMULATION/LTE_PHY/pdcchsim.c - openair1/SIMULATION/LTE_PHY/syncsim.c
-
- Jul 25, 2017
-
-
knopp authored
-
- Jul 19, 2017
-
-
knopp authored
-
- Jul 06, 2017
-
-
knopp authored
Note: this commit is work in progress. Contains initial integration of NFAPI data structures which are tested for TX path. RX path to follow.
-
- May 23, 2017
-
-
Cédric Roux authored
We want the log in case of failure also for the case: if (nCCE + (1<<dci_alloc->L) > nCCE_max)
-