├── .clang-format ├── .clang-tidy ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Readme.md ├── analyse.py ├── config ├── scan_band.cfg └── search_cell.cfg ├── lib ├── asn1c │ └── nr_rrc │ │ ├── AMF-Identifier.c │ │ ├── AMF-Identifier.h │ │ ├── ARFCN-ValueEUTRA.c │ │ ├── ARFCN-ValueEUTRA.h │ │ ├── ARFCN-ValueNR.c │ │ ├── ARFCN-ValueNR.h │ │ ├── AS-Config.c │ │ ├── AS-Config.h │ │ ├── AS-Context.c │ │ ├── AS-Context.h │ │ ├── AccessStratumRelease.c │ │ ├── AccessStratumRelease.h │ │ ├── AdditionalSpectrumEmission.c │ │ ├── AdditionalSpectrumEmission.h │ │ ├── AffectedCarrierFreqCombEUTRA.c │ │ ├── AffectedCarrierFreqCombEUTRA.h │ │ ├── AffectedCarrierFreqCombInfoMRDC.c │ │ ├── AffectedCarrierFreqCombInfoMRDC.h │ │ ├── AffectedCarrierFreqCombNR.c │ │ ├── AffectedCarrierFreqCombNR.h │ │ ├── AggregatedBandwidth.c │ │ ├── AggregatedBandwidth.h │ │ ├── Alpha.c │ │ ├── Alpha.h │ │ ├── BCCH-BCH-Message.c │ │ ├── BCCH-BCH-Message.h │ │ ├── BCCH-BCH-MessageType.c │ │ ├── BCCH-BCH-MessageType.h │ │ ├── BCCH-Config.c │ │ ├── BCCH-Config.h │ │ ├── BCCH-DL-SCH-Message.c │ │ ├── BCCH-DL-SCH-Message.h │ │ ├── BCCH-DL-SCH-MessageType.c │ │ ├── BCCH-DL-SCH-MessageType.h │ │ ├── BFR-CSIRS-Resource.c │ │ ├── BFR-CSIRS-Resource.h │ │ ├── BFR-SSB-Resource.c │ │ ├── BFR-SSB-Resource.h │ │ ├── BIT_STRING.c │ │ ├── BIT_STRING.h │ │ ├── BIT_STRING_oer.c │ │ ├── BOOLEAN.c │ │ ├── BOOLEAN.h │ │ ├── BSR-Config.c │ │ ├── BSR-Config.h │ │ ├── BWP-Downlink.c │ │ ├── BWP-Downlink.h │ │ ├── BWP-DownlinkCommon.c │ │ ├── BWP-DownlinkCommon.h │ │ ├── BWP-DownlinkDedicated.c │ │ ├── BWP-DownlinkDedicated.h │ │ ├── BWP-Id.c │ │ ├── BWP-Id.h │ │ ├── BWP-Uplink.c │ │ ├── BWP-Uplink.h │ │ ├── BWP-UplinkCommon.c │ │ ├── BWP-UplinkCommon.h │ │ ├── BWP-UplinkDedicated.c │ │ ├── BWP-UplinkDedicated.h │ │ ├── BWP.c │ │ ├── BWP.h │ │ ├── BandCombination-v1540.c │ │ ├── BandCombination-v1540.h │ │ ├── BandCombination-v1550.c │ │ ├── BandCombination-v1550.h │ │ ├── BandCombination-v1560.c │ │ ├── BandCombination-v1560.h │ │ ├── BandCombination.c │ │ ├── BandCombination.h │ │ ├── BandCombinationIndex.c │ │ ├── BandCombinationIndex.h │ │ ├── BandCombinationInfo.c │ │ ├── BandCombinationInfo.h │ │ ├── BandCombinationInfoList.c │ │ ├── BandCombinationInfoList.h │ │ ├── BandCombinationInfoSN.c │ │ ├── BandCombinationInfoSN.h │ │ ├── BandCombinationList-v1540.c │ │ ├── BandCombinationList-v1540.h │ │ ├── BandCombinationList-v1550.c │ │ ├── BandCombinationList-v1550.h │ │ ├── BandCombinationList-v1560.c │ │ ├── BandCombinationList-v1560.h │ │ ├── BandCombinationList.c │ │ ├── BandCombinationList.h │ │ ├── BandEntryIndex.c │ │ ├── BandEntryIndex.h │ │ ├── BandNR.c │ │ ├── BandNR.h │ │ ├── BandParameters-v1540.c │ │ ├── BandParameters-v1540.h │ │ ├── BandParameters.c │ │ ├── BandParameters.h │ │ ├── BeamFailureRecoveryConfig.c │ │ ├── BeamFailureRecoveryConfig.h │ │ ├── BeamManagementSSB-CSI-RS.c │ │ ├── BeamManagementSSB-CSI-RS.h │ │ ├── BetaOffsets.c │ │ ├── BetaOffsets.h │ │ ├── CA-BandwidthClassEUTRA.c │ │ ├── CA-BandwidthClassEUTRA.h │ │ ├── CA-BandwidthClassNR.c │ │ ├── CA-BandwidthClassNR.h │ │ ├── CA-ParametersEUTRA-v1560.c │ │ ├── CA-ParametersEUTRA-v1560.h │ │ ├── CA-ParametersEUTRA.c │ │ ├── CA-ParametersEUTRA.h │ │ ├── CA-ParametersNR-v1540.c │ │ ├── CA-ParametersNR-v1540.h │ │ ├── CA-ParametersNR-v1550.c │ │ ├── CA-ParametersNR-v1550.h │ │ ├── CA-ParametersNR-v1560.c │ │ ├── CA-ParametersNR-v1560.h │ │ ├── CA-ParametersNR.c │ │ ├── CA-ParametersNR.h │ │ ├── CA-ParametersNRDC.c │ │ ├── CA-ParametersNRDC.h │ │ ├── CFRA-CSIRS-Resource.c │ │ ├── CFRA-CSIRS-Resource.h │ │ ├── CFRA-SSB-Resource.c │ │ ├── CFRA-SSB-Resource.h │ │ ├── CFRA.c │ │ ├── CFRA.h │ │ ├── CG-Config-IEs.c │ │ ├── CG-Config-IEs.h │ │ ├── CG-Config-v1540-IEs.c │ │ ├── CG-Config-v1540-IEs.h │ │ ├── CG-Config-v1560-IEs.c │ │ ├── CG-Config-v1560-IEs.h │ │ ├── CG-Config.c │ │ ├── CG-Config.h │ │ ├── CG-ConfigInfo-IEs.c │ │ ├── CG-ConfigInfo-IEs.h │ │ ├── CG-ConfigInfo-v1540-IEs.c │ │ ├── CG-ConfigInfo-v1540-IEs.h │ │ ├── CG-ConfigInfo-v1560-IEs.c │ │ ├── CG-ConfigInfo-v1560-IEs.h │ │ ├── CG-ConfigInfo.c │ │ ├── CG-ConfigInfo.h │ │ ├── CG-UCI-OnPUSCH.c │ │ ├── CG-UCI-OnPUSCH.h │ │ ├── CGI-InfoEUTRA.c │ │ ├── CGI-InfoEUTRA.h │ │ ├── CGI-InfoNR.c │ │ ├── CGI-InfoNR.h │ │ ├── CSI-AperiodicTriggerState.c │ │ ├── CSI-AperiodicTriggerState.h │ │ ├── CSI-AperiodicTriggerStateList.c │ │ ├── CSI-AperiodicTriggerStateList.h │ │ ├── CSI-AssociatedReportConfigInfo.c │ │ ├── CSI-AssociatedReportConfigInfo.h │ │ ├── CSI-FrequencyOccupation.c │ │ ├── CSI-FrequencyOccupation.h │ │ ├── CSI-IM-Resource.c │ │ ├── CSI-IM-Resource.h │ │ ├── CSI-IM-ResourceId.c │ │ ├── CSI-IM-ResourceId.h │ │ ├── CSI-IM-ResourceSet.c │ │ ├── CSI-IM-ResourceSet.h │ │ ├── CSI-IM-ResourceSetId.c │ │ ├── CSI-IM-ResourceSetId.h │ │ ├── CSI-MeasConfig.c │ │ ├── CSI-MeasConfig.h │ │ ├── CSI-RS-CellMobility.c │ │ ├── CSI-RS-CellMobility.h │ │ ├── CSI-RS-ForTracking.c │ │ ├── CSI-RS-ForTracking.h │ │ ├── CSI-RS-IM-ReceptionForFeedback.c │ │ ├── CSI-RS-IM-ReceptionForFeedback.h │ │ ├── CSI-RS-Index.c │ │ ├── CSI-RS-Index.h │ │ ├── CSI-RS-ProcFrameworkForSRS.c │ │ ├── CSI-RS-ProcFrameworkForSRS.h │ │ ├── CSI-RS-Resource-Mobility.c │ │ ├── CSI-RS-Resource-Mobility.h │ │ ├── CSI-RS-ResourceConfigMobility.c │ │ ├── CSI-RS-ResourceConfigMobility.h │ │ ├── CSI-RS-ResourceMapping.c │ │ ├── CSI-RS-ResourceMapping.h │ │ ├── CSI-ReportConfig.c │ │ ├── CSI-ReportConfig.h │ │ ├── CSI-ReportConfigId.c │ │ ├── CSI-ReportConfigId.h │ │ ├── CSI-ReportFramework.c │ │ ├── CSI-ReportFramework.h │ │ ├── CSI-ReportPeriodicityAndOffset.c │ │ ├── CSI-ReportPeriodicityAndOffset.h │ │ ├── CSI-ResourceConfig.c │ │ ├── CSI-ResourceConfig.h │ │ ├── CSI-ResourceConfigId.c │ │ ├── CSI-ResourceConfigId.h │ │ ├── CSI-ResourcePeriodicityAndOffset.c │ │ ├── CSI-ResourcePeriodicityAndOffset.h │ │ ├── CSI-SSB-ResourceSet.c │ │ ├── CSI-SSB-ResourceSet.h │ │ ├── CSI-SSB-ResourceSetId.c │ │ ├── CSI-SSB-ResourceSetId.h │ │ ├── CSI-SemiPersistentOnPUSCH-TriggerState.c │ │ ├── CSI-SemiPersistentOnPUSCH-TriggerState.h │ │ ├── CSI-SemiPersistentOnPUSCH-TriggerStateList.c │ │ ├── CSI-SemiPersistentOnPUSCH-TriggerStateList.h │ │ ├── CandidateServingFreqListEUTRA.c │ │ ├── CandidateServingFreqListEUTRA.h │ │ ├── CandidateServingFreqListNR.c │ │ ├── CandidateServingFreqListNR.h │ │ ├── CarrierFreqEUTRA.c │ │ ├── CarrierFreqEUTRA.h │ │ ├── CarrierFreqListEUTRA.c │ │ ├── CarrierFreqListEUTRA.h │ │ ├── CarrierInfoNR.c │ │ ├── CarrierInfoNR.h │ │ ├── CellAccessRelatedInfo-EUTRA-5GC.c │ │ ├── CellAccessRelatedInfo-EUTRA-5GC.h │ │ ├── CellAccessRelatedInfo-EUTRA-EPC.c │ │ ├── CellAccessRelatedInfo-EUTRA-EPC.h │ │ ├── CellAccessRelatedInfo.c │ │ ├── CellAccessRelatedInfo.h │ │ ├── CellGroupConfig.c │ │ ├── CellGroupConfig.h │ │ ├── CellGroupId.c │ │ ├── CellGroupId.h │ │ ├── CellIdentity-EUTRA-5GC.c │ │ ├── CellIdentity-EUTRA-5GC.h │ │ ├── CellIdentity.c │ │ ├── CellIdentity.h │ │ ├── CellReselectionPriorities.c │ │ ├── CellReselectionPriorities.h │ │ ├── CellReselectionPriority.c │ │ ├── CellReselectionPriority.h │ │ ├── CellReselectionSubPriority.c │ │ ├── CellReselectionSubPriority.h │ │ ├── CellsToAddMod.c │ │ ├── CellsToAddMod.h │ │ ├── CellsToAddModList.c │ │ ├── CellsToAddModList.h │ │ ├── CellsTriggeredList.c │ │ ├── CellsTriggeredList.h │ │ ├── CipheringAlgorithm.c │ │ ├── CipheringAlgorithm.h │ │ ├── CodebookConfig.c │ │ ├── CodebookConfig.h │ │ ├── CodebookParameters.c │ │ ├── CodebookParameters.h │ │ ├── ConfigRestrictInfoSCG.c │ │ ├── ConfigRestrictInfoSCG.h │ │ ├── ConfigRestrictModReqSCG.c │ │ ├── ConfigRestrictModReqSCG.h │ │ ├── ConfiguredGrantConfig.c │ │ ├── ConfiguredGrantConfig.h │ │ ├── ConnEstFailureControl.c │ │ ├── ConnEstFailureControl.h │ │ ├── ControlResourceSet.c │ │ ├── ControlResourceSet.h │ │ ├── ControlResourceSetId.c │ │ ├── ControlResourceSetId.h │ │ ├── ControlResourceSetZero.c │ │ ├── ControlResourceSetZero.h │ │ ├── CounterCheck-IEs.c │ │ ├── CounterCheck-IEs.h │ │ ├── CounterCheck.c │ │ ├── CounterCheck.h │ │ ├── CounterCheckResponse-IEs.c │ │ ├── CounterCheckResponse-IEs.h │ │ ├── CounterCheckResponse.c │ │ ├── CounterCheckResponse.h │ │ ├── CrossCarrierSchedulingConfig.c │ │ ├── CrossCarrierSchedulingConfig.h │ │ ├── DL-AM-RLC.c │ │ ├── DL-AM-RLC.h │ │ ├── DL-CCCH-Message.c │ │ ├── DL-CCCH-Message.h │ │ ├── DL-CCCH-MessageType.c │ │ ├── DL-CCCH-MessageType.h │ │ ├── DL-DCCH-Message.c │ │ ├── DL-DCCH-Message.h │ │ ├── DL-DCCH-MessageType.c │ │ ├── DL-DCCH-MessageType.h │ │ ├── DL-UM-RLC.c │ │ ├── DL-UM-RLC.h │ │ ├── DLInformationTransfer-IEs.c │ │ ├── DLInformationTransfer-IEs.h │ │ ├── DLInformationTransfer.c │ │ ├── DLInformationTransfer.h │ │ ├── DMRS-DownlinkConfig.c │ │ ├── DMRS-DownlinkConfig.h │ │ ├── DMRS-UplinkConfig.c │ │ ├── DMRS-UplinkConfig.h │ │ ├── DRB-CountInfo.c │ │ ├── DRB-CountInfo.h │ │ ├── DRB-CountInfoList.c │ │ ├── DRB-CountInfoList.h │ │ ├── DRB-CountMSB-Info.c │ │ ├── DRB-CountMSB-Info.h │ │ ├── DRB-CountMSB-InfoList.c │ │ ├── DRB-CountMSB-InfoList.h │ │ ├── DRB-Identity.c │ │ ├── DRB-Identity.h │ │ ├── DRB-ToAddMod.c │ │ ├── DRB-ToAddMod.h │ │ ├── DRB-ToAddModList.c │ │ ├── DRB-ToAddModList.h │ │ ├── DRB-ToReleaseList.c │ │ ├── DRB-ToReleaseList.h │ │ ├── DRX-Config.c │ │ ├── DRX-Config.h │ │ ├── DRX-Info.c │ │ ├── DRX-Info.h │ │ ├── DataInactivityTimer.c │ │ ├── DataInactivityTimer.h │ │ ├── DedicatedNAS-Message.c │ │ ├── DedicatedNAS-Message.h │ │ ├── DelayBudgetReport.c │ │ ├── DelayBudgetReport.h │ │ ├── DownlinkConfigCommon.c │ │ ├── DownlinkConfigCommon.h │ │ ├── DownlinkConfigCommonSIB.c │ │ ├── DownlinkConfigCommonSIB.h │ │ ├── DownlinkPreemption.c │ │ ├── DownlinkPreemption.h │ │ ├── DummyA.c │ │ ├── DummyA.h │ │ ├── DummyB.c │ │ ├── DummyB.h │ │ ├── DummyC.c │ │ ├── DummyC.h │ │ ├── DummyD.c │ │ ├── DummyD.h │ │ ├── DummyE.c │ │ ├── DummyE.h │ │ ├── DummyF.c │ │ ├── DummyF.h │ │ ├── DummyG.c │ │ ├── DummyG.h │ │ ├── DummyH.c │ │ ├── DummyH.h │ │ ├── DummyI.c │ │ ├── DummyI.h │ │ ├── EUTRA-AllowedMeasBandwidth.c │ │ ├── EUTRA-AllowedMeasBandwidth.h │ │ ├── EUTRA-BlackCell.c │ │ ├── EUTRA-BlackCell.h │ │ ├── EUTRA-Cell.c │ │ ├── EUTRA-Cell.h │ │ ├── EUTRA-CellIndex.c │ │ ├── EUTRA-CellIndex.h │ │ ├── EUTRA-CellIndexList.c │ │ ├── EUTRA-CellIndexList.h │ │ ├── EUTRA-FreqBlackCellList.c │ │ ├── EUTRA-FreqBlackCellList.h │ │ ├── EUTRA-FreqNeighCellInfo.c │ │ ├── EUTRA-FreqNeighCellInfo.h │ │ ├── EUTRA-FreqNeighCellList.c │ │ ├── EUTRA-FreqNeighCellList.h │ │ ├── EUTRA-MBSFN-SubframeConfig.c │ │ ├── EUTRA-MBSFN-SubframeConfig.h │ │ ├── EUTRA-MBSFN-SubframeConfigList.c │ │ ├── EUTRA-MBSFN-SubframeConfigList.h │ │ ├── EUTRA-MultiBandInfo.c │ │ ├── EUTRA-MultiBandInfo.h │ │ ├── EUTRA-MultiBandInfoList.c │ │ ├── EUTRA-MultiBandInfoList.h │ │ ├── EUTRA-NS-PmaxList.c │ │ ├── EUTRA-NS-PmaxList.h │ │ ├── EUTRA-NS-PmaxValue.c │ │ ├── EUTRA-NS-PmaxValue.h │ │ ├── EUTRA-Parameters.c │ │ ├── EUTRA-Parameters.h │ │ ├── EUTRA-ParametersCommon.c │ │ ├── EUTRA-ParametersCommon.h │ │ ├── EUTRA-ParametersXDD-Diff.c │ │ ├── EUTRA-ParametersXDD-Diff.h │ │ ├── EUTRA-PhysCellId.c │ │ ├── EUTRA-PhysCellId.h │ │ ├── EUTRA-PhysCellIdRange.c │ │ ├── EUTRA-PhysCellIdRange.h │ │ ├── EUTRA-PresenceAntennaPort1.c │ │ ├── EUTRA-PresenceAntennaPort1.h │ │ ├── EUTRA-Q-OffsetRange.c │ │ ├── EUTRA-Q-OffsetRange.h │ │ ├── EUTRA-RSTD-Info.c │ │ ├── EUTRA-RSTD-Info.h │ │ ├── EUTRA-RSTD-InfoList.c │ │ ├── EUTRA-RSTD-InfoList.h │ │ ├── EstablishmentCause.c │ │ ├── EstablishmentCause.h │ │ ├── EventTriggerConfig.c │ │ ├── EventTriggerConfig.h │ │ ├── EventTriggerConfigInterRAT.c │ │ ├── EventTriggerConfigInterRAT.h │ │ ├── FR-Info.c │ │ ├── FR-Info.h │ │ ├── FR-InfoList.c │ │ ├── FR-InfoList.h │ │ ├── FailureInfoRLC-Bearer.c │ │ ├── FailureInfoRLC-Bearer.h │ │ ├── FailureInformation-IEs.c │ │ ├── FailureInformation-IEs.h │ │ ├── FailureInformation.c │ │ ├── FailureInformation.h │ │ ├── FailureReportSCG-EUTRA.c │ │ ├── FailureReportSCG-EUTRA.h │ │ ├── FailureReportSCG.c │ │ ├── FailureReportSCG.h │ │ ├── FeatureSet.c │ │ ├── FeatureSet.h │ │ ├── FeatureSetCombination.c │ │ ├── FeatureSetCombination.h │ │ ├── FeatureSetCombinationId.c │ │ ├── FeatureSetCombinationId.h │ │ ├── FeatureSetDownlink-v1540.c │ │ ├── FeatureSetDownlink-v1540.h │ │ ├── FeatureSetDownlink.c │ │ ├── FeatureSetDownlink.h │ │ ├── FeatureSetDownlinkId.c │ │ ├── FeatureSetDownlinkId.h │ │ ├── FeatureSetDownlinkPerCC-Id.c │ │ ├── FeatureSetDownlinkPerCC-Id.h │ │ ├── FeatureSetDownlinkPerCC.c │ │ ├── FeatureSetDownlinkPerCC.h │ │ ├── FeatureSetEUTRA-DownlinkId.c │ │ ├── FeatureSetEUTRA-DownlinkId.h │ │ ├── FeatureSetEUTRA-UplinkId.c │ │ ├── FeatureSetEUTRA-UplinkId.h │ │ ├── FeatureSetEntryIndex.c │ │ ├── FeatureSetEntryIndex.h │ │ ├── FeatureSetUplink-v1540.c │ │ ├── FeatureSetUplink-v1540.h │ │ ├── FeatureSetUplink.c │ │ ├── FeatureSetUplink.h │ │ ├── FeatureSetUplinkId.c │ │ ├── FeatureSetUplinkId.h │ │ ├── FeatureSetUplinkPerCC-Id.c │ │ ├── FeatureSetUplinkPerCC-Id.h │ │ ├── FeatureSetUplinkPerCC-v1540.c │ │ ├── FeatureSetUplinkPerCC-v1540.h │ │ ├── FeatureSetUplinkPerCC.c │ │ ├── FeatureSetUplinkPerCC.h │ │ ├── FeatureSets.c │ │ ├── FeatureSets.h │ │ ├── FeatureSetsPerBand.c │ │ ├── FeatureSetsPerBand.h │ │ ├── FilterCoefficient.c │ │ ├── FilterCoefficient.h │ │ ├── FilterConfig.c │ │ ├── FilterConfig.h │ │ ├── FreqBandIndicatorEUTRA.c │ │ ├── FreqBandIndicatorEUTRA.h │ │ ├── FreqBandIndicatorNR.c │ │ ├── FreqBandIndicatorNR.h │ │ ├── FreqBandInformation.c │ │ ├── FreqBandInformation.h │ │ ├── FreqBandInformationEUTRA.c │ │ ├── FreqBandInformationEUTRA.h │ │ ├── FreqBandInformationNR.c │ │ ├── FreqBandInformationNR.h │ │ ├── FreqBandList.c │ │ ├── FreqBandList.h │ │ ├── FreqPriorityEUTRA.c │ │ ├── FreqPriorityEUTRA.h │ │ ├── FreqPriorityListEUTRA.c │ │ ├── FreqPriorityListEUTRA.h │ │ ├── FreqPriorityListNR.c │ │ ├── FreqPriorityListNR.h │ │ ├── FreqPriorityNR.c │ │ ├── FreqPriorityNR.h │ │ ├── FreqSeparationClass.c │ │ ├── FreqSeparationClass.h │ │ ├── FrequencyInfoDL-SIB.c │ │ ├── FrequencyInfoDL-SIB.h │ │ ├── FrequencyInfoDL.c │ │ ├── FrequencyInfoDL.h │ │ ├── FrequencyInfoUL-SIB.c │ │ ├── FrequencyInfoUL-SIB.h │ │ ├── FrequencyInfoUL.c │ │ ├── FrequencyInfoUL.h │ │ ├── GapConfig.c │ │ ├── GapConfig.h │ │ ├── GeneralParametersMRDC-XDD-Diff.c │ │ ├── GeneralParametersMRDC-XDD-Diff.h │ │ ├── HandoverCommand-IEs.c │ │ ├── HandoverCommand-IEs.h │ │ ├── HandoverCommand.c │ │ ├── HandoverCommand.h │ │ ├── HandoverPreparationInformation-IEs.c │ │ ├── HandoverPreparationInformation-IEs.h │ │ ├── HandoverPreparationInformation.c │ │ ├── HandoverPreparationInformation.h │ │ ├── Hysteresis.c │ │ ├── Hysteresis.h │ │ ├── I-RNTI-Value.c │ │ ├── I-RNTI-Value.h │ │ ├── IMS-Parameters.c │ │ ├── IMS-Parameters.h │ │ ├── IMS-ParametersCommon.c │ │ ├── IMS-ParametersCommon.h │ │ ├── IMS-ParametersFRX-Diff.c │ │ ├── IMS-ParametersFRX-Diff.h │ │ ├── INT-ConfigurationPerServingCell.c │ │ ├── INT-ConfigurationPerServingCell.h │ │ ├── INTEGER.c │ │ ├── INTEGER.h │ │ ├── INTEGER_oer.c │ │ ├── InitialUE-Identity.c │ │ ├── InitialUE-Identity.h │ │ ├── IntegrityProtAlgorithm.c │ │ ├── IntegrityProtAlgorithm.h │ │ ├── InterFreqBlackCellList.c │ │ ├── InterFreqBlackCellList.h │ │ ├── InterFreqCarrierFreqInfo.c │ │ ├── InterFreqCarrierFreqInfo.h │ │ ├── InterFreqCarrierFreqList.c │ │ ├── InterFreqCarrierFreqList.h │ │ ├── InterFreqNeighCellInfo.c │ │ ├── InterFreqNeighCellInfo.h │ │ ├── InterFreqNeighCellList.c │ │ ├── InterFreqNeighCellList.h │ │ ├── InterRAT-Parameters.c │ │ ├── InterRAT-Parameters.h │ │ ├── IntraFreqBlackCellList.c │ │ ├── IntraFreqBlackCellList.h │ │ ├── IntraFreqNeighCellInfo.c │ │ ├── IntraFreqNeighCellInfo.h │ │ ├── IntraFreqNeighCellList.c │ │ ├── IntraFreqNeighCellList.h │ │ ├── LocationMeasurementIndication-IEs.c │ │ ├── LocationMeasurementIndication-IEs.h │ │ ├── LocationMeasurementIndication.c │ │ ├── LocationMeasurementIndication.h │ │ ├── LocationMeasurementInfo.c │ │ ├── LocationMeasurementInfo.h │ │ ├── LogicalChannelConfig.c │ │ ├── LogicalChannelConfig.h │ │ ├── LogicalChannelIdentity.c │ │ ├── LogicalChannelIdentity.h │ │ ├── MAC-CellGroupConfig.c │ │ ├── MAC-CellGroupConfig.h │ │ ├── MAC-Parameters.c │ │ ├── MAC-Parameters.h │ │ ├── MAC-ParametersCommon.c │ │ ├── MAC-ParametersCommon.h │ │ ├── MAC-ParametersXDD-Diff.c │ │ ├── MAC-ParametersXDD-Diff.h │ │ ├── MCC-MNC-Digit.c │ │ ├── MCC-MNC-Digit.h │ │ ├── MCC.c │ │ ├── MCC.h │ │ ├── MIB.c │ │ ├── MIB.h │ │ ├── MIMO-LayersDL.c │ │ ├── MIMO-LayersDL.h │ │ ├── MIMO-LayersUL.c │ │ ├── MIMO-LayersUL.h │ │ ├── MIMO-ParametersPerBand.c │ │ ├── MIMO-ParametersPerBand.h │ │ ├── MNC.c │ │ ├── MNC.h │ │ ├── MRDC-AssistanceInfo.c │ │ ├── MRDC-AssistanceInfo.h │ │ ├── MRDC-Parameters.c │ │ ├── MRDC-Parameters.h │ │ ├── MRDC-SecondaryCellGroupConfig.c │ │ ├── MRDC-SecondaryCellGroupConfig.h │ │ ├── Makefile.am.libasncodec │ │ ├── MasterKeyUpdate.c │ │ ├── MasterKeyUpdate.h │ │ ├── MeasAndMobParameters.c │ │ ├── MeasAndMobParameters.h │ │ ├── MeasAndMobParametersCommon.c │ │ ├── MeasAndMobParametersCommon.h │ │ ├── MeasAndMobParametersFRX-Diff.c │ │ ├── MeasAndMobParametersFRX-Diff.h │ │ ├── MeasAndMobParametersMRDC-Common.c │ │ ├── MeasAndMobParametersMRDC-Common.h │ │ ├── MeasAndMobParametersMRDC-FRX-Diff.c │ │ ├── MeasAndMobParametersMRDC-FRX-Diff.h │ │ ├── MeasAndMobParametersMRDC-XDD-Diff-v1560.c │ │ ├── MeasAndMobParametersMRDC-XDD-Diff-v1560.h │ │ ├── MeasAndMobParametersMRDC-XDD-Diff.c │ │ ├── MeasAndMobParametersMRDC-XDD-Diff.h │ │ ├── MeasAndMobParametersMRDC-v1560.c │ │ ├── MeasAndMobParametersMRDC-v1560.h │ │ ├── MeasAndMobParametersMRDC.c │ │ ├── MeasAndMobParametersMRDC.h │ │ ├── MeasAndMobParametersXDD-Diff.c │ │ ├── MeasAndMobParametersXDD-Diff.h │ │ ├── MeasConfig.c │ │ ├── MeasConfig.h │ │ ├── MeasConfigMN.c │ │ ├── MeasConfigMN.h │ │ ├── MeasConfigSN.c │ │ ├── MeasConfigSN.h │ │ ├── MeasGapConfig.c │ │ ├── MeasGapConfig.h │ │ ├── MeasGapSharingConfig.c │ │ ├── MeasGapSharingConfig.h │ │ ├── MeasGapSharingScheme.c │ │ ├── MeasGapSharingScheme.h │ │ ├── MeasId.c │ │ ├── MeasId.h │ │ ├── MeasIdToAddMod.c │ │ ├── MeasIdToAddMod.h │ │ ├── MeasIdToAddModList.c │ │ ├── MeasIdToAddModList.h │ │ ├── MeasIdToRemoveList.c │ │ ├── MeasIdToRemoveList.h │ │ ├── MeasObjectEUTRA.c │ │ ├── MeasObjectEUTRA.h │ │ ├── MeasObjectId.c │ │ ├── MeasObjectId.h │ │ ├── MeasObjectNR.c │ │ ├── MeasObjectNR.h │ │ ├── MeasObjectToAddMod.c │ │ ├── MeasObjectToAddMod.h │ │ ├── MeasObjectToAddModList.c │ │ ├── MeasObjectToAddModList.h │ │ ├── MeasObjectToRemoveList.c │ │ ├── MeasObjectToRemoveList.h │ │ ├── MeasQuantityResults.c │ │ ├── MeasQuantityResults.h │ │ ├── MeasQuantityResultsEUTRA.c │ │ ├── MeasQuantityResultsEUTRA.h │ │ ├── MeasReportQuantity.c │ │ ├── MeasReportQuantity.h │ │ ├── MeasResult2EUTRA.c │ │ ├── MeasResult2EUTRA.h │ │ ├── MeasResult2NR.c │ │ ├── MeasResult2NR.h │ │ ├── MeasResultCellListSFTD-EUTRA.c │ │ ├── MeasResultCellListSFTD-EUTRA.h │ │ ├── MeasResultCellListSFTD-NR.c │ │ ├── MeasResultCellListSFTD-NR.h │ │ ├── MeasResultCellSFTD-NR.c │ │ ├── MeasResultCellSFTD-NR.h │ │ ├── MeasResultEUTRA.c │ │ ├── MeasResultEUTRA.h │ │ ├── MeasResultFreqList.c │ │ ├── MeasResultFreqList.h │ │ ├── MeasResultFreqListFailMRDC.c │ │ ├── MeasResultFreqListFailMRDC.h │ │ ├── MeasResultList2NR.c │ │ ├── MeasResultList2NR.h │ │ ├── MeasResultListEUTRA.c │ │ ├── MeasResultListEUTRA.h │ │ ├── MeasResultListNR.c │ │ ├── MeasResultListNR.h │ │ ├── MeasResultNR.c │ │ ├── MeasResultNR.h │ │ ├── MeasResultSCG-Failure.c │ │ ├── MeasResultSCG-Failure.h │ │ ├── MeasResultSFTD-EUTRA.c │ │ ├── MeasResultSFTD-EUTRA.h │ │ ├── MeasResultServFreqListEUTRA-SCG.c │ │ ├── MeasResultServFreqListEUTRA-SCG.h │ │ ├── MeasResultServFreqListNR-SCG.c │ │ ├── MeasResultServFreqListNR-SCG.h │ │ ├── MeasResultServMO.c │ │ ├── MeasResultServMO.h │ │ ├── MeasResultServMOList.c │ │ ├── MeasResultServMOList.h │ │ ├── MeasResults.c │ │ ├── MeasResults.h │ │ ├── MeasTiming.c │ │ ├── MeasTiming.h │ │ ├── MeasTimingList.c │ │ ├── MeasTimingList.h │ │ ├── MeasTriggerQuantity.c │ │ ├── MeasTriggerQuantity.h │ │ ├── MeasTriggerQuantityEUTRA.c │ │ ├── MeasTriggerQuantityEUTRA.h │ │ ├── MeasTriggerQuantityOffset.c │ │ ├── MeasTriggerQuantityOffset.h │ │ ├── MeasurementReport-IEs.c │ │ ├── MeasurementReport-IEs.h │ │ ├── MeasurementReport.c │ │ ├── MeasurementReport.h │ │ ├── MeasurementTimingConfiguration-IEs.c │ │ ├── MeasurementTimingConfiguration-IEs.h │ │ ├── MeasurementTimingConfiguration-v1550-IEs.c │ │ ├── MeasurementTimingConfiguration-v1550-IEs.h │ │ ├── MeasurementTimingConfiguration.c │ │ ├── MeasurementTimingConfiguration.h │ │ ├── MobilityFromNRCommand-IEs.c │ │ ├── MobilityFromNRCommand-IEs.h │ │ ├── MobilityFromNRCommand.c │ │ ├── MobilityFromNRCommand.h │ │ ├── MobilityStateParameters.c │ │ ├── MobilityStateParameters.h │ │ ├── ModulationOrder.c │ │ ├── ModulationOrder.h │ │ ├── MultiBandInfoListEUTRA.c │ │ ├── MultiBandInfoListEUTRA.h │ │ ├── MultiFrequencyBandListNR-SIB.c │ │ ├── MultiFrequencyBandListNR-SIB.h │ │ ├── MultiFrequencyBandListNR.c │ │ ├── MultiFrequencyBandListNR.h │ │ ├── NAICS-Capability-Entry.c │ │ ├── NAICS-Capability-Entry.h │ │ ├── NG-5G-S-TMSI.c │ │ ├── NG-5G-S-TMSI.h │ │ ├── NR-FreqInfo.c │ │ ├── NR-FreqInfo.h │ │ ├── NR-MultiBandInfo.c │ │ ├── NR-MultiBandInfo.h │ │ ├── NR-NS-PmaxList.c │ │ ├── NR-NS-PmaxList.h │ │ ├── NR-NS-PmaxValue.c │ │ ├── NR-NS-PmaxValue.h │ │ ├── NR-RS-Type.c │ │ ├── NR-RS-Type.h │ │ ├── NRDC-Parameters.c │ │ ├── NRDC-Parameters.h │ │ ├── NULL.c │ │ ├── NULL.h │ │ ├── NZP-CSI-RS-Resource.c │ │ ├── NZP-CSI-RS-Resource.h │ │ ├── NZP-CSI-RS-ResourceId.c │ │ ├── NZP-CSI-RS-ResourceId.h │ │ ├── NZP-CSI-RS-ResourceSet.c │ │ ├── NZP-CSI-RS-ResourceSet.h │ │ ├── NZP-CSI-RS-ResourceSetId.c │ │ ├── NZP-CSI-RS-ResourceSetId.h │ │ ├── NativeEnumerated.c │ │ ├── NativeEnumerated.h │ │ ├── NativeEnumerated_oer.c │ │ ├── NativeInteger.c │ │ ├── NativeInteger.h │ │ ├── NativeInteger_oer.c │ │ ├── NextHopChainingCount.c │ │ ├── NextHopChainingCount.h │ │ ├── NumberOfCarriers.c │ │ ├── NumberOfCarriers.h │ │ ├── OCTET_STRING.c │ │ ├── OCTET_STRING.h │ │ ├── OCTET_STRING_oer.c │ │ ├── OPEN_TYPE.c │ │ ├── OPEN_TYPE.h │ │ ├── OPEN_TYPE_oer.c │ │ ├── OtherConfig-v1540.c │ │ ├── OtherConfig-v1540.h │ │ ├── OtherConfig.c │ │ ├── OtherConfig.h │ │ ├── OverheatingAssistance.c │ │ ├── OverheatingAssistance.h │ │ ├── OverheatingAssistanceConfig.c │ │ ├── OverheatingAssistanceConfig.h │ │ ├── P-Max.c │ │ ├── P-Max.h │ │ ├── P0-PUCCH-Id.c │ │ ├── P0-PUCCH-Id.h │ │ ├── P0-PUCCH.c │ │ ├── P0-PUCCH.h │ │ ├── P0-PUSCH-AlphaSet.c │ │ ├── P0-PUSCH-AlphaSet.h │ │ ├── P0-PUSCH-AlphaSetId.c │ │ ├── P0-PUSCH-AlphaSetId.h │ │ ├── PCCH-Config.c │ │ ├── PCCH-Config.h │ │ ├── PCCH-Message.c │ │ ├── PCCH-Message.h │ │ ├── PCCH-MessageType.c │ │ ├── PCCH-MessageType.h │ │ ├── PCI-List.c │ │ ├── PCI-List.h │ │ ├── PCI-Range.c │ │ ├── PCI-Range.h │ │ ├── PCI-RangeElement.c │ │ ├── PCI-RangeElement.h │ │ ├── PCI-RangeIndex.c │ │ ├── PCI-RangeIndex.h │ │ ├── PCI-RangeIndexList.c │ │ ├── PCI-RangeIndexList.h │ │ ├── PDCCH-BlindDetection.c │ │ ├── PDCCH-BlindDetection.h │ │ ├── PDCCH-Config.c │ │ ├── PDCCH-Config.h │ │ ├── PDCCH-ConfigCommon.c │ │ ├── PDCCH-ConfigCommon.h │ │ ├── PDCCH-ConfigSIB1.c │ │ ├── PDCCH-ConfigSIB1.h │ │ ├── PDCCH-ServingCellConfig.c │ │ ├── PDCCH-ServingCellConfig.h │ │ ├── PDCP-Config.c │ │ ├── PDCP-Config.h │ │ ├── PDCP-Parameters.c │ │ ├── PDCP-Parameters.h │ │ ├── PDCP-ParametersMRDC.c │ │ ├── PDCP-ParametersMRDC.h │ │ ├── PDSCH-CodeBlockGroupTransmission.c │ │ ├── PDSCH-CodeBlockGroupTransmission.h │ │ ├── PDSCH-Config.c │ │ ├── PDSCH-Config.h │ │ ├── PDSCH-ConfigCommon.c │ │ ├── PDSCH-ConfigCommon.h │ │ ├── PDSCH-ServingCellConfig.c │ │ ├── PDSCH-ServingCellConfig.h │ │ ├── PDSCH-TimeDomainResourceAllocation.c │ │ ├── PDSCH-TimeDomainResourceAllocation.h │ │ ├── PDSCH-TimeDomainResourceAllocationList.c │ │ ├── PDSCH-TimeDomainResourceAllocationList.h │ │ ├── PDU-SessionID.c │ │ ├── PDU-SessionID.h │ │ ├── PH-InfoMCG.c │ │ ├── PH-InfoMCG.h │ │ ├── PH-InfoSCG.c │ │ ├── PH-InfoSCG.h │ │ ├── PH-TypeListMCG.c │ │ ├── PH-TypeListMCG.h │ │ ├── PH-TypeListSCG.c │ │ ├── PH-TypeListSCG.h │ │ ├── PH-UplinkCarrierMCG.c │ │ ├── PH-UplinkCarrierMCG.h │ │ ├── PH-UplinkCarrierSCG.c │ │ ├── PH-UplinkCarrierSCG.h │ │ ├── PHR-Config.c │ │ ├── PHR-Config.h │ │ ├── PLMN-Identity-EUTRA-5GC.c │ │ ├── PLMN-Identity-EUTRA-5GC.h │ │ ├── PLMN-Identity.c │ │ ├── PLMN-Identity.h │ │ ├── PLMN-IdentityInfo.c │ │ ├── PLMN-IdentityInfo.h │ │ ├── PLMN-IdentityInfoList.c │ │ ├── PLMN-IdentityInfoList.h │ │ ├── PLMN-IdentityList-EUTRA-5GC.c │ │ ├── PLMN-IdentityList-EUTRA-5GC.h │ │ ├── PLMN-IdentityList-EUTRA-EPC.c │ │ ├── PLMN-IdentityList-EUTRA-EPC.h │ │ ├── PLMN-RAN-AreaCell.c │ │ ├── PLMN-RAN-AreaCell.h │ │ ├── PLMN-RAN-AreaCellList.c │ │ ├── PLMN-RAN-AreaCellList.h │ │ ├── PLMN-RAN-AreaConfig.c │ │ ├── PLMN-RAN-AreaConfig.h │ │ ├── PLMN-RAN-AreaConfigList.c │ │ ├── PLMN-RAN-AreaConfigList.h │ │ ├── PRACH-ResourceDedicatedBFR.c │ │ ├── PRACH-ResourceDedicatedBFR.h │ │ ├── PRB-Id.c │ │ ├── PRB-Id.h │ │ ├── PTRS-DensityRecommendationDL.c │ │ ├── PTRS-DensityRecommendationDL.h │ │ ├── PTRS-DensityRecommendationUL.c │ │ ├── PTRS-DensityRecommendationUL.h │ │ ├── PTRS-DownlinkConfig.c │ │ ├── PTRS-DownlinkConfig.h │ │ ├── PTRS-UplinkConfig.c │ │ ├── PTRS-UplinkConfig.h │ │ ├── PUCCH-CSI-Resource.c │ │ ├── PUCCH-CSI-Resource.h │ │ ├── PUCCH-Config.c │ │ ├── PUCCH-Config.h │ │ ├── PUCCH-ConfigCommon.c │ │ ├── PUCCH-ConfigCommon.h │ │ ├── PUCCH-FormatConfig.c │ │ ├── PUCCH-FormatConfig.h │ │ ├── PUCCH-MaxCodeRate.c │ │ ├── PUCCH-MaxCodeRate.h │ │ ├── PUCCH-PathlossReferenceRS-Id.c │ │ ├── PUCCH-PathlossReferenceRS-Id.h │ │ ├── PUCCH-PathlossReferenceRS.c │ │ ├── PUCCH-PathlossReferenceRS.h │ │ ├── PUCCH-PowerControl.c │ │ ├── PUCCH-PowerControl.h │ │ ├── PUCCH-Resource.c │ │ ├── PUCCH-Resource.h │ │ ├── PUCCH-ResourceId.c │ │ ├── PUCCH-ResourceId.h │ │ ├── PUCCH-ResourceSet.c │ │ ├── PUCCH-ResourceSet.h │ │ ├── PUCCH-ResourceSetId.c │ │ ├── PUCCH-ResourceSetId.h │ │ ├── PUCCH-SpatialRelationInfo.c │ │ ├── PUCCH-SpatialRelationInfo.h │ │ ├── PUCCH-SpatialRelationInfoId.c │ │ ├── PUCCH-SpatialRelationInfoId.h │ │ ├── PUCCH-TPC-CommandConfig.c │ │ ├── PUCCH-TPC-CommandConfig.h │ │ ├── PUCCH-format0.c │ │ ├── PUCCH-format0.h │ │ ├── PUCCH-format1.c │ │ ├── PUCCH-format1.h │ │ ├── PUCCH-format2.c │ │ ├── PUCCH-format2.h │ │ ├── PUCCH-format3.c │ │ ├── PUCCH-format3.h │ │ ├── PUCCH-format4.c │ │ ├── PUCCH-format4.h │ │ ├── PUSCH-CodeBlockGroupTransmission.c │ │ ├── PUSCH-CodeBlockGroupTransmission.h │ │ ├── PUSCH-Config.c │ │ ├── PUSCH-Config.h │ │ ├── PUSCH-ConfigCommon.c │ │ ├── PUSCH-ConfigCommon.h │ │ ├── PUSCH-PathlossReferenceRS-Id.c │ │ ├── PUSCH-PathlossReferenceRS-Id.h │ │ ├── PUSCH-PathlossReferenceRS.c │ │ ├── PUSCH-PathlossReferenceRS.h │ │ ├── PUSCH-PowerControl.c │ │ ├── PUSCH-PowerControl.h │ │ ├── PUSCH-ServingCellConfig.c │ │ ├── PUSCH-ServingCellConfig.h │ │ ├── PUSCH-TPC-CommandConfig.c │ │ ├── PUSCH-TPC-CommandConfig.h │ │ ├── PUSCH-TimeDomainResourceAllocation.c │ │ ├── PUSCH-TimeDomainResourceAllocation.h │ │ ├── PUSCH-TimeDomainResourceAllocationList.c │ │ ├── PUSCH-TimeDomainResourceAllocationList.h │ │ ├── Paging.c │ │ ├── Paging.h │ │ ├── PagingCycle.c │ │ ├── PagingCycle.h │ │ ├── PagingRecord.c │ │ ├── PagingRecord.h │ │ ├── PagingRecordList.c │ │ ├── PagingRecordList.h │ │ ├── PagingUE-Identity.c │ │ ├── PagingUE-Identity.h │ │ ├── PeriodicRNAU-TimerValue.c │ │ ├── PeriodicRNAU-TimerValue.h │ │ ├── PeriodicalReportConfig.c │ │ ├── PeriodicalReportConfig.h │ │ ├── PeriodicalReportConfigInterRAT.c │ │ ├── PeriodicalReportConfigInterRAT.h │ │ ├── Phy-Parameters.c │ │ ├── Phy-Parameters.h │ │ ├── Phy-ParametersCommon.c │ │ ├── Phy-ParametersCommon.h │ │ ├── Phy-ParametersFR1.c │ │ ├── Phy-ParametersFR1.h │ │ ├── Phy-ParametersFR2.c │ │ ├── Phy-ParametersFR2.h │ │ ├── Phy-ParametersFRX-Diff.c │ │ ├── Phy-ParametersFRX-Diff.h │ │ ├── Phy-ParametersMRDC.c │ │ ├── Phy-ParametersMRDC.h │ │ ├── Phy-ParametersXDD-Diff.c │ │ ├── Phy-ParametersXDD-Diff.h │ │ ├── PhysCellId.c │ │ ├── PhysCellId.h │ │ ├── PhysicalCellGroupConfig.c │ │ ├── PhysicalCellGroupConfig.h │ │ ├── PollByte.c │ │ ├── PollByte.h │ │ ├── PollPDU.c │ │ ├── PollPDU.h │ │ ├── PortIndex2.c │ │ ├── PortIndex2.h │ │ ├── PortIndex4.c │ │ ├── PortIndex4.h │ │ ├── PortIndex8.c │ │ ├── PortIndex8.h │ │ ├── PortIndexFor8Ranks.c │ │ ├── PortIndexFor8Ranks.h │ │ ├── ProcessingParameters.c │ │ ├── ProcessingParameters.h │ │ ├── Q-OffsetRange.c │ │ ├── Q-OffsetRange.h │ │ ├── Q-OffsetRangeList.c │ │ ├── Q-OffsetRangeList.h │ │ ├── Q-QualMin.c │ │ ├── Q-QualMin.h │ │ ├── Q-RxLevMin.c │ │ ├── Q-RxLevMin.h │ │ ├── QCL-Info.c │ │ ├── QCL-Info.h │ │ ├── QFI.c │ │ ├── QFI.h │ │ ├── QuantityConfig.c │ │ ├── QuantityConfig.h │ │ ├── QuantityConfigNR.c │ │ ├── QuantityConfigNR.h │ │ ├── QuantityConfigRS.c │ │ ├── QuantityConfigRS.h │ │ ├── RA-Prioritization.c │ │ ├── RA-Prioritization.h │ │ ├── RACH-ConfigCommon.c │ │ ├── RACH-ConfigCommon.h │ │ ├── RACH-ConfigDedicated.c │ │ ├── RACH-ConfigDedicated.h │ │ ├── RACH-ConfigGeneric.c │ │ ├── RACH-ConfigGeneric.h │ │ ├── RAN-AreaCode.c │ │ ├── RAN-AreaCode.h │ │ ├── RAN-AreaConfig.c │ │ ├── RAN-AreaConfig.h │ │ ├── RAN-NotificationAreaInfo.c │ │ ├── RAN-NotificationAreaInfo.h │ │ ├── RAT-Type.c │ │ ├── RAT-Type.h │ │ ├── RF-Parameters.c │ │ ├── RF-Parameters.h │ │ ├── RF-ParametersMRDC.c │ │ ├── RF-ParametersMRDC.h │ │ ├── RLC-BearerConfig.c │ │ ├── RLC-BearerConfig.h │ │ ├── RLC-Config.c │ │ ├── RLC-Config.h │ │ ├── RLC-Parameters.c │ │ ├── RLC-Parameters.h │ │ ├── RLF-TimersAndConstants.c │ │ ├── RLF-TimersAndConstants.h │ │ ├── RNTI-Value.c │ │ ├── RNTI-Value.h │ │ ├── RRC-TransactionIdentifier.c │ │ ├── RRC-TransactionIdentifier.h │ │ ├── RRCReconfiguration-IEs.c │ │ ├── RRCReconfiguration-IEs.h │ │ ├── RRCReconfiguration-v1530-IEs.c │ │ ├── RRCReconfiguration-v1530-IEs.h │ │ ├── RRCReconfiguration-v1540-IEs.c │ │ ├── RRCReconfiguration-v1540-IEs.h │ │ ├── RRCReconfiguration-v1560-IEs.c │ │ ├── RRCReconfiguration-v1560-IEs.h │ │ ├── RRCReconfiguration.c │ │ ├── RRCReconfiguration.h │ │ ├── RRCReconfigurationComplete-IEs.c │ │ ├── RRCReconfigurationComplete-IEs.h │ │ ├── RRCReconfigurationComplete-v1530-IEs.c │ │ ├── RRCReconfigurationComplete-v1530-IEs.h │ │ ├── RRCReconfigurationComplete-v1560-IEs.c │ │ ├── RRCReconfigurationComplete-v1560-IEs.h │ │ ├── RRCReconfigurationComplete.c │ │ ├── RRCReconfigurationComplete.h │ │ ├── RRCReestablishment-IEs.c │ │ ├── RRCReestablishment-IEs.h │ │ ├── RRCReestablishment.c │ │ ├── RRCReestablishment.h │ │ ├── RRCReestablishmentComplete-IEs.c │ │ ├── RRCReestablishmentComplete-IEs.h │ │ ├── RRCReestablishmentComplete.c │ │ ├── RRCReestablishmentComplete.h │ │ ├── RRCReestablishmentRequest-IEs.c │ │ ├── RRCReestablishmentRequest-IEs.h │ │ ├── RRCReestablishmentRequest.c │ │ ├── RRCReestablishmentRequest.h │ │ ├── RRCReject-IEs.c │ │ ├── RRCReject-IEs.h │ │ ├── RRCReject.c │ │ ├── RRCReject.h │ │ ├── RRCRelease-IEs.c │ │ ├── RRCRelease-IEs.h │ │ ├── RRCRelease-v1540-IEs.c │ │ ├── RRCRelease-v1540-IEs.h │ │ ├── RRCRelease.c │ │ ├── RRCRelease.h │ │ ├── RRCResume-IEs.c │ │ ├── RRCResume-IEs.h │ │ ├── RRCResume-v1560-IEs.c │ │ ├── RRCResume-v1560-IEs.h │ │ ├── RRCResume.c │ │ ├── RRCResume.h │ │ ├── RRCResumeComplete-IEs.c │ │ ├── RRCResumeComplete-IEs.h │ │ ├── RRCResumeComplete.c │ │ ├── RRCResumeComplete.h │ │ ├── RRCResumeRequest-IEs.c │ │ ├── RRCResumeRequest-IEs.h │ │ ├── RRCResumeRequest.c │ │ ├── RRCResumeRequest.h │ │ ├── RRCResumeRequest1-IEs.c │ │ ├── RRCResumeRequest1-IEs.h │ │ ├── RRCResumeRequest1.c │ │ ├── RRCResumeRequest1.h │ │ ├── RRCSetup-IEs.c │ │ ├── RRCSetup-IEs.h │ │ ├── RRCSetup.c │ │ ├── RRCSetup.h │ │ ├── RRCSetupComplete-IEs.c │ │ ├── RRCSetupComplete-IEs.h │ │ ├── RRCSetupComplete.c │ │ ├── RRCSetupComplete.h │ │ ├── RRCSetupRequest-IEs.c │ │ ├── RRCSetupRequest-IEs.h │ │ ├── RRCSetupRequest.c │ │ ├── RRCSetupRequest.h │ │ ├── RRCSystemInfoRequest-r15-IEs.c │ │ ├── RRCSystemInfoRequest-r15-IEs.h │ │ ├── RRCSystemInfoRequest.c │ │ ├── RRCSystemInfoRequest.h │ │ ├── RRM-Config.c │ │ ├── RRM-Config.h │ │ ├── RSRP-Range.c │ │ ├── RSRP-Range.h │ │ ├── RSRP-RangeEUTRA.c │ │ ├── RSRP-RangeEUTRA.h │ │ ├── RSRQ-Range.c │ │ ├── RSRQ-Range.h │ │ ├── RSRQ-RangeEUTRA.c │ │ ├── RSRQ-RangeEUTRA.h │ │ ├── RadioBearerConfig.c │ │ ├── RadioBearerConfig.h │ │ ├── RadioLinkMonitoringConfig.c │ │ ├── RadioLinkMonitoringConfig.h │ │ ├── RadioLinkMonitoringRS-Id.c │ │ ├── RadioLinkMonitoringRS-Id.h │ │ ├── RadioLinkMonitoringRS.c │ │ ├── RadioLinkMonitoringRS.h │ │ ├── RangeToBestCell.c │ │ ├── RangeToBestCell.h │ │ ├── RateMatchPattern.c │ │ ├── RateMatchPattern.h │ │ ├── RateMatchPatternGroup.c │ │ ├── RateMatchPatternGroup.h │ │ ├── RateMatchPatternId.c │ │ ├── RateMatchPatternId.h │ │ ├── RateMatchPatternLTE-CRS.c │ │ ├── RateMatchPatternLTE-CRS.h │ │ ├── ReconfigurationWithSync.c │ │ ├── ReconfigurationWithSync.h │ │ ├── RedirectedCarrierInfo-EUTRA.c │ │ ├── RedirectedCarrierInfo-EUTRA.h │ │ ├── RedirectedCarrierInfo.c │ │ ├── RedirectedCarrierInfo.h │ │ ├── ReducedAggregatedBandwidth.c │ │ ├── ReducedAggregatedBandwidth.h │ │ ├── ReestabNCellInfo.c │ │ ├── ReestabNCellInfo.h │ │ ├── ReestabNCellInfoList.c │ │ ├── ReestabNCellInfoList.h │ │ ├── ReestabUE-Identity.c │ │ ├── ReestabUE-Identity.h │ │ ├── ReestablishmentCause.c │ │ ├── ReestablishmentCause.h │ │ ├── ReestablishmentInfo.c │ │ ├── ReestablishmentInfo.h │ │ ├── ReferenceSignalConfig.c │ │ ├── ReferenceSignalConfig.h │ │ ├── RegisteredAMF.c │ │ ├── RegisteredAMF.h │ │ ├── RejectWaitTime.c │ │ ├── RejectWaitTime.h │ │ ├── ReportCGI-EUTRA.c │ │ ├── ReportCGI-EUTRA.h │ │ ├── ReportCGI.c │ │ ├── ReportCGI.h │ │ ├── ReportConfigId.c │ │ ├── ReportConfigId.h │ │ ├── ReportConfigInterRAT.c │ │ ├── ReportConfigInterRAT.h │ │ ├── ReportConfigNR.c │ │ ├── ReportConfigNR.h │ │ ├── ReportConfigToAddMod.c │ │ ├── ReportConfigToAddMod.h │ │ ├── ReportConfigToAddModList.c │ │ ├── ReportConfigToAddModList.h │ │ ├── ReportConfigToRemoveList.c │ │ ├── ReportConfigToRemoveList.h │ │ ├── ReportInterval.c │ │ ├── ReportInterval.h │ │ ├── ReportSFTD-EUTRA.c │ │ ├── ReportSFTD-EUTRA.h │ │ ├── ReportSFTD-NR.c │ │ ├── ReportSFTD-NR.h │ │ ├── ReselectionThreshold.c │ │ ├── ReselectionThreshold.h │ │ ├── ReselectionThresholdQ.c │ │ ├── ReselectionThresholdQ.h │ │ ├── ResultsPerCSI-RS-Index.c │ │ ├── ResultsPerCSI-RS-Index.h │ │ ├── ResultsPerCSI-RS-IndexList.c │ │ ├── ResultsPerCSI-RS-IndexList.h │ │ ├── ResultsPerSSB-Index.c │ │ ├── ResultsPerSSB-Index.h │ │ ├── ResultsPerSSB-IndexList.c │ │ ├── ResultsPerSSB-IndexList.h │ │ ├── ResumeCause.c │ │ ├── ResumeCause.h │ │ ├── S-NSSAI.c │ │ ├── S-NSSAI.h │ │ ├── SCGFailureInformation-IEs.c │ │ ├── SCGFailureInformation-IEs.h │ │ ├── SCGFailureInformation.c │ │ ├── SCGFailureInformation.h │ │ ├── SCGFailureInformationEUTRA-IEs.c │ │ ├── SCGFailureInformationEUTRA-IEs.h │ │ ├── SCGFailureInformationEUTRA.c │ │ ├── SCGFailureInformationEUTRA.h │ │ ├── SCS-SpecificCarrier.c │ │ ├── SCS-SpecificCarrier.h │ │ ├── SCellConfig.c │ │ ├── SCellConfig.h │ │ ├── SCellIndex.c │ │ ├── SCellIndex.h │ │ ├── SDAP-Config.c │ │ ├── SDAP-Config.h │ │ ├── SDAP-Parameters.c │ │ ├── SDAP-Parameters.h │ │ ├── SI-RequestConfig.c │ │ ├── SI-RequestConfig.h │ │ ├── SI-RequestResources.c │ │ ├── SI-RequestResources.h │ │ ├── SI-SchedulingInfo.c │ │ ├── SI-SchedulingInfo.h │ │ ├── SIB-Mapping.c │ │ ├── SIB-Mapping.h │ │ ├── SIB-TypeInfo.c │ │ ├── SIB-TypeInfo.h │ │ ├── SIB1.c │ │ ├── SIB1.h │ │ ├── SIB2.c │ │ ├── SIB2.h │ │ ├── SIB3.c │ │ ├── SIB3.h │ │ ├── SIB4.c │ │ ├── SIB4.h │ │ ├── SIB5.c │ │ ├── SIB5.h │ │ ├── SIB6.c │ │ ├── SIB6.h │ │ ├── SIB7.c │ │ ├── SIB7.h │ │ ├── SIB8.c │ │ ├── SIB8.h │ │ ├── SIB9.c │ │ ├── SIB9.h │ │ ├── SINR-Range.c │ │ ├── SINR-Range.h │ │ ├── SINR-RangeEUTRA.c │ │ ├── SINR-RangeEUTRA.h │ │ ├── SK-Counter.c │ │ ├── SK-Counter.h │ │ ├── SN-FieldLengthAM.c │ │ ├── SN-FieldLengthAM.h │ │ ├── SN-FieldLengthUM.c │ │ ├── SN-FieldLengthUM.h │ │ ├── SPS-Config.c │ │ ├── SPS-Config.h │ │ ├── SRB-Identity.c │ │ ├── SRB-Identity.h │ │ ├── SRB-ToAddMod.c │ │ ├── SRB-ToAddMod.h │ │ ├── SRB-ToAddModList.c │ │ ├── SRB-ToAddModList.h │ │ ├── SRI-PUSCH-PowerControl.c │ │ ├── SRI-PUSCH-PowerControl.h │ │ ├── SRI-PUSCH-PowerControlId.c │ │ ├── SRI-PUSCH-PowerControlId.h │ │ ├── SRS-CC-SetIndex.c │ │ ├── SRS-CC-SetIndex.h │ │ ├── SRS-CarrierSwitching.c │ │ ├── SRS-CarrierSwitching.h │ │ ├── SRS-Config.c │ │ ├── SRS-Config.h │ │ ├── SRS-PeriodicityAndOffset.c │ │ ├── SRS-PeriodicityAndOffset.h │ │ ├── SRS-Resource.c │ │ ├── SRS-Resource.h │ │ ├── SRS-ResourceId.c │ │ ├── SRS-ResourceId.h │ │ ├── SRS-ResourceSet.c │ │ ├── SRS-ResourceSet.h │ │ ├── SRS-ResourceSetId.c │ │ ├── SRS-ResourceSetId.h │ │ ├── SRS-Resources.c │ │ ├── SRS-Resources.h │ │ ├── SRS-SpatialRelationInfo.c │ │ ├── SRS-SpatialRelationInfo.h │ │ ├── SRS-SwitchingTimeEUTRA.c │ │ ├── SRS-SwitchingTimeEUTRA.h │ │ ├── SRS-SwitchingTimeNR.c │ │ ├── SRS-SwitchingTimeNR.h │ │ ├── SRS-TPC-CommandConfig.c │ │ ├── SRS-TPC-CommandConfig.h │ │ ├── SRS-TPC-PDCCH-Config.c │ │ ├── SRS-TPC-PDCCH-Config.h │ │ ├── SS-RSSI-Measurement.c │ │ ├── SS-RSSI-Measurement.h │ │ ├── SSB-ConfigMobility.c │ │ ├── SSB-ConfigMobility.h │ │ ├── SSB-Index.c │ │ ├── SSB-Index.h │ │ ├── SSB-MTC.c │ │ ├── SSB-MTC.h │ │ ├── SSB-MTC2.c │ │ ├── SSB-MTC2.h │ │ ├── SSB-ToMeasure.c │ │ ├── SSB-ToMeasure.h │ │ ├── SchedulingInfo.c │ │ ├── SchedulingInfo.h │ │ ├── SchedulingRequestConfig.c │ │ ├── SchedulingRequestConfig.h │ │ ├── SchedulingRequestId.c │ │ ├── SchedulingRequestId.h │ │ ├── SchedulingRequestResourceConfig.c │ │ ├── SchedulingRequestResourceConfig.h │ │ ├── SchedulingRequestResourceId.c │ │ ├── SchedulingRequestResourceId.h │ │ ├── SchedulingRequestToAddMod.c │ │ ├── SchedulingRequestToAddMod.h │ │ ├── ScramblingId.c │ │ ├── ScramblingId.h │ │ ├── SearchSpace.c │ │ ├── SearchSpace.h │ │ ├── SearchSpaceId.c │ │ ├── SearchSpaceId.h │ │ ├── SearchSpaceZero.c │ │ ├── SearchSpaceZero.h │ │ ├── SecurityAlgorithmConfig.c │ │ ├── SecurityAlgorithmConfig.h │ │ ├── SecurityConfig.c │ │ ├── SecurityConfig.h │ │ ├── SecurityConfigSMC.c │ │ ├── SecurityConfigSMC.h │ │ ├── SecurityModeCommand-IEs.c │ │ ├── SecurityModeCommand-IEs.h │ │ ├── SecurityModeCommand.c │ │ ├── SecurityModeCommand.h │ │ ├── SecurityModeComplete-IEs.c │ │ ├── SecurityModeComplete-IEs.h │ │ ├── SecurityModeComplete.c │ │ ├── SecurityModeComplete.h │ │ ├── SecurityModeFailure-IEs.c │ │ ├── SecurityModeFailure-IEs.h │ │ ├── SecurityModeFailure.c │ │ ├── SecurityModeFailure.h │ │ ├── ServCellIndex.c │ │ ├── ServCellIndex.h │ │ ├── ServingCellConfig.c │ │ ├── ServingCellConfig.h │ │ ├── ServingCellConfigCommon.c │ │ ├── ServingCellConfigCommon.h │ │ ├── ServingCellConfigCommonSIB.c │ │ ├── ServingCellConfigCommonSIB.h │ │ ├── SetupRelease.c │ │ ├── SetupRelease.h │ │ ├── ShortI-RNTI-Value.c │ │ ├── ShortI-RNTI-Value.h │ │ ├── ShortMAC-I.c │ │ ├── ShortMAC-I.h │ │ ├── SlotFormatCombination.c │ │ ├── SlotFormatCombination.h │ │ ├── SlotFormatCombinationId.c │ │ ├── SlotFormatCombinationId.h │ │ ├── SlotFormatCombinationsPerCell.c │ │ ├── SlotFormatCombinationsPerCell.h │ │ ├── SlotFormatIndicator.c │ │ ├── SlotFormatIndicator.h │ │ ├── SpCellConfig.c │ │ ├── SpCellConfig.h │ │ ├── SpatialRelations.c │ │ ├── SpatialRelations.h │ │ ├── SpeedStateScaleFactors.c │ │ ├── SpeedStateScaleFactors.h │ │ ├── SubcarrierSpacing.c │ │ ├── SubcarrierSpacing.h │ │ ├── SupportedBandwidth.c │ │ ├── SupportedBandwidth.h │ │ ├── SupportedCSI-RS-Resource.c │ │ ├── SupportedCSI-RS-Resource.h │ │ ├── SuspendConfig.c │ │ ├── SuspendConfig.h │ │ ├── SystemInformation-IEs.c │ │ ├── SystemInformation-IEs.h │ │ ├── SystemInformation.c │ │ ├── SystemInformation.h │ │ ├── T-PollRetransmit.c │ │ ├── T-PollRetransmit.h │ │ ├── T-Reassembly.c │ │ ├── T-Reassembly.h │ │ ├── T-Reselection.c │ │ ├── T-Reselection.h │ │ ├── T-StatusProhibit.c │ │ ├── T-StatusProhibit.h │ │ ├── TAG-Config.c │ │ ├── TAG-Config.h │ │ ├── TAG-Id.c │ │ ├── TAG-Id.h │ │ ├── TAG.c │ │ ├── TAG.h │ │ ├── TCI-State.c │ │ ├── TCI-State.h │ │ ├── TCI-StateId.c │ │ ├── TCI-StateId.h │ │ ├── TDD-UL-DL-ConfigCommon.c │ │ ├── TDD-UL-DL-ConfigCommon.h │ │ ├── TDD-UL-DL-ConfigDedicated.c │ │ ├── TDD-UL-DL-ConfigDedicated.h │ │ ├── TDD-UL-DL-Pattern.c │ │ ├── TDD-UL-DL-Pattern.h │ │ ├── TDD-UL-DL-SlotConfig.c │ │ ├── TDD-UL-DL-SlotConfig.h │ │ ├── TDD-UL-DL-SlotIndex.c │ │ ├── TDD-UL-DL-SlotIndex.h │ │ ├── ThresholdNR.c │ │ ├── ThresholdNR.h │ │ ├── TimeAlignmentTimer.c │ │ ├── TimeAlignmentTimer.h │ │ ├── TimeToTrigger.c │ │ ├── TimeToTrigger.h │ │ ├── TrackingAreaCode.c │ │ ├── TrackingAreaCode.h │ │ ├── UAC-AccessCategory1-SelectionAssistanceInfo.c │ │ ├── UAC-AccessCategory1-SelectionAssistanceInfo.h │ │ ├── UAC-BarringInfoSet.c │ │ ├── UAC-BarringInfoSet.h │ │ ├── UAC-BarringInfoSetIndex.c │ │ ├── UAC-BarringInfoSetIndex.h │ │ ├── UAC-BarringInfoSetList.c │ │ ├── UAC-BarringInfoSetList.h │ │ ├── UAC-BarringPerCat.c │ │ ├── UAC-BarringPerCat.h │ │ ├── UAC-BarringPerCatList.c │ │ ├── UAC-BarringPerCatList.h │ │ ├── UAC-BarringPerPLMN-List.c │ │ ├── UAC-BarringPerPLMN-List.h │ │ ├── UAC-BarringPerPLMN.c │ │ ├── UAC-BarringPerPLMN.h │ │ ├── UCI-OnPUSCH.c │ │ ├── UCI-OnPUSCH.h │ │ ├── UE-CapabilityRAT-Container.c │ │ ├── UE-CapabilityRAT-Container.h │ │ ├── UE-CapabilityRAT-ContainerList.c │ │ ├── UE-CapabilityRAT-ContainerList.h │ │ ├── UE-CapabilityRAT-Request.c │ │ ├── UE-CapabilityRAT-Request.h │ │ ├── UE-CapabilityRAT-RequestList.c │ │ ├── UE-CapabilityRAT-RequestList.h │ │ ├── UE-CapabilityRequestFilterCommon.c │ │ ├── UE-CapabilityRequestFilterCommon.h │ │ ├── UE-CapabilityRequestFilterNR-v1540.c │ │ ├── UE-CapabilityRequestFilterNR-v1540.h │ │ ├── UE-CapabilityRequestFilterNR.c │ │ ├── UE-CapabilityRequestFilterNR.h │ │ ├── UE-MRDC-Capability-v1560.c │ │ ├── UE-MRDC-Capability-v1560.h │ │ ├── UE-MRDC-Capability.c │ │ ├── UE-MRDC-Capability.h │ │ ├── UE-MRDC-CapabilityAddFRX-Mode.c │ │ ├── UE-MRDC-CapabilityAddFRX-Mode.h │ │ ├── UE-MRDC-CapabilityAddXDD-Mode-v1560.c │ │ ├── UE-MRDC-CapabilityAddXDD-Mode-v1560.h │ │ ├── UE-MRDC-CapabilityAddXDD-Mode.c │ │ ├── UE-MRDC-CapabilityAddXDD-Mode.h │ │ ├── UE-NR-Capability-v1530.c │ │ ├── UE-NR-Capability-v1530.h │ │ ├── UE-NR-Capability-v1540.c │ │ ├── UE-NR-Capability-v1540.h │ │ ├── UE-NR-Capability-v1550.c │ │ ├── UE-NR-Capability-v1550.h │ │ ├── UE-NR-Capability-v1560.c │ │ ├── UE-NR-Capability-v1560.h │ │ ├── UE-NR-Capability.c │ │ ├── UE-NR-Capability.h │ │ ├── UE-NR-CapabilityAddFRX-Mode-v1540.c │ │ ├── UE-NR-CapabilityAddFRX-Mode-v1540.h │ │ ├── UE-NR-CapabilityAddFRX-Mode.c │ │ ├── UE-NR-CapabilityAddFRX-Mode.h │ │ ├── UE-NR-CapabilityAddXDD-Mode-v1530.c │ │ ├── UE-NR-CapabilityAddXDD-Mode-v1530.h │ │ ├── UE-NR-CapabilityAddXDD-Mode.c │ │ ├── UE-NR-CapabilityAddXDD-Mode.h │ │ ├── UE-TimersAndConstants.c │ │ ├── UE-TimersAndConstants.h │ │ ├── UEAssistanceInformation-IEs.c │ │ ├── UEAssistanceInformation-IEs.h │ │ ├── UEAssistanceInformation-v1540-IEs.c │ │ ├── UEAssistanceInformation-v1540-IEs.h │ │ ├── UEAssistanceInformation.c │ │ ├── UEAssistanceInformation.h │ │ ├── UECapabilityEnquiry-IEs.c │ │ ├── UECapabilityEnquiry-IEs.h │ │ ├── UECapabilityEnquiry-v1560-IEs.c │ │ ├── UECapabilityEnquiry-v1560-IEs.h │ │ ├── UECapabilityEnquiry.c │ │ ├── UECapabilityEnquiry.h │ │ ├── UECapabilityInformation-IEs.c │ │ ├── UECapabilityInformation-IEs.h │ │ ├── UECapabilityInformation.c │ │ ├── UECapabilityInformation.h │ │ ├── UERadioAccessCapabilityInformation-IEs.c │ │ ├── UERadioAccessCapabilityInformation-IEs.h │ │ ├── UERadioAccessCapabilityInformation.c │ │ ├── UERadioAccessCapabilityInformation.h │ │ ├── UERadioPagingInformation-IEs.c │ │ ├── UERadioPagingInformation-IEs.h │ │ ├── UERadioPagingInformation.c │ │ ├── UERadioPagingInformation.h │ │ ├── UL-AM-RLC.c │ │ ├── UL-AM-RLC.h │ │ ├── UL-CCCH-Message.c │ │ ├── UL-CCCH-Message.h │ │ ├── UL-CCCH-MessageType.c │ │ ├── UL-CCCH-MessageType.h │ │ ├── UL-CCCH1-Message.c │ │ ├── UL-CCCH1-Message.h │ │ ├── UL-CCCH1-MessageType.c │ │ ├── UL-CCCH1-MessageType.h │ │ ├── UL-DCCH-Message.c │ │ ├── UL-DCCH-Message.h │ │ ├── UL-DCCH-MessageType.c │ │ ├── UL-DCCH-MessageType.h │ │ ├── UL-DataSplitThreshold.c │ │ ├── UL-DataSplitThreshold.h │ │ ├── UL-UM-RLC.c │ │ ├── UL-UM-RLC.h │ │ ├── ULInformationTransfer-IEs.c │ │ ├── ULInformationTransfer-IEs.h │ │ ├── ULInformationTransfer.c │ │ ├── ULInformationTransfer.h │ │ ├── ULInformationTransferMRDC-IEs.c │ │ ├── ULInformationTransferMRDC-IEs.h │ │ ├── ULInformationTransferMRDC.c │ │ ├── ULInformationTransferMRDC.h │ │ ├── UplinkConfig.c │ │ ├── UplinkConfig.h │ │ ├── UplinkConfigCommon.c │ │ ├── UplinkConfigCommon.h │ │ ├── UplinkConfigCommonSIB.c │ │ ├── UplinkConfigCommonSIB.h │ │ ├── UplinkTxDirectCurrentBWP.c │ │ ├── UplinkTxDirectCurrentBWP.h │ │ ├── UplinkTxDirectCurrentCell.c │ │ ├── UplinkTxDirectCurrentCell.h │ │ ├── UplinkTxDirectCurrentList.c │ │ ├── UplinkTxDirectCurrentList.h │ │ ├── VarMeasConfig.c │ │ ├── VarMeasConfig.h │ │ ├── VarMeasReport.c │ │ ├── VarMeasReport.h │ │ ├── VarMeasReportList.c │ │ ├── VarMeasReportList.h │ │ ├── VarPendingRNA-Update.c │ │ ├── VarPendingRNA-Update.h │ │ ├── VarResumeMAC-Input.c │ │ ├── VarResumeMAC-Input.h │ │ ├── VarShortMAC-Input.c │ │ ├── VarShortMAC-Input.h │ │ ├── VictimSystemType.c │ │ ├── VictimSystemType.h │ │ ├── ZP-CSI-RS-Resource.c │ │ ├── ZP-CSI-RS-Resource.h │ │ ├── ZP-CSI-RS-ResourceId.c │ │ ├── ZP-CSI-RS-ResourceId.h │ │ ├── ZP-CSI-RS-ResourceSet.c │ │ ├── ZP-CSI-RS-ResourceSet.h │ │ ├── ZP-CSI-RS-ResourceSetId.c │ │ ├── ZP-CSI-RS-ResourceSetId.h │ │ ├── asn_SEQUENCE_OF.c │ │ ├── asn_SEQUENCE_OF.h │ │ ├── asn_SET_OF.c │ │ ├── asn_SET_OF.h │ │ ├── asn_application.c │ │ ├── asn_application.h │ │ ├── asn_bit_data.c │ │ ├── asn_bit_data.h │ │ ├── asn_codecs.h │ │ ├── asn_codecs_prim.c │ │ ├── asn_codecs_prim.h │ │ ├── asn_constant.h │ │ ├── asn_internal.c │ │ ├── asn_internal.h │ │ ├── asn_ioc.h │ │ ├── asn_random_fill.c │ │ ├── asn_random_fill.h │ │ ├── asn_system.h │ │ ├── ber_decoder.c │ │ ├── ber_decoder.h │ │ ├── ber_tlv_length.c │ │ ├── ber_tlv_length.h │ │ ├── ber_tlv_tag.c │ │ ├── ber_tlv_tag.h │ │ ├── constr_CHOICE.c │ │ ├── constr_CHOICE.h │ │ ├── constr_CHOICE_oer.c │ │ ├── constr_SEQUENCE.c │ │ ├── constr_SEQUENCE.h │ │ ├── constr_SEQUENCE_OF.c │ │ ├── constr_SEQUENCE_OF.h │ │ ├── constr_SEQUENCE_oer.c │ │ ├── constr_SET_OF.c │ │ ├── constr_SET_OF.h │ │ ├── constr_SET_OF_oer.c │ │ ├── constr_TYPE.c │ │ ├── constr_TYPE.h │ │ ├── constraints.c │ │ ├── constraints.h │ │ ├── der_encoder.c │ │ ├── der_encoder.h │ │ ├── oer_decoder.c │ │ ├── oer_decoder.h │ │ ├── oer_encoder.c │ │ ├── oer_encoder.h │ │ ├── oer_support.c │ │ ├── oer_support.h │ │ ├── per_decoder.c │ │ ├── per_decoder.h │ │ ├── per_encoder.c │ │ ├── per_encoder.h │ │ ├── per_opentype.c │ │ ├── per_opentype.h │ │ ├── per_support.c │ │ ├── per_support.h │ │ ├── xer_decoder.c │ │ ├── xer_decoder.h │ │ ├── xer_encoder.c │ │ ├── xer_encoder.h │ │ ├── xer_support.c │ │ └── xer_support.h ├── phy │ ├── bwp │ │ ├── bwp.cpp │ │ └── bwp.h │ ├── libphy │ │ ├── libphy.cpp │ │ └── libphy.h │ ├── physical_channel │ │ ├── physical_channel.cpp │ │ └── physical_channel.h │ ├── synchronization │ │ ├── synchronization.cpp │ │ └── synchronization.h │ └── transport_channel │ │ ├── transport_channel.cpp │ │ └── transport_channel.h ├── rf │ ├── rf.cpp │ ├── rf.h │ ├── usrp_b200 │ │ ├── usrp_b200.cpp │ │ └── usrp_b200.h │ ├── usrp_usrp2 │ │ ├── usrp_usrp2.cpp │ │ └── usrp_usrp2.h │ └── usrp_x300 │ │ ├── usrp_x300.cpp │ │ └── usrp_x300.h ├── utils │ ├── common_utils │ │ ├── common_utils.cpp │ │ └── common_utils.h │ └── sequence_generator │ │ ├── sequence_generator.cpp │ │ └── sequence_generator.h └── variables │ ├── common_matrices │ ├── common_matrices.cpp │ └── common_matrices.h │ ├── common_structures │ ├── common_structures.cpp │ └── common_structures.h │ ├── common_variables │ ├── common_variables.cpp │ └── common_variables.h │ └── ldpc_matrices │ ├── ldpc_matrices.cpp │ └── ldpc_matrices.h ├── output.txt └── src ├── main.cc └── phy ├── phy.cpp └── phy.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/Readme.md -------------------------------------------------------------------------------- /analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/analyse.py -------------------------------------------------------------------------------- /config/scan_band.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/config/scan_band.cfg -------------------------------------------------------------------------------- /config/search_cell.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/config/search_cell.cfg -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AMF-Identifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AMF-Identifier.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AMF-Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AMF-Identifier.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ARFCN-ValueEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ARFCN-ValueEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ARFCN-ValueEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ARFCN-ValueEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ARFCN-ValueNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ARFCN-ValueNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ARFCN-ValueNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ARFCN-ValueNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AS-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AS-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AS-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AS-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AS-Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AS-Context.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AS-Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AS-Context.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AggregatedBandwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AggregatedBandwidth.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/AggregatedBandwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/AggregatedBandwidth.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Alpha.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Alpha.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BCCH-BCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BCCH-BCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BCCH-BCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BCCH-BCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BCCH-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BCCH-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BCCH-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BCCH-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BCCH-DL-SCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BCCH-DL-SCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BCCH-DL-SCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BCCH-DL-SCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BFR-CSIRS-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BFR-CSIRS-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BFR-CSIRS-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BFR-CSIRS-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BFR-SSB-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BFR-SSB-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BFR-SSB-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BFR-SSB-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BIT_STRING.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BIT_STRING.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BIT_STRING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BIT_STRING.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BIT_STRING_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BIT_STRING_oer.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BOOLEAN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BOOLEAN.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BOOLEAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BOOLEAN.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BSR-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BSR-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BSR-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BSR-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-Downlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-Downlink.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-Downlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-Downlink.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-DownlinkCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-DownlinkCommon.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-DownlinkCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-DownlinkCommon.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-Id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-Id.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-Id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-Id.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-Uplink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-Uplink.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-Uplink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-Uplink.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-UplinkCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-UplinkCommon.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-UplinkCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-UplinkCommon.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-UplinkDedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-UplinkDedicated.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP-UplinkDedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP-UplinkDedicated.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BWP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BWP.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandCombination.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandCombination.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandCombination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandCombination.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandCombinationInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandCombinationInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandCombinationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandCombinationInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandCombinationList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandCombinationList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandCombinationList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandCombinationList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandEntryIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandEntryIndex.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandEntryIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandEntryIndex.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandParameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandParameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BandParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BandParameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BetaOffsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BetaOffsets.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/BetaOffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/BetaOffsets.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-BandwidthClassNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-BandwidthClassNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-BandwidthClassNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-BandwidthClassNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-ParametersEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-ParametersEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-ParametersEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-ParametersEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-ParametersNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-ParametersNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-ParametersNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-ParametersNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-ParametersNRDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-ParametersNRDC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CA-ParametersNRDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CA-ParametersNRDC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CFRA-CSIRS-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CFRA-CSIRS-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CFRA-CSIRS-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CFRA-CSIRS-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CFRA-SSB-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CFRA-SSB-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CFRA-SSB-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CFRA-SSB-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CFRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CFRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CFRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CFRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config-v1540-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config-v1540-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config-v1540-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config-v1540-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config-v1560-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config-v1560-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config-v1560-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config-v1560-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-ConfigInfo-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-ConfigInfo-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-ConfigInfo-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-ConfigInfo-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-ConfigInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-ConfigInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-ConfigInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-ConfigInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-UCI-OnPUSCH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-UCI-OnPUSCH.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CG-UCI-OnPUSCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CG-UCI-OnPUSCH.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CGI-InfoEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CGI-InfoEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CGI-InfoEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CGI-InfoEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CGI-InfoNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CGI-InfoNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CGI-InfoNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CGI-InfoNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-IM-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-IM-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-IM-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-IM-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-IM-ResourceId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-IM-ResourceId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-IM-ResourceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-IM-ResourceId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-IM-ResourceSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-IM-ResourceSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-IM-ResourceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-IM-ResourceSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-MeasConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-MeasConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-MeasConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-MeasConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-RS-CellMobility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-RS-CellMobility.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-RS-CellMobility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-RS-CellMobility.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-RS-ForTracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-RS-ForTracking.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-RS-ForTracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-RS-ForTracking.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-RS-Index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-RS-Index.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-RS-Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-RS-Index.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ReportConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ReportConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ReportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ReportConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ReportConfigId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ReportConfigId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ReportConfigId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ReportConfigId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ReportFramework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ReportFramework.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ReportFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ReportFramework.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ResourceConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ResourceConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-ResourceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-ResourceConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-SSB-ResourceSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-SSB-ResourceSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CSI-SSB-ResourceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CSI-SSB-ResourceSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CarrierFreqEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CarrierFreqEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CarrierFreqEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CarrierFreqEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CarrierInfoNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CarrierInfoNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CarrierInfoNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CarrierInfoNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellGroupConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellGroupConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellGroupConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellGroupConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellGroupId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellGroupId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellGroupId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellGroupId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellIdentity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellIdentity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellIdentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellIdentity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellsToAddMod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellsToAddMod.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellsToAddMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellsToAddMod.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellsToAddModList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellsToAddModList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellsToAddModList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellsToAddModList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellsTriggeredList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellsTriggeredList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CellsTriggeredList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CellsTriggeredList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CipheringAlgorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CipheringAlgorithm.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CipheringAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CipheringAlgorithm.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CodebookConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CodebookConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CodebookConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CodebookConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CodebookParameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CodebookParameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CodebookParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CodebookParameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ControlResourceSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ControlResourceSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ControlResourceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ControlResourceSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CounterCheck-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CounterCheck-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CounterCheck-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CounterCheck-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CounterCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CounterCheck.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/CounterCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/CounterCheck.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-AM-RLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-AM-RLC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-AM-RLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-AM-RLC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-CCCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-CCCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-CCCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-CCCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-CCCH-MessageType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-CCCH-MessageType.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-CCCH-MessageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-CCCH-MessageType.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-DCCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-DCCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-DCCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-DCCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-DCCH-MessageType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-DCCH-MessageType.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-DCCH-MessageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-DCCH-MessageType.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-UM-RLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-UM-RLC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DL-UM-RLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DL-UM-RLC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DMRS-DownlinkConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DMRS-DownlinkConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DMRS-DownlinkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DMRS-DownlinkConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DMRS-UplinkConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DMRS-UplinkConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DMRS-UplinkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DMRS-UplinkConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-CountInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-CountInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-CountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-CountInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-CountInfoList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-CountInfoList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-CountInfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-CountInfoList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-CountMSB-Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-CountMSB-Info.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-CountMSB-Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-CountMSB-Info.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-Identity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-Identity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-ToAddMod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-ToAddMod.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-ToAddMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-ToAddMod.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-ToAddModList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-ToAddModList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-ToAddModList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-ToAddModList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-ToReleaseList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-ToReleaseList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRB-ToReleaseList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRB-ToReleaseList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRX-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRX-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRX-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRX-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRX-Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRX-Info.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DRX-Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DRX-Info.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DataInactivityTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DataInactivityTimer.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DataInactivityTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DataInactivityTimer.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DelayBudgetReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DelayBudgetReport.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DelayBudgetReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DelayBudgetReport.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DownlinkPreemption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DownlinkPreemption.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DownlinkPreemption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DownlinkPreemption.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyB.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyB.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyD.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyD.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyE.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyE.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyF.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyF.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyH.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyH.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyI.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/DummyI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/DummyI.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-BlackCell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-BlackCell.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-BlackCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-BlackCell.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-Cell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-Cell.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-Cell.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-CellIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-CellIndex.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-CellIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-CellIndex.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-CellIndexList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-CellIndexList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-CellIndexList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-CellIndexList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-MultiBandInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-MultiBandInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-MultiBandInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-MultiBandInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-NS-PmaxList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-NS-PmaxList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-NS-PmaxList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-NS-PmaxList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-NS-PmaxValue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-NS-PmaxValue.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-NS-PmaxValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-NS-PmaxValue.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-PhysCellId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-PhysCellId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-PhysCellId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-PhysCellId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-Q-OffsetRange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-Q-OffsetRange.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-Q-OffsetRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-Q-OffsetRange.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-RSTD-Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-RSTD-Info.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-RSTD-Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-RSTD-Info.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-RSTD-InfoList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-RSTD-InfoList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EUTRA-RSTD-InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EUTRA-RSTD-InfoList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EstablishmentCause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EstablishmentCause.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EstablishmentCause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EstablishmentCause.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EventTriggerConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EventTriggerConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/EventTriggerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/EventTriggerConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FR-Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FR-Info.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FR-Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FR-Info.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FR-InfoList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FR-InfoList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FR-InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FR-InfoList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FailureInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FailureInformation.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FailureInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FailureInformation.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FailureReportSCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FailureReportSCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FailureReportSCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FailureReportSCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetDownlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetDownlink.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetDownlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetDownlink.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetUplink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetUplink.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetUplink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetUplink.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetUplinkId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetUplinkId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetUplinkId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetUplinkId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSets.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSets.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetsPerBand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetsPerBand.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FeatureSetsPerBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FeatureSetsPerBand.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FilterCoefficient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FilterCoefficient.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FilterCoefficient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FilterCoefficient.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FilterConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FilterConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FilterConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FilterConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqBandIndicatorNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqBandIndicatorNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqBandIndicatorNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqBandIndicatorNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqBandInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqBandInformation.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqBandInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqBandInformation.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqBandList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqBandList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqBandList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqBandList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqPriorityEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqPriorityEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqPriorityEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqPriorityEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqPriorityListNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqPriorityListNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqPriorityListNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqPriorityListNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqPriorityNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqPriorityNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqPriorityNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqPriorityNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqSeparationClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqSeparationClass.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FreqSeparationClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FreqSeparationClass.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoDL-SIB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoDL-SIB.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoDL-SIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoDL-SIB.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoDL.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoDL.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoUL-SIB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoUL-SIB.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoUL-SIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoUL-SIB.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoUL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoUL.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/FrequencyInfoUL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/FrequencyInfoUL.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/GapConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/GapConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/GapConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/GapConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/HandoverCommand-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/HandoverCommand-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/HandoverCommand-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/HandoverCommand-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/HandoverCommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/HandoverCommand.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/HandoverCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/HandoverCommand.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Hysteresis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Hysteresis.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Hysteresis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Hysteresis.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/I-RNTI-Value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/I-RNTI-Value.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/I-RNTI-Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/I-RNTI-Value.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/IMS-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/IMS-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/IMS-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/IMS-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/INTEGER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/INTEGER.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/INTEGER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/INTEGER.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/INTEGER_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/INTEGER_oer.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/InitialUE-Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/InitialUE-Identity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/InitialUE-Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/InitialUE-Identity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/InterRAT-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/InterRAT-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/InterRAT-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/InterRAT-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MAC-CellGroupConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MAC-CellGroupConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MAC-CellGroupConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MAC-CellGroupConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MAC-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MAC-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MAC-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MAC-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MCC-MNC-Digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MCC-MNC-Digit.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MCC-MNC-Digit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MCC-MNC-Digit.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MCC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MCC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MIB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MIB.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MIB.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MIMO-LayersDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MIMO-LayersDL.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MIMO-LayersDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MIMO-LayersDL.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MIMO-LayersUL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MIMO-LayersUL.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MIMO-LayersUL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MIMO-LayersUL.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MNC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MNC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MNC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MNC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MRDC-AssistanceInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MRDC-AssistanceInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MRDC-AssistanceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MRDC-AssistanceInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MRDC-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MRDC-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MRDC-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MRDC-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MasterKeyUpdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MasterKeyUpdate.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MasterKeyUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MasterKeyUpdate.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasConfigMN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasConfigMN.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasConfigMN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasConfigMN.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasConfigSN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasConfigSN.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasConfigSN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasConfigSN.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasGapConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasGapConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasGapConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasGapConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasIdToAddMod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasIdToAddMod.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasIdToAddMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasIdToAddMod.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasIdToAddModList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasIdToAddModList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasIdToAddModList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasIdToAddModList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasIdToRemoveList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasIdToRemoveList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasIdToRemoveList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasIdToRemoveList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectToAddMod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectToAddMod.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasObjectToAddMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasObjectToAddMod.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasQuantityResults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasQuantityResults.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasQuantityResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasQuantityResults.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasReportQuantity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasReportQuantity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasReportQuantity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasReportQuantity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResult2EUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResult2EUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResult2EUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResult2EUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResult2NR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResult2NR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResult2NR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResult2NR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultFreqList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultFreqList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultFreqList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultFreqList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultList2NR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultList2NR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultList2NR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultList2NR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultListEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultListEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultListEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultListEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultListNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultListNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultListNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultListNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultServMO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultServMO.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResultServMO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResultServMO.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResults.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasResults.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasTiming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasTiming.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasTiming.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasTimingList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasTimingList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasTimingList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasTimingList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasTriggerQuantity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasTriggerQuantity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasTriggerQuantity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasTriggerQuantity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasurementReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasurementReport.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/MeasurementReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/MeasurementReport.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ModulationOrder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ModulationOrder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ModulationOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ModulationOrder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NG-5G-S-TMSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NG-5G-S-TMSI.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NG-5G-S-TMSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NG-5G-S-TMSI.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-FreqInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-FreqInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-FreqInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-FreqInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-MultiBandInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-MultiBandInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-MultiBandInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-MultiBandInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-NS-PmaxList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-NS-PmaxList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-NS-PmaxList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-NS-PmaxList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-NS-PmaxValue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-NS-PmaxValue.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-NS-PmaxValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-NS-PmaxValue.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-RS-Type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-RS-Type.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NR-RS-Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NR-RS-Type.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NRDC-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NRDC-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NRDC-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NRDC-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NULL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NULL.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NULL.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NZP-CSI-RS-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NZP-CSI-RS-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NZP-CSI-RS-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NZP-CSI-RS-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NativeEnumerated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NativeEnumerated.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NativeEnumerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NativeEnumerated.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NativeInteger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NativeInteger.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NativeInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NativeInteger.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NativeInteger_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NativeInteger_oer.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NumberOfCarriers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NumberOfCarriers.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/NumberOfCarriers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/NumberOfCarriers.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OCTET_STRING.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OCTET_STRING.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OCTET_STRING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OCTET_STRING.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OCTET_STRING_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OCTET_STRING_oer.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OPEN_TYPE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OPEN_TYPE.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OPEN_TYPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OPEN_TYPE.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OPEN_TYPE_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OPEN_TYPE_oer.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OtherConfig-v1540.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OtherConfig-v1540.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OtherConfig-v1540.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OtherConfig-v1540.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OtherConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OtherConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/OtherConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/OtherConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P-Max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P-Max.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P-Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P-Max.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUCCH-Id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUCCH-Id.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUCCH-Id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUCCH-Id.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUCCH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUCCH.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUCCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUCCH.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUSCH-AlphaSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUSCH-AlphaSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUSCH-AlphaSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUSCH-AlphaSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUSCH-AlphaSetId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUSCH-AlphaSetId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/P0-PUSCH-AlphaSetId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/P0-PUSCH-AlphaSetId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCCH-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCCH-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCCH-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCCH-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCCH-MessageType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCCH-MessageType.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCCH-MessageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCCH-MessageType.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-List.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-List.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-Range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-Range.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-Range.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-RangeElement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-RangeElement.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-RangeElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-RangeElement.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-RangeIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-RangeIndex.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-RangeIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-RangeIndex.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-RangeIndexList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-RangeIndexList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PCI-RangeIndexList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PCI-RangeIndexList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCCH-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCCH-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCCH-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCCH-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCCH-ConfigCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCCH-ConfigCommon.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCCH-ConfigCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCCH-ConfigCommon.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCCH-ConfigSIB1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCCH-ConfigSIB1.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCCH-ConfigSIB1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCCH-ConfigSIB1.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCP-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCP-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCP-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCP-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCP-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCP-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCP-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCP-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCP-ParametersMRDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCP-ParametersMRDC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDCP-ParametersMRDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDCP-ParametersMRDC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDSCH-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDSCH-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDSCH-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDSCH-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDSCH-ConfigCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDSCH-ConfigCommon.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDSCH-ConfigCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDSCH-ConfigCommon.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDU-SessionID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDU-SessionID.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PDU-SessionID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PDU-SessionID.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-InfoMCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-InfoMCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-InfoMCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-InfoMCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-InfoSCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-InfoSCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-InfoSCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-InfoSCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-TypeListMCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-TypeListMCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-TypeListMCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-TypeListMCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-TypeListSCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-TypeListSCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-TypeListSCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-TypeListSCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-UplinkCarrierMCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-UplinkCarrierMCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-UplinkCarrierMCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-UplinkCarrierMCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-UplinkCarrierSCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-UplinkCarrierSCG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PH-UplinkCarrierSCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PH-UplinkCarrierSCG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PHR-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PHR-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PHR-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PHR-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-Identity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-Identity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-IdentityInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-IdentityInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-IdentityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-IdentityInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-RAN-AreaCell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-RAN-AreaCell.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-RAN-AreaCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-RAN-AreaCell.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-RAN-AreaConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-RAN-AreaConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PLMN-RAN-AreaConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PLMN-RAN-AreaConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PRB-Id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PRB-Id.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PRB-Id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PRB-Id.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PTRS-DownlinkConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PTRS-DownlinkConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PTRS-DownlinkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PTRS-DownlinkConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PTRS-UplinkConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PTRS-UplinkConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PTRS-UplinkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PTRS-UplinkConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-CSI-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-CSI-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-CSI-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-CSI-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ConfigCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ConfigCommon.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ConfigCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ConfigCommon.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-FormatConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-FormatConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-FormatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-FormatConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-MaxCodeRate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-MaxCodeRate.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-MaxCodeRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-MaxCodeRate.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-PowerControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-PowerControl.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-PowerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-PowerControl.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ResourceId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ResourceId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ResourceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ResourceId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ResourceSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ResourceSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ResourceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ResourceSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ResourceSetId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ResourceSetId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-ResourceSetId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-ResourceSetId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format0.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format0.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format1.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format1.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format2.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format2.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format3.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format3.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format4.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUCCH-format4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUCCH-format4.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUSCH-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUSCH-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUSCH-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUSCH-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUSCH-ConfigCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUSCH-ConfigCommon.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUSCH-ConfigCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUSCH-ConfigCommon.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUSCH-PowerControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUSCH-PowerControl.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PUSCH-PowerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PUSCH-PowerControl.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Paging.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Paging.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingCycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingCycle.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingCycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingCycle.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingRecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingRecord.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingRecord.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingRecordList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingRecordList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingRecordList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingRecordList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingUE-Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingUE-Identity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PagingUE-Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PagingUE-Identity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-ParametersFR1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-ParametersFR1.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-ParametersFR1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-ParametersFR1.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-ParametersFR2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-ParametersFR2.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-ParametersFR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-ParametersFR2.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-ParametersMRDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-ParametersMRDC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Phy-ParametersMRDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Phy-ParametersMRDC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PhysCellId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PhysCellId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PhysCellId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PhysCellId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PollByte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PollByte.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PollByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PollByte.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PollPDU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PollPDU.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PollPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PollPDU.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndex2.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndex2.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndex4.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndex4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndex4.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndex8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndex8.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndex8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndex8.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndexFor8Ranks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndexFor8Ranks.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/PortIndexFor8Ranks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/PortIndexFor8Ranks.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Q-OffsetRange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Q-OffsetRange.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Q-OffsetRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Q-OffsetRange.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Q-QualMin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Q-QualMin.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Q-QualMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Q-QualMin.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Q-RxLevMin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Q-RxLevMin.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/Q-RxLevMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/Q-RxLevMin.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QCL-Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QCL-Info.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QCL-Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QCL-Info.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QFI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QFI.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QFI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QFI.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QuantityConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QuantityConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QuantityConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QuantityConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QuantityConfigNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QuantityConfigNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QuantityConfigNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QuantityConfigNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QuantityConfigRS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QuantityConfigRS.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/QuantityConfigRS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/QuantityConfigRS.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RAN-AreaCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RAN-AreaCode.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RAN-AreaCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RAN-AreaCode.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RAN-AreaConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RAN-AreaConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RAN-AreaConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RAN-AreaConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RAT-Type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RAT-Type.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RAT-Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RAT-Type.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RF-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RF-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RF-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RF-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RLC-BearerConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RLC-BearerConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RLC-BearerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RLC-BearerConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RLC-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RLC-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RLC-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RLC-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RLC-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RLC-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RLC-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RLC-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RNTI-Value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RNTI-Value.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RNTI-Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RNTI-Value.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCReject-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCReject-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCReject-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCReject-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCReject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCReject.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCReject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCReject.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCRelease-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCRelease-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCRelease-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCRelease-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCRelease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCRelease.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCRelease.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCResume-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCResume-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCResume-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCResume-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCResume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCResume.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCResume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCResume.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCResumeRequest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCResumeRequest.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCResumeRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCResumeRequest.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetup-IEs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetup-IEs.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetup-IEs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetup-IEs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetup.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetup.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetupComplete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetupComplete.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetupComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetupComplete.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetupRequest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetupRequest.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRCSetupRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRCSetupRequest.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRM-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRM-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RRM-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RRM-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRP-Range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRP-Range.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRP-Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRP-Range.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRP-RangeEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRP-RangeEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRP-RangeEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRP-RangeEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRQ-Range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRQ-Range.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRQ-Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRQ-Range.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRQ-RangeEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRQ-RangeEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RSRQ-RangeEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RSRQ-RangeEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RangeToBestCell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RangeToBestCell.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RangeToBestCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RangeToBestCell.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RateMatchPattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RateMatchPattern.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RateMatchPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RateMatchPattern.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReestabNCellInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReestabNCellInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReestabNCellInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReestabNCellInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RegisteredAMF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RegisteredAMF.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RegisteredAMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RegisteredAMF.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RejectWaitTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RejectWaitTime.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/RejectWaitTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/RejectWaitTime.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportCGI-EUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportCGI-EUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportCGI-EUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportCGI-EUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportCGI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportCGI.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportCGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportCGI.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportConfigId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportConfigId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportConfigId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportConfigId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportConfigNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportConfigNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportConfigNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportConfigNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportInterval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportInterval.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportInterval.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportSFTD-EUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportSFTD-EUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportSFTD-EUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportSFTD-EUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportSFTD-NR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportSFTD-NR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ReportSFTD-NR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ReportSFTD-NR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ResumeCause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ResumeCause.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ResumeCause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ResumeCause.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/S-NSSAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/S-NSSAI.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/S-NSSAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/S-NSSAI.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SCellConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SCellConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SCellConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SCellConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SCellIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SCellIndex.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SCellIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SCellIndex.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SDAP-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SDAP-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SDAP-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SDAP-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SDAP-Parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SDAP-Parameters.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SDAP-Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SDAP-Parameters.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SI-RequestConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SI-RequestConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SI-RequestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SI-RequestConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB-Mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB-Mapping.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB-Mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB-Mapping.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB-TypeInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB-TypeInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB-TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB-TypeInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB1.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB1.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB2.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB2.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB3.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB3.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB4.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB4.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB5.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB5.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB6.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB6.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB7.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB7.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB8.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB8.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB9.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SIB9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SIB9.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SINR-Range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SINR-Range.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SINR-Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SINR-Range.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SINR-RangeEUTRA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SINR-RangeEUTRA.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SINR-RangeEUTRA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SINR-RangeEUTRA.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SK-Counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SK-Counter.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SK-Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SK-Counter.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SN-FieldLengthAM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SN-FieldLengthAM.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SN-FieldLengthAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SN-FieldLengthAM.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SN-FieldLengthUM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SN-FieldLengthUM.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SN-FieldLengthUM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SN-FieldLengthUM.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SPS-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SPS-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SPS-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SPS-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRB-Identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRB-Identity.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRB-Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRB-Identity.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRB-ToAddMod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRB-ToAddMod.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRB-ToAddMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRB-ToAddMod.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRB-ToAddModList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRB-ToAddModList.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRB-ToAddModList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRB-ToAddModList.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-CC-SetIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-CC-SetIndex.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-CC-SetIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-CC-SetIndex.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-Resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-Resource.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-Resource.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-ResourceId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-ResourceId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-ResourceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-ResourceId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-ResourceSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-ResourceSet.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-ResourceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-ResourceSet.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-Resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-Resources.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SRS-Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SRS-Resources.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-Index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-Index.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-Index.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-MTC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-MTC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-MTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-MTC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-MTC2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-MTC2.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-MTC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-MTC2.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-ToMeasure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-ToMeasure.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SSB-ToMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SSB-ToMeasure.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SchedulingInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SchedulingInfo.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SchedulingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SchedulingInfo.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ScramblingId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ScramblingId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ScramblingId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ScramblingId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SearchSpace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SearchSpace.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SearchSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SearchSpace.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SearchSpaceId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SearchSpaceId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SearchSpaceId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SearchSpaceId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SearchSpaceZero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SearchSpaceZero.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SearchSpaceZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SearchSpaceZero.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SecurityConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SecurityConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SecurityConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SecurityConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ServCellIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ServCellIndex.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ServCellIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ServCellIndex.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SetupRelease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SetupRelease.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SetupRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SetupRelease.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ShortMAC-I.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ShortMAC-I.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ShortMAC-I.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ShortMAC-I.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SpCellConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SpCellConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SpCellConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SpCellConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SpatialRelations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SpatialRelations.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SpatialRelations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SpatialRelations.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SuspendConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SuspendConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/SuspendConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/SuspendConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-PollRetransmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-PollRetransmit.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-PollRetransmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-PollRetransmit.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-Reassembly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-Reassembly.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-Reassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-Reassembly.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-Reselection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-Reselection.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-Reselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-Reselection.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-StatusProhibit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-StatusProhibit.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/T-StatusProhibit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/T-StatusProhibit.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TAG-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TAG-Config.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TAG-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TAG-Config.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TAG-Id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TAG-Id.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TAG-Id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TAG-Id.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TAG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TAG.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TAG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TAG.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TCI-State.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TCI-State.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TCI-State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TCI-State.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TCI-StateId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TCI-StateId.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TCI-StateId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TCI-StateId.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ThresholdNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ThresholdNR.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ThresholdNR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ThresholdNR.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TimeToTrigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TimeToTrigger.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TimeToTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TimeToTrigger.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TrackingAreaCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TrackingAreaCode.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/TrackingAreaCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/TrackingAreaCode.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UCI-OnPUSCH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UCI-OnPUSCH.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UCI-OnPUSCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UCI-OnPUSCH.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UE-NR-Capability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UE-NR-Capability.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UE-NR-Capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UE-NR-Capability.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-AM-RLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-AM-RLC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-AM-RLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-AM-RLC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-CCCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-CCCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-CCCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-CCCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-CCCH1-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-CCCH1-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-CCCH1-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-CCCH1-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-DCCH-Message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-DCCH-Message.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-DCCH-Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-DCCH-Message.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-UM-RLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-UM-RLC.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UL-UM-RLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UL-UM-RLC.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UplinkConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UplinkConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/UplinkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/UplinkConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/VarMeasConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/VarMeasConfig.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/VarMeasConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/VarMeasConfig.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/VarMeasReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/VarMeasReport.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/VarMeasReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/VarMeasReport.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/VictimSystemType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/VictimSystemType.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/VictimSystemType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/VictimSystemType.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_SEQUENCE_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_SEQUENCE_OF.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_SEQUENCE_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_SEQUENCE_OF.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_SET_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_SET_OF.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_SET_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_SET_OF.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_application.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_application.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_bit_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_bit_data.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_bit_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_bit_data.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_codecs.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_codecs_prim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_codecs_prim.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_codecs_prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_codecs_prim.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_constant.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_internal.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_internal.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_ioc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_ioc.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_random_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_random_fill.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_random_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_random_fill.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/asn_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/asn_system.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ber_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ber_decoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ber_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ber_decoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ber_tlv_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ber_tlv_length.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ber_tlv_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ber_tlv_length.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ber_tlv_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ber_tlv_tag.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/ber_tlv_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/ber_tlv_tag.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_CHOICE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_CHOICE.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_CHOICE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_CHOICE.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_SEQUENCE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_SEQUENCE.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_SEQUENCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_SEQUENCE.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_SET_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_SET_OF.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_SET_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_SET_OF.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_TYPE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_TYPE.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constr_TYPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constr_TYPE.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constraints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constraints.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/constraints.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/der_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/der_encoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/der_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/der_encoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/oer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/oer_decoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/oer_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/oer_decoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/oer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/oer_encoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/oer_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/oer_encoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/oer_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/oer_support.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/oer_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/oer_support.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_decoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_decoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_encoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_encoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_opentype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_opentype.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_opentype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_opentype.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_support.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/per_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/per_support.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/xer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/xer_decoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/xer_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/xer_decoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/xer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/xer_encoder.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/xer_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/xer_encoder.h -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/xer_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/xer_support.c -------------------------------------------------------------------------------- /lib/asn1c/nr_rrc/xer_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/asn1c/nr_rrc/xer_support.h -------------------------------------------------------------------------------- /lib/phy/bwp/bwp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/phy/bwp/bwp.cpp -------------------------------------------------------------------------------- /lib/phy/bwp/bwp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/phy/bwp/bwp.h -------------------------------------------------------------------------------- /lib/phy/libphy/libphy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/phy/libphy/libphy.cpp -------------------------------------------------------------------------------- /lib/phy/libphy/libphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/phy/libphy/libphy.h -------------------------------------------------------------------------------- /lib/rf/rf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/rf.cpp -------------------------------------------------------------------------------- /lib/rf/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/rf.h -------------------------------------------------------------------------------- /lib/rf/usrp_b200/usrp_b200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/usrp_b200/usrp_b200.cpp -------------------------------------------------------------------------------- /lib/rf/usrp_b200/usrp_b200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/usrp_b200/usrp_b200.h -------------------------------------------------------------------------------- /lib/rf/usrp_usrp2/usrp_usrp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/usrp_usrp2/usrp_usrp2.cpp -------------------------------------------------------------------------------- /lib/rf/usrp_usrp2/usrp_usrp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/usrp_usrp2/usrp_usrp2.h -------------------------------------------------------------------------------- /lib/rf/usrp_x300/usrp_x300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/usrp_x300/usrp_x300.cpp -------------------------------------------------------------------------------- /lib/rf/usrp_x300/usrp_x300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/lib/rf/usrp_x300/usrp_x300.h -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/output.txt -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/phy/phy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/src/phy/phy.cpp -------------------------------------------------------------------------------- /src/phy/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5G/free5GRAN/HEAD/src/phy/phy.h --------------------------------------------------------------------------------