Commit 6c5a8aa1 authored by Raghavendra Dinavahi's avatar Raghavendra Dinavahi

Added NTN-FR2 FDD bands defined in release 18. Bandtable modified.

    NTN-FR2 bands 510, 511, 512 added.
    TS 38.101-5 v 18.9 defines these 3 FR2-FDD bands for NTN operation.
    These bands are defined in Ka band range (17.3Ghz - 31Ghz)
    UL STEPSIZE, UL NOFFS added into band table
parent 0b100620
This diff is collapsed.
......@@ -107,8 +107,10 @@ typedef struct nr_bandentry_s {
uint64_t ul_max;
uint64_t dl_min;
uint64_t dl_max;
uint64_t step_size;
uint64_t N_OFFs_DL;
uint8_t ul_stepsize;
uint8_t dl_stepsize;
uint32_t N_OFFs_UL;
uint32_t N_OFFs_DL;
uint8_t deltaf_raster;
} nr_bandentry_t;
......
......@@ -1184,6 +1184,7 @@ typedef struct {
} nr_prach_info_3gpp_fr2_t;
// Table 6.3.3.2-4: Random access configurations for FR2 and unpaired spectrum
// and NTN-FR2 and paired as defined in 38.211v18.06
static const nr_prach_info_3gpp_fr2_t table_6_3_3_2_4_prachConfig_Index[256] = {
// format, format, x, y, y, SFN_nbr, star_symb, slots_sfn, occ_slot,
// duration
......@@ -1458,7 +1459,8 @@ int get_format0(uint8_t index, uint8_t unpaired, frequency_range_t frequency_ran
if (frequency_range==FR1)
format = table_6_3_3_2_2_prachConfig_Index[index].format;
else
AssertFatal(0==1,"no paired spectrum for FR2\n");
// Table defined for NTN-FR2 and paired in 3GPP Spec 38.211v18.06
format = table_6_3_3_2_4_prachConfig_Index[index].format;
}
return format;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment