- 04 Jun, 2024 2 commits
-
-
batuhan duyuler authored
- neighbour_config.conf file includes neighbour and measurement related parameters Neighbour List: - nr_cellid: the identity of existing cell who has neighbour - neighbour_cell_configuration(list): includes the identity parameters of the neighbour cell such: - gNBID (incase of N2 Handover / to be identified from AMF) - nr_cell_id (target gNB needs to consider) - physical_cellId (needed for measurement reporting) - absoluteFrequencySSB (needed for measurement reporting) - subcarrierSpacing (needed for measurement reporting) - plmn / tracking area code (incase of N2 Handover / needed for AMF to identify / allow HO) NR Measurement Configuration - Periodical - enable (default is 0, 1 enables the reporting) - includeBeamMeasurements, maxNrOfRS_IndexesToReport (configurable reporting parameters) - A2 - enable (default is 0, 1 enables the reporting) - threshold , timeToTrigger (configurable reporting parameters) - A3 - cell_id (the nr_cellid of neighbour cell. So this A3 parameters will be used for the neighbour - [-1] means default. so it can be applied to any neighbour if there is no specific config - Neighbour specific A3 Threshold can be used or default can be selected depending to the neighbour planning - The neighbour-config.conf specifies, apply default A3 for neighbours 3 and 4 | apply specific one for neighbour 2 - offset, hysteresis, timeToTrigger (configurable reporting parameters) the neighbour_config.conf can be included in the gNB.conf file. Example is given: gnb.sa.band78.106prb.rfsim.neighbour.conf A sequence array container is used for neighbour cell configuration. RRC structure has this container. A Measurement configuration structure is defined. This structure has Periodical / A2 Event structures and also a sequence container for A3 Event List. These structures are filled during the initialization. While F1 Setup Response is coming from DU to CU, the intra frequency / inter frequency neighbour decision is given for the existing cell. Also new neighbours could be added here if needed.
-
batuhan duyuler authored
The functions are needed in a later commit in both rrc_gNB_du.c and rrc_gNB.c, so move to the rrc_gNB_du.c file concerned with DUs (cells).
-
- 31 May, 2024 1 commit
-
-
Robert Schmidt authored
Reviewed-By: Laurent THOMAS <laurent.thomas@open-cells.com>
-
- 30 May, 2024 12 commits
-
-
Robert Schmidt authored
Integration: `2024.w22` (Part 1) See merge request oai/openairinterface5g!2773 * !2698 Handle division by 0 gracefully in average channel level calculation * !2743 Demystifying 10log10(2^30) in signal energy calculations. * !2767 NR UE imeisv fix * !2768 Over-estimate short and long BSR for better latency and TCP throughput * !2769 maxMIMOLayers parameter in configuration file
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
hotfix: current vlm_master (5fa129cf3161da9ff2d67341e6277e818c0f5d6a) breaks F1, NG, so use the one before (940dd5fa9f3917913fd487b13dfddfacd0ded06e)
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
38.321 6.1.3.1 says: "The size of the RLC headers and MAC subheaders are not considered in the buffer size computation" [for BSR]. However, prior to this commit, we take the size signaled of the BSR and schedule the UE with that amount of data, making it impossible for the UE to transmit all its data at once (because it is the size signaled + headers). In this commit, over-estimate the buffer status size. As we cannot know the exact number and size of headers, we simply use "BSR size + n", as done in function overestim_bsr_index().
-
- 29 May, 2024 5 commits
-
-
francescomani authored
-
Guido Casati authored
* nb_re_pdsch is directly linked to nb_rb_pdsch, if the latter is 0 the former is also 0 * compute average channel level only when number of RE for PDSCH is not 0 the average channel level will be set to 0 otherwise * Added a log message to handle this special case, which is consequence of other issues in the RX chain * with this commit, the inconsistency in the RX chain will be handled in later in nr_ue_pdsch_procedures with a demodulation failure other minor changes: * Improved clarity by using NR_NB_SC_PER_RB instead of hard-coded value 12 in nb of RBs calculation * cleaned up unused variable and outdated comments
-
Raymond Knopp authored
antennas.
-
Raymond Knopp authored
-
francescomani authored
-
- 28 May, 2024 1 commit
-
-
Bartosz Podrygajlo authored
-
- 27 May, 2024 11 commits
-
-
Robert Schmidt authored
Integration: `2024.w21` See merge request oai/openairinterface5g!2757 * !2733 Remove duplicated function to reverse N bits * !2712 rfsimulator: add support to simulate a long propagation delay * !2695 improve polar init and polar readability * !2709 Fix cmdline configmodule in phy simulators * !2756 remove some enb dependencies in NR files * !2687 bug fix ue UL payload filling randomly done in retransmissions (pointer not set) * !2543 power/PHR normalizations for deltaMCS power adaptation * !2719 Refactor LC handling at MAC * !2736 Fix debug for ongoing transactions * !2747 Fix aerial memory leak * !2761 Use timeout command to kill hanging iperf3 * !2752 fix-dci11-type0-bitmap-setting * !2759 Fix invalid MSG2 HARQ feedback attempt and remove accumulated_delta_PUCCH field from UE FAPI IF * !2740 bugfix/cleanup: remove uint8_t to encode size plus some cleanup * !2760 fix 5G NR SA FDD configs for 24 and 25 PRBs * !2520 Documentation on coding style, workflow, and review instructions
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
It can happen that in the current DL slot, we cannot send an allocation for Msg3 in a later UL slot. Up to this commit, MAC printed a warning. However, this is not really a warning, as it will likely work in the next or a later slot. So demote this to debug.
-
Robert Schmidt authored
-
Cedric Roux authored
The starting point was the function do_NR_DLInformationTransfer() which may deal with more than 256 bytes. Then why not cleanup all the functions in the same file. (And do a bit of formattting fixing while we're here.) Then cleanup the callers of those functions. Then, because of do_SIB23_NR() let's also cleanup in some structures. Not all the codebase was cleaned up, there surely remain some uint8_t (and char/short/uint16_t) which are wrong.
-
Bartosz Podrygajlo authored
-
Bartosz Podrygajlo authored
UE was attempting to send ACK on MSG2 - was caused by missing brackets in if statement.
-
- 25 May, 2024 3 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
Merge remote-tracking branch 'origin/Fix_array_for_debug_ongoing_transactions' into integration_2024_w21c
-
- 24 May, 2024 5 commits
-
-
Rúben Soares da Silva authored
Set appropriate length for csi payload calloc and memcpy, according to bit_len
-
Rúben Soares da Silva authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Rúben Soares da Silva authored
-