- 06 Oct, 2020 4 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
This then only uses the "modern" ip tool instead of ifconfig, and the command is more "homogeneous".
-
Robert Schmidt authored
-
Robert Schmidt authored
This completely removes the UESIM_EXPANSION define: it does not compile at the moment. Its function was to multiplex multiple UEs on the same TUN interface. However, this functionality is not needed since it is possible to allocate many TUN devices (i.e., >= 32).
-
- 05 Oct, 2020 7 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
Various mutexes are present in the phy_stub_UE.c file. However, it will only be run in a single thread; the multiple-thread implementation also runs the higher layers concurrently, which leads to races and segfaults. Therefore, remove these mutexes, as we don't need them.
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
abdeljel authored
-
- 01 Oct, 2020 1 commit
-
-
Remi Hardy authored
MR 896 : Nsa remove band hardcodings Removes hardcodings of EUTRA and NR bands in UE_Capability_Enquiry and NR_UE Capability_Enquiry messages, providing them from the eNB config file and gNB over X2 respectively. Moreover, the SSB Absolute frequency of the gNB is now provided by the eNB configuration file (instead of being hardcoded at rrc_eNB.c) MR903 : pusch ta update Update of PUSCH Timing advance MR 900 : improve x2/rrc for ENDC This MR introduces several enhancements in X2AP and RRC to deal with ENDC. The main goal is to deal with UE's on/off and with various errors. Includes : - DC prep and DC overall X2 timers - X2 messages for UE release and DC timers' timeout
-
- 30 Sep, 2020 2 commits
- 25 Sep, 2020 3 commits
-
-
Francesco Mani authored
-
Francesco Mani authored
-
Francesco Mani authored
-
- 24 Sep, 2020 2 commits
-
-
matzakos authored
Merge branch 'nsa_remove_band_hardcodings' of https://gitlab.eurecom.fr/oai/openairinterface5g into nsa_remove_band_hardcodings
-
matzakos authored
-
- 23 Sep, 2020 1 commit
-
-
Remi Hardy authored
-
- 22 Sep, 2020 4 commits
-
-
Cedric Roux authored
Maybe not the right way to do. To be checked.
-
Cedric Roux authored
After the UE disconnects, the next connection fails because the gNB cannot decode Msg3. The root cause seems to be this ul_valid_re_per_slot not set to 0. Setting it before the test fixes the problem and does not seem to impact anything else.
-
Cedric Roux authored
Some data remains in the PHY of the gNB after UE removal by upper layers. After some connection/deconnection/reconnection the gNB will exit because there is no free space in PHY. This commit adds some global variables shared by MAC and PHY. The function mac_remove_nr_ue puts UEs to be removed in it and the function rxtx removes what needs to be removed. This is a hack. It will be removed at some point in time. The real way to remove in the PHY should be to release data after some time of inactivity in the PHY, which would mean the UE has been removed in upper layers. Kind of timer-based thing. There should be no communication between PHY and MAC.
-
Cedric Roux authored
This commit introduces several enhancements in X2AP and RRC to deal with ENDC. The main goal is to deal with UE's on/off and with various errors. The following work is included: - DC prep and DC overall X2 timers - X2 messages for UE release and DC timers' timeout Open problems: - what to do when the UE sends an scg Failure? This commit removes the UE. And this removal may not be correctly done - UE removal in the gNB's PHY layer (a next commit is coming, but it is hackish and will need a rework)
-
- 21 Sep, 2020 2 commits
-
-
Remi Hardy authored
Integration 2020 wk38 See merge request oai/openairinterface5g!899
-
hardy authored
-
- 18 Sep, 2020 4 commits
-
-
hardy authored
Merge remote-tracking branch 'origin/fix-0509-crash-RRCConnectionReconfiguration' into integration_2020_wk38
-
hardy authored
-
hardy authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 17 Sep, 2020 1 commit
-
-
Cedric Roux authored
-
- 16 Sep, 2020 1 commit
-
-
matzakos authored
- To avoid linking error due to dependency from NR_RRC FreqBandList type
-
- 15 Sep, 2020 2 commits
-
-
Raphael Defosseux authored
also correction for Circular Dependency Protection on header files also correction on the banner check Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Sergey Aranovskiy authored
Signed-off-by: Sergey Aranovskiy <aranovskiy@mwnts.ru>
-
- 14 Sep, 2020 5 commits
- 12 Sep, 2020 1 commit
-
-
Cedric Roux authored
RLC has timers. We need to keep track of time. We chose to not use realtime but 'processing time'. That is we send a tick to RLC for every subframe when it is processed by the softmodem. Before this commit we used to increase time in the function mac_rlc_status_ind which is called for every subframe in the eNB, but not in the gNB (at least not in the current gNB). So we need another way to keep track of time. The function gNB_dlsch_ulsch_scheduler is called for every slot. It seems to be the perfect candidate to send a tick to RLC for every subframe. We take care of subcarrier spacing to send every subframe (one subframe is always 1ms), not every slot (slot duration depends on subcarrier spacing). It may not be the best solution. To be revised if needed. Note: the UE has not been fixed. Some modification is needed for the UE too, most probably.
-