An error occurred fetching the project authors.
- 24 Apr, 2018 1 commit
-
-
Raymond Knopp authored
-
- 22 Apr, 2018 1 commit
-
-
Raymond Knopp authored
UE directory splits, creation of UE-specific files, common UE/eNB files and extraction of UE/common components from eNodeB files. renaming of files to minimize common names across directories (i.e. defs.h, vars.h, extern.h)
-
- 08 Apr, 2018 1 commit
-
-
Raymond Knopp authored
-
- 06 Mar, 2018 1 commit
-
-
wujing authored
-
- 22 Feb, 2018 2 commits
-
-
Cedric Roux authored
-
Cedric Roux authored
- remove spaces at the end of lines - remove useless dead code use: git show -p <this commit> -w to see it clearly
-
- 20 Feb, 2018 1 commit
-
-
shahab SHARIAT BAGHERI authored
-
- 14 Feb, 2018 1 commit
-
-
Niccolò Iardella authored
-
- 13 Feb, 2018 1 commit
-
-
Raymond Knopp authored
-
- 12 Feb, 2018 1 commit
-
-
Robert Schmidt authored
-
- 06 Feb, 2018 1 commit
-
-
Cedric Roux authored
There is too much UL scheduling because the buffer status is overestimated. This commit tries to make things simpler.
-
- 05 Feb, 2018 1 commit
-
-
jftt_wangshanshan authored
-
- 01 Feb, 2018 1 commit
-
-
Xu Bo authored
-
- 31 Jan, 2018 2 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 27 Jan, 2018 1 commit
-
-
Xu Bo authored
-
- 26 Jan, 2018 2 commits
- 24 Jan, 2018 1 commit
-
-
Navid Nikaein authored
-
- 11 Jan, 2018 1 commit
-
-
bruno mongazon authored
-
- 08 Jan, 2018 1 commit
-
-
Xu Bo authored
-
- 07 Dec, 2017 1 commit
-
-
Xu Bo authored
-
- 28 Nov, 2017 1 commit
-
-
Xu Bo authored
merge the implemention of Paging, RRCConnectionRelease, RRCConnectionReestablishment, E-RAB Modify, E-RAB Release
-
- 14 Nov, 2017 1 commit
-
-
bruno mongazon authored
-
- 09 Nov, 2017 1 commit
-
-
Xu Bo authored
-
- 04 Nov, 2017 1 commit
-
-
Raymond Knopp authored
changing of notation for Random-Access procedure to match documentation. Function remains the same. Indentation (-kr) run on all files in LAYER2/MAC
-
- 23 Oct, 2017 2 commits
-
-
Florian Kaltenberger authored
-
Cedric Roux authored
-
- 10 Oct, 2017 1 commit
-
-
Cedric Roux authored
-
- 08 Oct, 2017 1 commit
-
-
Raymond Knopp authored
put 50 PRB back in default enb configuration. added handling of UE release in L1/L2. detection of stale ULSCH configuration
-
- 04 Oct, 2017 1 commit
-
-
Cedric 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...
-
- 01 Oct, 2017 1 commit
-
-
Raymond Knopp authored
-
- 24 Sep, 2017 1 commit
-
-
Raymond Knopp authored
-
- 22 Sep, 2017 1 commit
-
-
Raymond Knopp authored
-
- 14 Sep, 2017 1 commit
-
-
Raymond Knopp authored
-
- 17 Aug, 2017 1 commit
-
-
Raymond Knopp authored
-
- 13 Aug, 2017 1 commit
-
-
Raymond 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
-
- 08 Aug, 2017 1 commit
-
-
Raymond 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
-
- 27 Jul, 2017 1 commit
-
-
Cedric 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
-
- 24 Jul, 2017 1 commit
-
-
Raymond Knopp authored
-