- Apr 12, 2019
-
-
Rohit Gupta authored
increased size of maximum SI allocation (to mcs 9 with 3 PRBs) Fixes issues with SI message using eMTC information elementswq
-
- Apr 08, 2019
-
-
frtabu authored
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- Apr 05, 2019
-
-
frtabu authored
-
- Mar 30, 2019
-
-
Cédric Roux authored
- size of PUCCH has been fixed to: - 2 RBs for N_RB_UL = 25 (1 RB at top of resource grid, 1 RB at bottom) - 4 RBs for N_RB_UL = 50 - 6 RBs for N_RB_UL = 100 this is arbitrary and will need some rework at some point. This may be also wrong. PUCCH size actually depends on DL traffic (if the ack/nack is not done in PUSCH) and scheduling request configurations. - add sched_frame %= 1024 at one needed place - reserve RBs for retransmission this was not done so new transmissions were scheduled in the same RBs. Since the code works with the notion of 'first_rb' only, it was decided to skip all RBs lower than those retransmitted. This works but is not correct (imagine we have to retransmit RB 23, then all RBs < 23 will not be used for new transmission). The work to fix this properly is complex, a lot has to change, so let's do it this simple way for now. - sort_ue_ul was not correct - add the function maxround_ul to use the correct 'round' (the one from DL was used, which is totally wrong) - be sure to use the correct frame/subframe to get the correct HARQ pid
-
Cédric Roux authored
-
Cédric Roux authored
For retransmission, let's use cqi_req used for the 1st transmission. Maybe incorrect, should check the specs. (In the worst case, we simply won't decode this transmission at all. No big deal.)
-
Cédric Roux authored
-
Cédric Roux authored
-
Cédric Roux authored
-
Cédric Roux authored
-
- Mar 26, 2019
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Cédric Roux authored
-
- Mar 24, 2019
-
-
Robert Schmidt authored
-
- Mar 23, 2019
-
-
Robert Schmidt authored
This resolves the following warning: "error: invalid suffix on literal; C++11 requires a space between literal and identifier" Since this file might be included from a C++11 file. It only adds spaces.
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- Mar 21, 2019
-
-
Cédric Roux authored
-
- Mar 19, 2019
-
-
Raphael Defosseux authored
-- rrc_inactivity_threshold in seconds Adding support in CI to test it -- disable/enable data service on UEs -- no automatic check yet on the UE status certainly should be done w/ a Flexran controller command Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Robert Schmidt authored
-
Cédric Roux authored
end_of_burst_delay is used to stop TX only "after a while". If we stop right after effective signal, with USRP B210 and B200mini, we observe a high EVM on the S subframe (on the PSS). A value of 400 (for 30.72MHz) solves this issue. This is the default. This default value can be changed in the configuration file. For example: RUs = ( { local_rf = "yes" nb_tx = 1 nb_rx = 1 att_tx = 20 att_rx = 0; bands = [7]; max_pdschReferenceSignalPower = -27; max_rxgain = 105; eNB_instances = [0]; sf_extension = 312; end_of_burst_delay = 200; } ); Here we would set a value of 200. The value to put in the configuration file is for 30.72MHz. The value is scaled accordingly at runtime (thus only one value to set for every RB configuration, 25, 50 or 100, leading to less problems when adapting configuration files). This option is for experts and should not be changed randomly.
-
Cédric Roux authored
This parameter is meaningful in TDD, to decide when to start DL at eNB side. Since there is a need for the PA to be operational, we need to transmit a bit before the DL subframe coming after an UL subframe. (We transmit zeros.) We used to use N_TA_offset which may be too much. Default value is now N_TA_offset/2 and can be changed in the configuration file, in the RUs section, like: RUs = ( { local_rf = "yes" nb_tx = 1 nb_rx = 1 att_tx = 0 att_rx = 0; bands = [7]; max_pdschReferenceSignalPower = -27; max_rxgain = 105; eNB_instances = [0]; sf_extension = 312; } ); N_TA_offset is 624 (for 30.72MHz). In the example above, we set sf_extension = 312, which is also the default. The value to put in the configuration file is for 30.72MHz. The value is scaled accordingly at runtime (thus only one value to set for every RB configuration, 25, 50 or 100, leading to less problems when adapting configuration files). This option is for experts and should not be changed randomly.
-
- Mar 18, 2019
-
-
Raphael Defosseux authored
-
- Mar 13, 2019
-
-
Cédric Roux authored
This commit introduces X2AP timers (t_reloc_prep, tx2_reloc_overall). You need to set the values in the configuration file. X2AP can be enabled or disabled in the configuration file too (disabled by default). Some deadcode was removed.
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- Mar 12, 2019
-
-
knopp authored
parameters for PRACH/PUCCH in configuration file. Default values are those used for Band 7. eMTC configuration file for eMTC changed to reflect modification made for Band 13 operation.
-
- Mar 09, 2019
-
-
frtabu authored
-
- Mar 08, 2019
-
-
Robert Schmidt authored
-
Robert Schmidt authored
* prevent segfault: guard access to RC.rrc with UETARGET * in rlc_data_ind(): correct logic to test for all cases eNB, CU, DU, UE
-
frtabu authored
-
- Mar 07, 2019
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- Mar 06, 2019
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-