mirror of https://github.com/pvnis/srsRAN_4G.git
Add NR RRC interface types
parent
7aef15bf34
commit
96a47fb93a
@ -0,0 +1,560 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2020 Software Radio Systems Limited
|
||||||
|
*
|
||||||
|
* By using this file, you agree to the terms and conditions set
|
||||||
|
* forth in the LICENSE file which can be found at the top level of
|
||||||
|
* the distribution.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SRSLTE_RRC_NR_INTERFACE_TYPES_H
|
||||||
|
#define SRSLTE_RRC_NR_INTERFACE_TYPES_H
|
||||||
|
|
||||||
|
#include "srslte/config.h"
|
||||||
|
#include "srslte/srslte.h"
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace srslte {
|
||||||
|
|
||||||
|
/***************************
|
||||||
|
* PHY Config
|
||||||
|
**************************/
|
||||||
|
|
||||||
|
struct phy_cfg_nr_t {
|
||||||
|
srslte_sch_hl_cfg_nr_t pdsch;
|
||||||
|
srslte_sch_hl_cfg_nr_t pusch;
|
||||||
|
srslte_pucch_nr_hl_cfg_t pucch;
|
||||||
|
srslte_prach_cfg_t prach;
|
||||||
|
srslte_ue_dl_nr_pdcch_cfg_t pdcch;
|
||||||
|
srslte_ue_dl_nr_harq_ack_cfg_t harq_ack;
|
||||||
|
|
||||||
|
phy_cfg_nr_t()
|
||||||
|
{
|
||||||
|
// Default PDSCH configuration
|
||||||
|
pdsch.sch_cfg.mcs_table = srslte_mcs_table_256qam;
|
||||||
|
|
||||||
|
// Default PRACH configuration
|
||||||
|
prach.is_nr = true;
|
||||||
|
prach.config_idx = 16;
|
||||||
|
prach.root_seq_idx = 1;
|
||||||
|
prach.freq_offset = 0;
|
||||||
|
prach.zero_corr_zone = 0;
|
||||||
|
prach.num_ra_preambles = 64;
|
||||||
|
prach.hs_flag = false;
|
||||||
|
|
||||||
|
// physicalCellGroupConfig
|
||||||
|
// pdsch-HARQ-ACK-Codebook: dynamic (1)
|
||||||
|
harq_ack.pdsch_harq_ack_codebook = srslte_pdsch_harq_ack_codebook_dynamic;
|
||||||
|
|
||||||
|
// commonControlResourceSet
|
||||||
|
// controlResourceSetId: 1
|
||||||
|
// frequencyDomainResources: ff0000000000
|
||||||
|
// duration: 1
|
||||||
|
// cce-REG-MappingType: nonInterleaved (1)
|
||||||
|
// nonInterleaved: NULL
|
||||||
|
// precoderGranularity: sameAsREG-bundle (0)
|
||||||
|
pdcch.coreset[1].coreset_id = 1;
|
||||||
|
pdcch.coreset[1].precoder_granularity = srslte_coreset_precoder_granularity_reg_bundle;
|
||||||
|
pdcch.coreset[1].duration = 1;
|
||||||
|
pdcch.coreset[1].mapping_type = srslte_coreset_mapping_type_non_interleaved;
|
||||||
|
for (uint32_t i = 0; i < SRSLTE_CORESET_FREQ_DOMAIN_RES_SIZE; i++) {
|
||||||
|
pdcch.coreset[1].freq_resources[i] = (i < 8);
|
||||||
|
}
|
||||||
|
pdcch.coreset_present[1] = true;
|
||||||
|
|
||||||
|
// SearchSpace
|
||||||
|
// searchSpaceId: 1
|
||||||
|
// controlResourceSetId: 1
|
||||||
|
// monitoringSlotPeriodicityAndOffset: sl1 (0)
|
||||||
|
// sl1: NULL
|
||||||
|
// monitoringSymbolsWithinSlot: 8000 [bit length 14, 2 LSB pad bits, 1000 0000 0000 00.. decimal value 8192]
|
||||||
|
// nrofCandidates
|
||||||
|
// aggregationLevel1: n0 (0)
|
||||||
|
// aggregationLevel2: n0 (0)
|
||||||
|
// aggregationLevel4: n1 (1)
|
||||||
|
// aggregationLevel8: n0 (0)
|
||||||
|
// aggregationLevel16: n0 (0)
|
||||||
|
// searchSpaceType: common (0)
|
||||||
|
// common
|
||||||
|
// dci-Format0-0-AndFormat1-0
|
||||||
|
srslte_search_space_t search_space1 = {};
|
||||||
|
search_space1.id = 1;
|
||||||
|
search_space1.coreset_id = 1;
|
||||||
|
search_space1.nof_candidates[0] = 0;
|
||||||
|
search_space1.nof_candidates[1] = 0;
|
||||||
|
search_space1.nof_candidates[2] = 1;
|
||||||
|
search_space1.nof_candidates[3] = 0;
|
||||||
|
search_space1.nof_candidates[4] = 0;
|
||||||
|
search_space1.type = srslte_search_space_type_common_3;
|
||||||
|
pdcch.search_space[1] = search_space1;
|
||||||
|
pdcch.search_space_present[1] = true;
|
||||||
|
|
||||||
|
// ra-SearchSpace: 1
|
||||||
|
pdcch.ra_rnti = 0x16; //< Supposed to be deduced from PRACH configuration
|
||||||
|
pdcch.ra_search_space = search_space1;
|
||||||
|
pdcch.ra_search_space.type = srslte_search_space_type_common_1;
|
||||||
|
pdcch.ra_search_space_present = true;
|
||||||
|
|
||||||
|
// pdsch-ConfigCommon: setup (1)
|
||||||
|
// setup
|
||||||
|
// pdsch-TimeDomainAllocationList: 2 items
|
||||||
|
// Item 0
|
||||||
|
// PDSCH-TimeDomainResourceAllocation
|
||||||
|
// mappingType: typeA (0)
|
||||||
|
// startSymbolAndLength: 40
|
||||||
|
// Item 1
|
||||||
|
// PDSCH-TimeDomainResourceAllocation
|
||||||
|
// mappingType: typeA (0)
|
||||||
|
// startSymbolAndLength: 57
|
||||||
|
pdsch.common_time_ra[0].mapping_type = srslte_sch_mapping_type_A;
|
||||||
|
pdsch.common_time_ra[0].sliv = 40;
|
||||||
|
pdsch.common_time_ra[0].k = 0;
|
||||||
|
pdsch.common_time_ra[1].mapping_type = srslte_sch_mapping_type_A;
|
||||||
|
pdsch.common_time_ra[1].sliv = 57;
|
||||||
|
pdsch.common_time_ra[1].k = 0;
|
||||||
|
pdsch.nof_common_time_ra = 2;
|
||||||
|
|
||||||
|
// pusch-ConfigCommon: setup (1)
|
||||||
|
// setup
|
||||||
|
// pusch-TimeDomainAllocationList: 2 items
|
||||||
|
// Item 0
|
||||||
|
// PUSCH-TimeDomainResourceAllocation
|
||||||
|
// k2: 4
|
||||||
|
// mappingType: typeA (0)
|
||||||
|
// startSymbolAndLength: 27
|
||||||
|
// Item 1
|
||||||
|
// PUSCH-TimeDomainResourceAllocation
|
||||||
|
// k2: 5
|
||||||
|
// mappingType: typeA (0)
|
||||||
|
// startSymbolAndLength: 27
|
||||||
|
// p0-NominalWithGrant: -90dBm
|
||||||
|
pusch.common_time_ra[0].mapping_type = srslte_sch_mapping_type_A;
|
||||||
|
pusch.common_time_ra[0].sliv = 27;
|
||||||
|
pusch.common_time_ra[0].k = 4;
|
||||||
|
pusch.common_time_ra[1].mapping_type = srslte_sch_mapping_type_A;
|
||||||
|
pusch.common_time_ra[1].sliv = 27;
|
||||||
|
pusch.common_time_ra[1].k = 5;
|
||||||
|
pusch.nof_common_time_ra = 2;
|
||||||
|
|
||||||
|
// pusch-Config: setup (1)
|
||||||
|
// setup
|
||||||
|
// dmrs-UplinkForPUSCH-MappingTypeA: setup (1)
|
||||||
|
// setup
|
||||||
|
// dmrs-AdditionalPosition: pos1 (1)
|
||||||
|
// transformPrecodingDisabled
|
||||||
|
pusch.dmrs_typeA.additional_pos = srslte_dmrs_sch_add_pos_1;
|
||||||
|
pusch.dmrs_typeA.present = true;
|
||||||
|
// pusch-PowerControl
|
||||||
|
// msg3-Alpha: alpha1 (7)
|
||||||
|
// p0-NominalWithoutGrant: -90dBm
|
||||||
|
// p0-AlphaSets: 1 item
|
||||||
|
// Item 0
|
||||||
|
// P0-PUSCH-AlphaSet
|
||||||
|
// p0-PUSCH-AlphaSetId: 0
|
||||||
|
// p0: 0dB
|
||||||
|
// alpha: alpha1 (7)
|
||||||
|
// pathlossReferenceRSToAddModList: 1 item
|
||||||
|
// Item 0
|
||||||
|
// PUSCH-PathlossReferenceRS
|
||||||
|
// pusch-PathlossReferenceRS-Id: 0
|
||||||
|
// referenceSignal: ssb-Index (0)
|
||||||
|
// ssb-Index: 0
|
||||||
|
// sri-PUSCH-MappingToAddModList: 1 item
|
||||||
|
// Item 0
|
||||||
|
// SRI-PUSCH-PowerControl
|
||||||
|
// sri-PUSCH-PowerControlId: 0
|
||||||
|
// sri-PUSCH-PathlossReferenceRS-Id: 0
|
||||||
|
// sri-P0-PUSCH-AlphaSetId: 0
|
||||||
|
// sri-PUSCH-ClosedLoopIndex: i0 (0)
|
||||||
|
// resourceAllocation: resourceAllocationType1 (1)
|
||||||
|
// uci-OnPUSCH: setup (1)
|
||||||
|
// setup
|
||||||
|
// betaOffsets: semiStatic (1)
|
||||||
|
// semiStatic
|
||||||
|
// betaOffsetACK-Index1: 9
|
||||||
|
// betaOffsetACK-Index2: 9
|
||||||
|
// betaOffsetACK-Index3: 9
|
||||||
|
// betaOffsetCSI-Part1-Index1: 6
|
||||||
|
// betaOffsetCSI-Part1-Index2: 6
|
||||||
|
// betaOffsetCSI-Part2-Index1: 6
|
||||||
|
// betaOffsetCSI-Part2-Index2: 6
|
||||||
|
// scaling: f1 (3)
|
||||||
|
|
||||||
|
// pucch-Config: setup (1)
|
||||||
|
// setup
|
||||||
|
// resourceSetToAddModList: 2 items
|
||||||
|
pucch.enabled = true;
|
||||||
|
// Item 0
|
||||||
|
// PUCCH-ResourceSet
|
||||||
|
// pucch-ResourceSetId: 0
|
||||||
|
// resourceList: 8 items
|
||||||
|
// Item 0
|
||||||
|
// PUCCH-ResourceId: 0
|
||||||
|
// Item 1
|
||||||
|
// PUCCH-ResourceId: 1
|
||||||
|
// Item 2
|
||||||
|
// PUCCH-ResourceId: 2
|
||||||
|
// Item 3
|
||||||
|
// PUCCH-ResourceId: 3
|
||||||
|
// Item 4
|
||||||
|
// PUCCH-ResourceId: 4
|
||||||
|
// Item 5
|
||||||
|
// PUCCH-ResourceId: 5
|
||||||
|
// Item 6
|
||||||
|
// PUCCH-ResourceId: 6
|
||||||
|
// Item 7
|
||||||
|
// PUCCH-ResourceId: 7
|
||||||
|
pucch.sets[0].nof_resources = 8;
|
||||||
|
|
||||||
|
// Item 1
|
||||||
|
// PUCCH-ResourceSet
|
||||||
|
// pucch-ResourceSetId: 1
|
||||||
|
// resourceList: 8 items
|
||||||
|
// Item 0
|
||||||
|
// PUCCH-ResourceId: 8
|
||||||
|
// Item 1
|
||||||
|
// PUCCH-ResourceId: 9
|
||||||
|
// Item 2
|
||||||
|
// PUCCH-ResourceId: 10
|
||||||
|
// Item 3
|
||||||
|
// PUCCH-ResourceId: 11
|
||||||
|
// Item 4
|
||||||
|
// PUCCH-ResourceId: 12
|
||||||
|
// Item 5
|
||||||
|
// PUCCH-ResourceId: 13
|
||||||
|
// Item 6
|
||||||
|
// PUCCH-ResourceId: 14
|
||||||
|
// Item 7
|
||||||
|
// PUCCH-ResourceId: 15
|
||||||
|
pucch.sets[1].nof_resources = 8;
|
||||||
|
|
||||||
|
// resourceToAddModList: 18 items
|
||||||
|
// Item 0
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 0
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 0
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 0
|
||||||
|
pucch.sets[0].resources[0].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[0].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[0].initial_cyclic_shift = 0;
|
||||||
|
pucch.sets[0].resources[0].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[0].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[0].time_domain_occ = 0;
|
||||||
|
|
||||||
|
// Item 1
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 1
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 4
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 0
|
||||||
|
pucch.sets[0].resources[1].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[1].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[1].initial_cyclic_shift = 4;
|
||||||
|
pucch.sets[0].resources[1].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[1].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[1].time_domain_occ = 0;
|
||||||
|
|
||||||
|
// Item 2
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 2
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 8
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 0
|
||||||
|
pucch.sets[0].resources[2].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[2].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[2].initial_cyclic_shift = 8;
|
||||||
|
pucch.sets[0].resources[2].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[2].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[2].time_domain_occ = 0;
|
||||||
|
|
||||||
|
// Item 3
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 3
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 0
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 1
|
||||||
|
pucch.sets[0].resources[3].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[3].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[3].initial_cyclic_shift = 0;
|
||||||
|
pucch.sets[0].resources[3].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[3].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[3].time_domain_occ = 1;
|
||||||
|
|
||||||
|
// Item 4
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 4
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 4
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 1
|
||||||
|
pucch.sets[0].resources[4].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[4].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[4].initial_cyclic_shift = 4;
|
||||||
|
pucch.sets[0].resources[4].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[4].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[4].time_domain_occ = 1;
|
||||||
|
|
||||||
|
// Item 5
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 5
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 8
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 1
|
||||||
|
pucch.sets[0].resources[5].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[5].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[5].initial_cyclic_shift = 8;
|
||||||
|
pucch.sets[0].resources[5].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[5].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[5].time_domain_occ = 1;
|
||||||
|
|
||||||
|
// Item 6
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 6
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 0
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 2
|
||||||
|
pucch.sets[0].resources[6].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[6].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[6].initial_cyclic_shift = 0;
|
||||||
|
pucch.sets[0].resources[6].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[6].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[6].time_domain_occ = 2;
|
||||||
|
|
||||||
|
// Item 7
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 7
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 4
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 2
|
||||||
|
pucch.sets[0].resources[7].format = SRSLTE_PUCCH_NR_FORMAT_1;
|
||||||
|
pucch.sets[0].resources[7].starting_prb = 0;
|
||||||
|
pucch.sets[0].resources[7].initial_cyclic_shift = 0;
|
||||||
|
pucch.sets[0].resources[7].nof_symbols = 14;
|
||||||
|
pucch.sets[0].resources[7].start_symbol_idx = 0;
|
||||||
|
pucch.sets[0].resources[7].time_domain_occ = 2;
|
||||||
|
|
||||||
|
// Item 8
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 8
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
pucch.sets[1].resources[0].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[0].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[0].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[0].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[0].start_symbol_idx = 0;
|
||||||
|
|
||||||
|
// Item 9
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 9
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 2
|
||||||
|
pucch.sets[1].resources[1].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[1].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[1].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[1].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[1].start_symbol_idx = 2;
|
||||||
|
|
||||||
|
// Item 10
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 10
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 4
|
||||||
|
pucch.sets[1].resources[2].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[2].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[2].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[2].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[2].start_symbol_idx = 4;
|
||||||
|
|
||||||
|
// Item 11
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 11
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 6
|
||||||
|
pucch.sets[1].resources[3].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[3].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[3].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[3].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[3].start_symbol_idx = 6;
|
||||||
|
|
||||||
|
// Item 12
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 12
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 8
|
||||||
|
pucch.sets[1].resources[4].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[4].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[4].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[4].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[4].start_symbol_idx = 8;
|
||||||
|
|
||||||
|
// Item 13
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 13
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 10
|
||||||
|
pucch.sets[1].resources[5].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[5].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[5].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[5].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[5].start_symbol_idx = 10;
|
||||||
|
|
||||||
|
// Item 14
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 14
|
||||||
|
// startingPRB: 51
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 12
|
||||||
|
pucch.sets[1].resources[6].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[6].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[6].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[6].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[6].start_symbol_idx = 12;
|
||||||
|
|
||||||
|
// Item 15
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 15
|
||||||
|
// startingPRB: 1
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
pucch.sets[1].resources[7].format = SRSLTE_PUCCH_NR_FORMAT_2;
|
||||||
|
pucch.sets[1].resources[7].starting_prb = 51;
|
||||||
|
pucch.sets[1].resources[7].nof_prb = 1;
|
||||||
|
pucch.sets[1].resources[7].nof_symbols = 2;
|
||||||
|
pucch.sets[1].resources[7].start_symbol_idx = 2;
|
||||||
|
|
||||||
|
// Item 16
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 16
|
||||||
|
// startingPRB: 0
|
||||||
|
// format: format1 (1)
|
||||||
|
// format1
|
||||||
|
// initialCyclicShift: 8
|
||||||
|
// nrofSymbols: 14
|
||||||
|
// startingSymbolIndex: 0
|
||||||
|
// timeDomainOCC: 2
|
||||||
|
// Item 17
|
||||||
|
// PUCCH-Resource
|
||||||
|
// pucch-ResourceId: 17
|
||||||
|
// startingPRB: 1
|
||||||
|
// format: format2 (2)
|
||||||
|
// format2
|
||||||
|
// nrofPRBs: 1
|
||||||
|
// nrofSymbols: 2
|
||||||
|
// startingSymbolIndex: 2
|
||||||
|
// format1: setup (1)
|
||||||
|
// setup
|
||||||
|
// format2: setup (1)
|
||||||
|
// setup
|
||||||
|
// maxCodeRate: zeroDot25 (2)
|
||||||
|
for (uint32_t i = 0; i < SRSLTE_PUCCH_NR_MAX_NOF_SETS; i++) {
|
||||||
|
srslte_pucch_nr_resource_set_t* set = &pucch.sets[i];
|
||||||
|
for (uint32_t j = 0; j < set->nof_resources; j++) {
|
||||||
|
if (set->resources[j].format == SRSLTE_PUCCH_NR_FORMAT_2) {
|
||||||
|
set->resources[j].max_code_rate = 2; // 0.25
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// schedulingRequestResourceToAddModList: 1 item
|
||||||
|
// Item 0
|
||||||
|
// SchedulingRequestResourceConfig
|
||||||
|
// schedulingRequestResourceId: 1
|
||||||
|
// schedulingRequestID: 0
|
||||||
|
// periodicityAndOffset: sl40 (10)
|
||||||
|
// sl40: 8
|
||||||
|
// resource: 16
|
||||||
|
|
||||||
|
// dl-DataToUL-ACK: 7 items
|
||||||
|
// Item 0
|
||||||
|
// dl-DataToUL-ACK item: 8
|
||||||
|
// Item 1
|
||||||
|
// dl-DataToUL-ACK item: 7
|
||||||
|
// Item 2
|
||||||
|
// dl-DataToUL-ACK item: 6
|
||||||
|
// Item 3
|
||||||
|
// dl-DataToUL-ACK item: 5
|
||||||
|
// Item 4
|
||||||
|
// dl-DataToUL-ACK item: 4
|
||||||
|
// Item 5
|
||||||
|
// dl-DataToUL-ACK item: 12
|
||||||
|
// Item 6
|
||||||
|
// dl-DataToUL-ACK item: 11
|
||||||
|
harq_ack.dl_data_to_ul_ack[0] = 8;
|
||||||
|
harq_ack.dl_data_to_ul_ack[1] = 7;
|
||||||
|
harq_ack.dl_data_to_ul_ack[2] = 6;
|
||||||
|
harq_ack.dl_data_to_ul_ack[3] = 5;
|
||||||
|
harq_ack.dl_data_to_ul_ack[4] = 4;
|
||||||
|
harq_ack.dl_data_to_ul_ack[5] = 12;
|
||||||
|
harq_ack.dl_data_to_ul_ack[6] = 11;
|
||||||
|
harq_ack.nof_dl_data_to_ul_ack = 7;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // namespace srslte
|
||||||
|
|
||||||
|
#endif // SRSLTE_RRC_NR_INTERFACE_TYPES_H
|
Loading…
Reference in New Issue