├── .DS_Store ├── .clang-format ├── .clang-tidy ├── .gdbinit ├── .vscode └── settings.json ├── CHANGELOG ├── CMakeLists.txt ├── CODEOWNERS ├── COPYRIGHT ├── CTestConfig.cmake ├── CTestCustom.cmake.in ├── LICENSE ├── README.md ├── cellinspector ├── .DS_Store ├── CMakeLists.txt ├── headers │ ├── asn_decoder.h │ ├── cell_scan.h │ └── cpu.h └── source │ ├── CMakeLists.txt │ ├── asn_decoder.c │ ├── cell_scan.c │ ├── cpu.c │ └── main.c ├── cellscanner ├── .DS_Store ├── CMakeLists.txt ├── headers │ ├── bands.h │ └── cell_scan.h └── source │ ├── CMakeLists.txt │ ├── cell_scan.c │ ├── main.backup │ └── main.c ├── cmake └── modules │ ├── CheckAtomic.cmake │ ├── CheckCSourceRuns.cmake │ ├── CheckFunctionExists.c │ ├── CheckFunctionExistsMath.cmake │ ├── FindBackward.cmake │ ├── FindFFTW3F.cmake │ ├── FindLibConfig.cmake │ ├── FindLimeSDR.cmake │ ├── FindMKL.cmake │ ├── FindMbedTLS.cmake │ ├── FindPCSCLite.cmake │ ├── FindRapidJSON.cmake │ ├── FindSCTP.cmake │ ├── FindSKIQ.cmake │ ├── FindSRSGUI.cmake │ ├── FindSSE.cmake │ ├── FindSoapySDR.cmake │ ├── FindUHD.cmake │ ├── FindZeroMQ.cmake │ ├── FindbladeRF.cmake │ ├── SRSRANPackage.cmake │ ├── SRSRANVersion.cmake │ ├── SRSRAN_install_configs.sh.in │ └── SRSRANbuildinfo.cmake.in ├── cmake_uninstall.cmake.in ├── debian ├── changelog ├── compat ├── control ├── copyright ├── man │ ├── genmanpages.sh │ ├── srsenb.txt │ ├── srsepc.txt │ └── srsue.txt ├── packager.sh ├── rules ├── source │ └── format ├── srsenb.install ├── srsenb.manpages ├── srsenb.service ├── srsepc.install ├── srsepc.manpages ├── srsepc.service ├── srslte-core.config ├── srslte-core.install ├── srslte-core.postinst ├── srslte-core.templates ├── srslte-dev.install ├── srsue.install ├── srsue.manpages └── srsue.service ├── lib ├── CMakeLists.txt ├── examples │ ├── .pdsch_ue.c.swp │ ├── CMakeLists.txt │ ├── cell_search.c │ ├── cell_search_nbiot.c │ ├── npdsch_enodeb.c │ ├── npdsch_ue.c │ ├── npdsch_ue_helper.cc │ ├── npdsch_ue_helper.h │ ├── pdsch_enodeb.c │ ├── pdsch_ue.c │ ├── pssch_ue.c │ ├── synch_file.c │ ├── test │ │ ├── CMakeLists.txt │ │ └── iqtests.cmake │ ├── usrp_capture.c │ ├── usrp_capture_sync.c │ ├── usrp_capture_sync_nbiot.c │ ├── usrp_iq_collector.c │ ├── usrp_txrx.c │ └── zmq_remote_rx.c ├── include │ ├── CMakeLists.txt │ └── srsran │ │ ├── CMakeLists.txt │ │ ├── adt │ │ ├── accumulators.h │ │ ├── bounded_bitset.h │ │ ├── bounded_vector.h │ │ ├── choice_type.h │ │ ├── circular_array.h │ │ ├── circular_buffer.h │ │ ├── circular_map.h │ │ ├── detail │ │ │ ├── index_sequence.h │ │ │ ├── type_storage.h │ │ │ └── type_utils.h │ │ ├── expected.h │ │ ├── fsm.h │ │ ├── interval.h │ │ ├── intrusive_list.h │ │ ├── move_callback.h │ │ ├── observer.h │ │ ├── optional.h │ │ ├── optional_array.h │ │ ├── pool │ │ │ ├── batch_mem_pool.h │ │ │ ├── cached_alloc.h │ │ │ ├── circular_stack_pool.h │ │ │ ├── fixed_size_pool.h │ │ │ ├── linear_allocator.h │ │ │ ├── mem_pool.h │ │ │ ├── memblock_cache.h │ │ │ ├── obj_pool.h │ │ │ ├── pool_interface.h │ │ │ └── pool_utils.h │ │ ├── scope_exit.h │ │ ├── singleton.h │ │ └── span.h │ │ ├── asn1 │ │ ├── asn1_utils.h │ │ ├── e2ap.h │ │ ├── e2sm.h │ │ ├── e2sm_kpm.h │ │ ├── e2sm_kpm_v2.h │ │ ├── gtpc.h │ │ ├── gtpc_ies.h │ │ ├── gtpc_msg.h │ │ ├── liblte_common.h │ │ ├── liblte_mme.h │ │ ├── nas_5g_ies.h │ │ ├── nas_5g_msg.h │ │ ├── nas_5g_utils.h │ │ ├── ngap.h │ │ ├── ngap_utils.h │ │ ├── obj_id_cmp_utils.h │ │ ├── rrc.h │ │ ├── rrc │ │ │ ├── bcch_msg.h │ │ │ ├── common.h │ │ │ ├── common_ext.h │ │ │ ├── dl_ccch_msg.h │ │ │ ├── dl_dcch_msg.h │ │ │ ├── ho_cmd.h │ │ │ ├── meascfg.h │ │ │ ├── paging.h │ │ │ ├── phy_ded.h │ │ │ ├── rr_common.h │ │ │ ├── rr_ded.h │ │ │ ├── rrc_asn1.h │ │ │ ├── security.h │ │ │ ├── si.h │ │ │ ├── uecap.h │ │ │ ├── ul_ccch_msg.h │ │ │ └── ul_dcch_msg.h │ │ ├── rrc_nbiot.h │ │ ├── rrc_nr.h │ │ ├── rrc_nr_utils.h │ │ ├── rrc_utils.h │ │ ├── s1ap.h │ │ └── s1ap_utils.h │ │ ├── build_info.h.in │ │ ├── common │ │ ├── backtrace.h │ │ ├── backward.hpp │ │ ├── band_helper.h │ │ ├── bcd_helpers.h │ │ ├── bearer_manager.h │ │ ├── block_queue.h │ │ ├── buffer_pool.h │ │ ├── byte_buffer.h │ │ ├── common.h │ │ ├── common_helper.h │ │ ├── common_lte.h │ │ ├── common_nr.h │ │ ├── config_file.h │ │ ├── crash_handler.h │ │ ├── enb_events.h │ │ ├── epoll_helper.h │ │ ├── gen_mch_tables.h │ │ ├── int_helpers.h │ │ ├── interfaces_common.h │ │ ├── liblte_security.h │ │ ├── log_helper.h │ │ ├── mac_pcap.h │ │ ├── mac_pcap_base.h │ │ ├── mac_pcap_net.h │ │ ├── metrics_hub.h │ │ ├── multiqueue.h │ │ ├── nas_pcap.h │ │ ├── netsource_handler.h │ │ ├── network_utils.h │ │ ├── ngap_pcap.h │ │ ├── pcap.h │ │ ├── phy_cfg_nr.h │ │ ├── phy_cfg_nr_default.h │ │ ├── rlc_pcap.h │ │ ├── rwlock_guard.h │ │ ├── s1ap_pcap.h │ │ ├── s3g.h │ │ ├── security.h │ │ ├── slot_point.h │ │ ├── ssl.h │ │ ├── stack_procedure.h │ │ ├── standard_streams.h │ │ ├── string_helpers.h │ │ ├── task_scheduler.h │ │ ├── test_common.h │ │ ├── test_pcap.h │ │ ├── thread_pool.h │ │ ├── threads.h │ │ ├── time_prof.h │ │ ├── timeout.h │ │ ├── timers.h │ │ ├── trace.h │ │ ├── tsan_options.h │ │ ├── tti_point.h │ │ ├── tti_sempahore.h │ │ ├── tti_sync.h │ │ ├── tti_sync_cv.h │ │ └── zuc.h │ │ ├── config.h │ │ ├── interfaces │ │ ├── e2_metrics_interface.h │ │ ├── enb_command_interface.h │ │ ├── enb_gtpu_interfaces.h │ │ ├── enb_interfaces.h │ │ ├── enb_mac_interfaces.h │ │ ├── enb_metrics_interface.h │ │ ├── enb_pdcp_interfaces.h │ │ ├── enb_phy_interfaces.h │ │ ├── enb_rlc_interfaces.h │ │ ├── enb_rrc_interface_mac.h │ │ ├── enb_rrc_interface_pdcp.h │ │ ├── enb_rrc_interface_rlc.h │ │ ├── enb_rrc_interface_s1ap.h │ │ ├── enb_rrc_interface_types.h │ │ ├── enb_s1ap_interfaces.h │ │ ├── enb_time_interface.h │ │ ├── enb_x2_interfaces.h │ │ ├── epc_interfaces.h │ │ ├── gnb_interfaces.h │ │ ├── gnb_mac_interfaces.h │ │ ├── gnb_ngap_interfaces.h │ │ ├── gnb_rrc_nr_interfaces.h │ │ ├── mac_interface_types.h │ │ ├── pdcp_interface_types.h │ │ ├── phy_common_interface.h │ │ ├── phy_interface_types.h │ │ ├── radio_interfaces.h │ │ ├── rlc_interface_types.h │ │ ├── rrc_interface_types.h │ │ ├── ue_gw_interfaces.h │ │ ├── ue_interfaces.h │ │ ├── ue_mac_interfaces.h │ │ ├── ue_nas_interfaces.h │ │ ├── ue_nr_interfaces.h │ │ ├── ue_pdcp_interfaces.h │ │ ├── ue_phy_interfaces.h │ │ ├── ue_rlc_interfaces.h │ │ ├── ue_rrc_interfaces.h │ │ ├── ue_sdap_interfaces.h │ │ └── ue_usim_interfaces.h │ │ ├── mac │ │ ├── bsr_nr.h │ │ ├── mac_rar_pdu_nr.h │ │ ├── mac_sch_pdu_nr.h │ │ ├── pdu.h │ │ └── pdu_queue.h │ │ ├── phy │ │ ├── agc │ │ │ └── agc.h │ │ ├── cfr │ │ │ └── cfr.h │ │ ├── ch_estimation │ │ │ ├── cedron_freq_estimator.h │ │ │ ├── chest_common.h │ │ │ ├── chest_dl.h │ │ │ ├── chest_dl_nbiot.h │ │ │ ├── chest_sl.h │ │ │ ├── chest_ul.h │ │ │ ├── csi_rs.h │ │ │ ├── csi_rs_cfg.h │ │ │ ├── dmrs_pbch.h │ │ │ ├── dmrs_pdcch.h │ │ │ ├── dmrs_pucch.h │ │ │ ├── dmrs_sch.h │ │ │ ├── refsignal_dl.h │ │ │ ├── refsignal_dl_nbiot.h │ │ │ ├── refsignal_ul.h │ │ │ └── wiener_dl.h │ │ ├── channel │ │ │ ├── ch_awgn.h │ │ │ ├── channel.h │ │ │ ├── delay.h │ │ │ ├── fading.h │ │ │ ├── hst.h │ │ │ └── rlf.h │ │ ├── common │ │ │ ├── phy_common.h │ │ │ ├── phy_common_nr.h │ │ │ ├── phy_common_sl.h │ │ │ ├── sequence.h │ │ │ ├── sliv.h │ │ │ ├── timestamp.h │ │ │ └── zc_sequence.h │ │ ├── dft │ │ │ ├── dft.h │ │ │ ├── dft_precoding.h │ │ │ └── ofdm.h │ │ ├── enb │ │ │ ├── enb_dl.h │ │ │ └── enb_ul.h │ │ ├── fec │ │ │ ├── block │ │ │ │ └── block.h │ │ │ ├── cbsegm.h │ │ │ ├── convolutional │ │ │ │ ├── convcoder.h │ │ │ │ ├── rm_conv.h │ │ │ │ └── viterbi.h │ │ │ ├── crc.h │ │ │ ├── ldpc │ │ │ │ ├── base_graph.h │ │ │ │ ├── ldpc_common.h │ │ │ │ ├── ldpc_decoder.h │ │ │ │ ├── ldpc_encoder.h │ │ │ │ └── ldpc_rm.h │ │ │ ├── polar │ │ │ │ ├── polar_chanalloc.h │ │ │ │ ├── polar_code.h │ │ │ │ ├── polar_decoder.h │ │ │ │ ├── polar_encoder.h │ │ │ │ ├── polar_interleaver.h │ │ │ │ ├── polar_rm.h │ │ │ │ └── test │ │ │ │ │ ├── polar_sets.h │ │ │ │ │ └── subchannel_allocation.h │ │ │ ├── softbuffer.h │ │ │ └── turbo │ │ │ │ ├── rm_turbo.h │ │ │ │ ├── tc_interl.h │ │ │ │ ├── turbocoder.h │ │ │ │ ├── turbodecoder.h │ │ │ │ ├── turbodecoder_gen.h │ │ │ │ ├── turbodecoder_impl.h │ │ │ │ ├── turbodecoder_iter.h │ │ │ │ ├── turbodecoder_sse.h │ │ │ │ └── turbodecoder_win.h │ │ ├── gnb │ │ │ ├── gnb_dl.h │ │ │ └── gnb_ul.h │ │ ├── io │ │ │ ├── binsource.h │ │ │ ├── filesink.h │ │ │ ├── filesource.h │ │ │ ├── format.h │ │ │ ├── netsink.h │ │ │ └── netsource.h │ │ ├── mimo │ │ │ ├── layermap.h │ │ │ └── precoding.h │ │ ├── modem │ │ │ ├── demod_hard.h │ │ │ ├── demod_soft.h │ │ │ ├── evm.h │ │ │ ├── mod.h │ │ │ └── modem_table.h │ │ ├── phch │ │ │ ├── cqi.h │ │ │ ├── csi.h │ │ │ ├── csi_cfg.h │ │ │ ├── dci.h │ │ │ ├── dci_nbiot.h │ │ │ ├── dci_nr.h │ │ │ ├── harq_ack.h │ │ │ ├── harq_ack_cfg.h │ │ │ ├── mib_sl.h │ │ │ ├── npbch.h │ │ │ ├── npdcch.h │ │ │ ├── npdsch.h │ │ │ ├── npdsch_cfg.h │ │ │ ├── pbch.h │ │ │ ├── pbch_msg_nr.h │ │ │ ├── pbch_nr.h │ │ │ ├── pcfich.h │ │ │ ├── pdcch.h │ │ │ ├── pdcch_cfg_nr.h │ │ │ ├── pdcch_nr.h │ │ │ ├── pdsch.h │ │ │ ├── pdsch_cfg.h │ │ │ ├── pdsch_nr.h │ │ │ ├── phch_cfg_nr.h │ │ │ ├── phich.h │ │ │ ├── pmch.h │ │ │ ├── prach.h │ │ │ ├── psbch.h │ │ │ ├── pscch.h │ │ │ ├── pssch.h │ │ │ ├── pucch.h │ │ │ ├── pucch_cfg.h │ │ │ ├── pucch_cfg_nr.h │ │ │ ├── pucch_nr.h │ │ │ ├── pucch_proc.h │ │ │ ├── pusch.h │ │ │ ├── pusch_cfg.h │ │ │ ├── pusch_nr.h │ │ │ ├── ra.h │ │ │ ├── ra_dl.h │ │ │ ├── ra_dl_nr.h │ │ │ ├── ra_nbiot.h │ │ │ ├── ra_nr.h │ │ │ ├── ra_sl.h │ │ │ ├── ra_ul.h │ │ │ ├── ra_ul_nr.h │ │ │ ├── regs.h │ │ │ ├── sch.h │ │ │ ├── sch_cfg_nr.h │ │ │ ├── sch_nr.h │ │ │ ├── sci.h │ │ │ ├── uci.h │ │ │ ├── uci_cfg.h │ │ │ ├── uci_cfg_nr.h │ │ │ └── uci_nr.h │ │ ├── resampling │ │ │ ├── decim.h │ │ │ ├── interp.h │ │ │ ├── resample_arb.h │ │ │ └── resampler.h │ │ ├── rf │ │ │ ├── rf.h │ │ │ └── rf_utils.h │ │ ├── scrambling │ │ │ └── scrambling.h │ │ ├── sync │ │ │ ├── cfo.h │ │ │ ├── cp.h │ │ │ ├── npss.h │ │ │ ├── nsss.h │ │ │ ├── pss.h │ │ │ ├── pss_nr.h │ │ │ ├── psss.h │ │ │ ├── refsignal_dl_sync.h │ │ │ ├── sfo.h │ │ │ ├── ssb.h │ │ │ ├── sss.h │ │ │ ├── sss_nr.h │ │ │ ├── ssss.h │ │ │ ├── sync.h │ │ │ └── sync_nbiot.h │ │ ├── ue │ │ │ ├── ngscope.h │ │ │ ├── ngscope_dci.h │ │ │ ├── ngscope_search_space.h │ │ │ ├── ngscope_st.h │ │ │ ├── ngscope_tree.h │ │ │ ├── ngscope_tree.h_bkup │ │ │ ├── ue_cell_search.h │ │ │ ├── ue_cell_search_nbiot.h │ │ │ ├── ue_dl.h │ │ │ ├── ue_dl_nbiot.h │ │ │ ├── ue_dl_nr.h │ │ │ ├── ue_mib.h │ │ │ ├── ue_mib_nbiot.h │ │ │ ├── ue_mib_sl.h │ │ │ ├── ue_phy.h │ │ │ ├── ue_sync.h │ │ │ ├── ue_sync_nbiot.h │ │ │ ├── ue_sync_nr.h │ │ │ ├── ue_ul.h │ │ │ └── ue_ul_nr.h │ │ └── utils │ │ │ ├── bit.h │ │ │ ├── cexptab.h │ │ │ ├── convolution.h │ │ │ ├── debug.h │ │ │ ├── filter.h │ │ │ ├── mat.h │ │ │ ├── phy_logger.h │ │ │ ├── primes.h │ │ │ ├── random.h │ │ │ ├── re_pattern.h │ │ │ ├── ringbuffer.h │ │ │ ├── simd.h │ │ │ ├── vector.h │ │ │ └── vector_simd.h │ │ ├── radio │ │ ├── channel_mapping.h │ │ ├── radio.h │ │ ├── radio_base.h │ │ ├── radio_dummy.h │ │ ├── radio_metrics.h │ │ ├── radio_null.h │ │ ├── rf_buffer.h │ │ └── rf_timestamp.h │ │ ├── rlc │ │ ├── bearer_mem_pool.h │ │ ├── rlc.h │ │ ├── rlc_am_base.h │ │ ├── rlc_am_data_structs.h │ │ ├── rlc_am_lte.h │ │ ├── rlc_am_lte_packing.h │ │ ├── rlc_am_nr.h │ │ ├── rlc_am_nr_packing.h │ │ ├── rlc_common.h │ │ ├── rlc_metrics.h │ │ ├── rlc_tm.h │ │ ├── rlc_um_base.h │ │ ├── rlc_um_lte.h │ │ └── rlc_um_nr.h │ │ ├── rrc │ │ └── rrc_common.h │ │ ├── srslog │ │ ├── bundled │ │ │ └── fmt │ │ │ │ ├── LICENSE.rst │ │ │ │ ├── chrono.h │ │ │ │ ├── color.h │ │ │ │ ├── compile.h │ │ │ │ ├── core.h │ │ │ │ ├── format-inl.h │ │ │ │ ├── format.h │ │ │ │ ├── locale.h │ │ │ │ ├── os.h │ │ │ │ ├── ostream.h │ │ │ │ ├── posix.h │ │ │ │ ├── printf.h │ │ │ │ └── ranges.h │ │ ├── context.h │ │ ├── detail │ │ │ ├── log_backend.h │ │ │ ├── log_entry.h │ │ │ ├── log_entry_metadata.h │ │ │ └── support │ │ │ │ ├── any.h │ │ │ │ ├── backend_capacity.h │ │ │ │ ├── dyn_arg_store_pool.h │ │ │ │ ├── error_string.h │ │ │ │ ├── memory_buffer.h │ │ │ │ ├── thread_utils.h │ │ │ │ ├── tmp_utils.h │ │ │ │ └── work_queue.h │ │ ├── event_trace.h │ │ ├── formatter.h │ │ ├── log_channel.h │ │ ├── logger.h │ │ ├── shared_types.h │ │ ├── sink.h │ │ ├── srslog.h │ │ └── srslog_c.h │ │ ├── srsran.h │ │ ├── support │ │ ├── emergency_handlers.h │ │ ├── signal_handler.h │ │ ├── srsran_assert.h │ │ └── srsran_test.h │ │ ├── system │ │ ├── sys_metrics.h │ │ └── sys_metrics_processor.h │ │ ├── test │ │ └── ue_test_interfaces.h │ │ ├── upper │ │ ├── byte_buffer_queue.h │ │ ├── gtpu.h │ │ ├── ipv6.h │ │ ├── pdcp.h │ │ ├── pdcp_entity_base.h │ │ ├── pdcp_entity_lte.h │ │ ├── pdcp_entity_nr.h │ │ └── pdcp_metrics.h │ │ └── version.h.in ├── src │ ├── CMakeLists.txt │ ├── asn1 │ │ ├── CMakeLists.txt │ │ ├── asn1_utils.cc │ │ ├── e2ap.cpp │ │ ├── e2sm.cpp │ │ ├── e2sm_kpm.cpp │ │ ├── e2sm_kpm_v2.cpp │ │ ├── gtpc.cc │ │ ├── liblte_common.cc │ │ ├── liblte_mme.cc │ │ ├── nas_5g_ies.cc │ │ ├── nas_5g_msg.cc │ │ ├── nas_5g_utils.cc │ │ ├── ngap.cc │ │ ├── rrc.cc │ │ ├── rrc │ │ │ ├── bcch_msg.cc │ │ │ ├── common.cc │ │ │ ├── common_ext.cc │ │ │ ├── dl_ccch_msg.cc │ │ │ ├── dl_dcch_msg.cc │ │ │ ├── ho_cmd.cc │ │ │ ├── meascfg.cc │ │ │ ├── paging.cc │ │ │ ├── phy_ded.cc │ │ │ ├── rr_common.cc │ │ │ ├── rr_ded.cc │ │ │ ├── security.cc │ │ │ ├── si.cc │ │ │ ├── uecap.cc │ │ │ ├── ul_ccch_msg.cc │ │ │ └── ul_dcch_msg.cc │ │ ├── rrc_nbiot.cc │ │ ├── rrc_nr.cc │ │ ├── rrc_nr_utils.cc │ │ ├── rrc_utils.cc │ │ ├── s1ap.cc │ │ └── s1ap_utils.cc │ ├── common │ │ ├── CMakeLists.txt │ │ ├── arch_select.cc │ │ ├── backtrace.c │ │ ├── band_helper.cc │ │ ├── bearer_manager.cc │ │ ├── buffer_pool.cc │ │ ├── byte_buffer.cc │ │ ├── crash_handler.cc │ │ ├── enb_events.cc │ │ ├── gen_mch_tables.c │ │ ├── liblte_security.cc │ │ ├── mac_pcap.cc │ │ ├── mac_pcap_base.cc │ │ ├── mac_pcap_net.cc │ │ ├── nas_pcap.cc │ │ ├── network_utils.cc │ │ ├── ngap_pcap.cc │ │ ├── pcap.c │ │ ├── phy_cfg_nr.cc │ │ ├── phy_cfg_nr_default.cc │ │ ├── rlc_pcap.cc │ │ ├── rrc_common.cc │ │ ├── s1ap_pcap.cc │ │ ├── s3g.cc │ │ ├── security.cc │ │ ├── standard_streams.cc │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── band_helper_test.cc │ │ │ ├── thread_pool_test.cc │ │ │ └── thread_test.cc │ │ ├── thread_pool.cc │ │ ├── threads.c │ │ ├── time_prof.cc │ │ ├── tti_sync_cv.cc │ │ ├── version.c │ │ └── zuc.cc │ ├── gtpu │ │ ├── CMakeLists.txt │ │ └── gtpu.cc │ ├── mac │ │ ├── CMakeLists.txt │ │ ├── mac_rar_pdu_nr.cc │ │ ├── mac_sch_pdu_nr.cc │ │ ├── pdu.cc │ │ ├── pdu_queue.cc │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── mac_pcap_test.cc │ │ │ ├── mac_pdu_nr_test.cc │ │ │ └── pdu_test.cc │ ├── pdcp │ │ ├── CMakeLists.txt │ │ ├── pdcp.cc │ │ ├── pdcp_entity_base.cc │ │ ├── pdcp_entity_lte.cc │ │ └── pdcp_entity_nr.cc │ ├── phy │ │ ├── CMakeLists.txt │ │ ├── agc │ │ │ ├── CMakeLists.txt │ │ │ └── agc.c │ │ ├── cfr │ │ │ ├── CMakeLists.txt │ │ │ ├── cfr.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cfr_test.c │ │ ├── ch_estimation │ │ │ ├── CMakeLists.txt │ │ │ ├── cedron_freq_estimator.c │ │ │ ├── chest_common.c │ │ │ ├── chest_dl.c │ │ │ ├── chest_dl_nbiot.c │ │ │ ├── chest_sl.c │ │ │ ├── chest_ul.c │ │ │ ├── csi_rs.c │ │ │ ├── dmrs_pbch.c │ │ │ ├── dmrs_pdcch.c │ │ │ ├── dmrs_pucch.c │ │ │ ├── dmrs_sch.c │ │ │ ├── refsignal_dl.c │ │ │ ├── refsignal_dl_nbiot.c │ │ │ ├── refsignal_ul.c │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chest_nbiot_test_dl.c │ │ │ │ ├── chest_test_dl.c │ │ │ │ ├── chest_test_sl.c │ │ │ │ ├── chest_test_srs.c │ │ │ │ ├── chest_test_ul.c │ │ │ │ ├── csi_rs_pattern_test.c │ │ │ │ ├── csi_rs_test.c │ │ │ │ ├── dmrs_pdcch_test.c │ │ │ │ ├── dmrs_pdsch_test.c │ │ │ │ └── refsignal_ul_test.c │ │ │ └── wiener_dl.c │ │ ├── channel │ │ │ ├── CMakeLists.txt │ │ │ ├── ch_awgn.c │ │ │ ├── channel.cc │ │ │ ├── delay.c │ │ │ ├── fading.c │ │ │ ├── gauss.c │ │ │ ├── gauss.h │ │ │ ├── hst.c │ │ │ ├── rlf.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── awgn_channel_test.c │ │ │ │ ├── delay_channel_test.c │ │ │ │ ├── fading_channel_test.c │ │ │ │ └── hst_channel_test.c │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── phy_common.c │ │ │ ├── phy_common_nr.c │ │ │ ├── phy_common_sl.c │ │ │ ├── sequence.c │ │ │ ├── sliv.c │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── phy_common_test.c │ │ │ │ ├── sequence_test.c │ │ │ │ └── sliv_test.c │ │ │ ├── timestamp.c │ │ │ └── zc_sequence.c │ │ ├── dft │ │ │ ├── CMakeLists.txt │ │ │ ├── dft_fftw.c │ │ │ ├── dft_precoding.c │ │ │ ├── ofdm.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ofdm_test.c │ │ ├── enb │ │ │ ├── CMakeLists.txt │ │ │ ├── enb_dl.c │ │ │ └── enb_ul.c │ │ ├── fec │ │ │ ├── CMakeLists.txt │ │ │ ├── block │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── block.c │ │ │ │ └── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── block_test.c │ │ │ ├── cbsegm.c │ │ │ ├── convolutional │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── convcoder.c │ │ │ │ ├── parity.c │ │ │ │ ├── parity.h │ │ │ │ ├── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── viterbi_test.c │ │ │ │ │ └── viterbi_test.h │ │ │ │ ├── viterbi.c │ │ │ │ ├── viterbi37.h │ │ │ │ ├── viterbi37_avx2.c │ │ │ │ ├── viterbi37_avx2_16bit.c │ │ │ │ ├── viterbi37_neon.c │ │ │ │ ├── viterbi37_port.c │ │ │ │ └── viterbi37_sse.c │ │ │ ├── crc.c │ │ │ ├── ldpc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── base_graph.c │ │ │ │ ├── ldpc_avx2_consts.h │ │ │ │ ├── ldpc_avx512_consts.h │ │ │ │ ├── ldpc_dec_all.h │ │ │ │ ├── ldpc_dec_c.c │ │ │ │ ├── ldpc_dec_c_avx2.c │ │ │ │ ├── ldpc_dec_c_avx2_flood.c │ │ │ │ ├── ldpc_dec_c_avx2long.c │ │ │ │ ├── ldpc_dec_c_avx2long_flood.c │ │ │ │ ├── ldpc_dec_c_avx512.c │ │ │ │ ├── ldpc_dec_c_avx512long.c │ │ │ │ ├── ldpc_dec_c_avx512long_flood.c │ │ │ │ ├── ldpc_dec_c_flood.c │ │ │ │ ├── ldpc_dec_f.c │ │ │ │ ├── ldpc_dec_s.c │ │ │ │ ├── ldpc_decoder.c │ │ │ │ ├── ldpc_enc_all.h │ │ │ │ ├── ldpc_enc_avx2.c │ │ │ │ ├── ldpc_enc_avx2long.c │ │ │ │ ├── ldpc_enc_avx512.c │ │ │ │ ├── ldpc_enc_avx512long.c │ │ │ │ ├── ldpc_enc_c.c │ │ │ │ ├── ldpc_encoder.c │ │ │ │ ├── ldpc_rm.c │ │ │ │ └── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── examplesBG1.dat │ │ │ │ │ ├── examplesBG2.dat │ │ │ │ │ ├── ldpc_chain_test.c │ │ │ │ │ ├── ldpc_dec_avx2_test.c │ │ │ │ │ ├── ldpc_dec_avx512_test.c │ │ │ │ │ ├── ldpc_dec_c_test.c │ │ │ │ │ ├── ldpc_dec_s_test.c │ │ │ │ │ ├── ldpc_dec_test.c │ │ │ │ │ ├── ldpc_enc_avx2_test.c │ │ │ │ │ ├── ldpc_enc_avx512_test.c │ │ │ │ │ ├── ldpc_enc_test.c │ │ │ │ │ ├── ldpc_rm_chain_test.c │ │ │ │ │ └── ldpc_rm_test.c │ │ │ ├── polar │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── polar_chanalloc.c │ │ │ │ ├── polar_code.c │ │ │ │ ├── polar_decoder.c │ │ │ │ ├── polar_decoder_ssc_all.c │ │ │ │ ├── polar_decoder_ssc_all.h │ │ │ │ ├── polar_decoder_ssc_c.c │ │ │ │ ├── polar_decoder_ssc_c.h │ │ │ │ ├── polar_decoder_ssc_c_avx2.c │ │ │ │ ├── polar_decoder_ssc_c_avx2.h │ │ │ │ ├── polar_decoder_ssc_f.c │ │ │ │ ├── polar_decoder_ssc_f.h │ │ │ │ ├── polar_decoder_ssc_s.c │ │ │ │ ├── polar_decoder_ssc_s.h │ │ │ │ ├── polar_decoder_vector.c │ │ │ │ ├── polar_decoder_vector.h │ │ │ │ ├── polar_decoder_vector_avx2.c │ │ │ │ ├── polar_decoder_vector_avx2.h │ │ │ │ ├── polar_encoder.c │ │ │ │ ├── polar_encoder_avx2.c │ │ │ │ ├── polar_encoder_avx2.h │ │ │ │ ├── polar_encoder_pipelined.c │ │ │ │ ├── polar_encoder_pipelined.h │ │ │ │ ├── polar_interleaver.c │ │ │ │ ├── polar_rm.c │ │ │ │ └── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── polar_chain_test.c │ │ │ │ │ ├── polar_interleaver_gold.h │ │ │ │ │ ├── polar_interleaver_test.c │ │ │ │ │ ├── polar_sets.c │ │ │ │ │ ├── polar_sets.h │ │ │ │ │ ├── subchannel_allocation.c │ │ │ │ │ └── subchannel_allocation.h │ │ │ ├── softbuffer.c │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc_test.c │ │ │ │ └── crc_test.h │ │ │ ├── turbo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rm_conv.c │ │ │ │ ├── rm_turbo.c │ │ │ │ ├── tc_interl_lte.c │ │ │ │ ├── tc_interl_umts.c │ │ │ │ ├── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── rm_conv_test.c │ │ │ │ │ ├── rm_turbo_test.c │ │ │ │ │ ├── turbocoder_test.c │ │ │ │ │ ├── turbodecoder_test.c │ │ │ │ │ └── turbodecoder_test.h │ │ │ │ ├── turbocoder.c │ │ │ │ ├── turbodecoder.c │ │ │ │ ├── turbodecoder_gen.c │ │ │ │ └── turbodecoder_sse.c │ │ │ ├── utils_avx2.h │ │ │ └── utils_avx512.h │ │ ├── gnb │ │ │ ├── CMakeLists.txt │ │ │ ├── gnb_dl.c │ │ │ └── gnb_ul.c │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── binsource.c │ │ │ ├── filesink.c │ │ │ ├── filesource.c │ │ │ ├── netsink.c │ │ │ └── netsource.c │ │ ├── mimo │ │ │ ├── CMakeLists.txt │ │ │ ├── layermap.c │ │ │ ├── precoding.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── layermap_test.c │ │ │ │ ├── pmi_select_test.c │ │ │ │ ├── pmi_select_test.h │ │ │ │ └── precoder_test.c │ │ ├── modem │ │ │ ├── CMakeLists.txt │ │ │ ├── demod_hard.c │ │ │ ├── demod_soft.c │ │ │ ├── hard_demod_lte.c │ │ │ ├── hard_demod_lte.h │ │ │ ├── lte_tables.c │ │ │ ├── lte_tables.h │ │ │ ├── mod.c │ │ │ ├── modem_table.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── modem_test.c │ │ │ │ └── soft_demod_test.c │ │ ├── phch │ │ │ ├── CMakeLists.txt │ │ │ ├── cqi.c │ │ │ ├── csi.c │ │ │ ├── dci.c │ │ │ ├── dci_nbiot.c │ │ │ ├── dci_nr.c │ │ │ ├── harq_ack.c │ │ │ ├── mib_sl.c │ │ │ ├── npbch.c │ │ │ ├── npdcch.c │ │ │ ├── npdsch.c │ │ │ ├── pbch.c │ │ │ ├── pbch_msg_nr.c │ │ │ ├── pbch_nr.c │ │ │ ├── pcfich.c │ │ │ ├── pdcch.c │ │ │ ├── pdcch_nr.c │ │ │ ├── pdsch.c │ │ │ ├── pdsch_nr.c │ │ │ ├── phch_cfg_nr.c │ │ │ ├── phich.c │ │ │ ├── pmch.c │ │ │ ├── prach.c │ │ │ ├── prach_tables.h │ │ │ ├── prb_dl.c │ │ │ ├── prb_dl.h │ │ │ ├── psbch.c │ │ │ ├── pscch.c │ │ │ ├── pssch.c │ │ │ ├── pucch.c │ │ │ ├── pucch_cfg_nr.c │ │ │ ├── pucch_nr.c │ │ │ ├── pucch_proc.c │ │ │ ├── pusch.c │ │ │ ├── pusch_nr.c │ │ │ ├── ra.c │ │ │ ├── ra_dl.c │ │ │ ├── ra_dl_nr.c │ │ │ ├── ra_helper.h │ │ │ ├── ra_nbiot.c │ │ │ ├── ra_nr.c │ │ │ ├── ra_sl.c │ │ │ ├── ra_ul.c │ │ │ ├── ra_ul_nr.c │ │ │ ├── regs.c │ │ │ ├── sch.c │ │ │ ├── sch_nr.c │ │ │ ├── sci.c │ │ │ ├── sequences.c │ │ │ ├── tbs_tables.h │ │ │ ├── tbs_tables_nbiot.h │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dci_nbiot_test.c │ │ │ │ ├── dci_nr_test.c │ │ │ │ ├── dci_test.c │ │ │ │ ├── mib_nr_test.c │ │ │ │ ├── npbch_file_test.c │ │ │ │ ├── npbch_test.c │ │ │ │ ├── npdcch_file_test.c │ │ │ │ ├── npdcch_test.c │ │ │ │ ├── npdsch_npdcch_file_test.c │ │ │ │ ├── npdsch_test.c │ │ │ │ ├── pbch_file_test.c │ │ │ │ ├── pbch_test.c │ │ │ │ ├── pcfich_file_test.c │ │ │ │ ├── pcfich_test.c │ │ │ │ ├── pdcch_file_test.c │ │ │ │ ├── pdcch_nr_test.c │ │ │ │ ├── pdcch_test.c │ │ │ │ ├── pdsch_nr_test.c │ │ │ │ ├── pdsch_pdcch_file_test.c │ │ │ │ ├── pdsch_test.c │ │ │ │ ├── phich_file_test.c │ │ │ │ ├── phich_test.c │ │ │ │ ├── pmch_100prbs_MCS2_SR0.bin │ │ │ │ ├── pmch_file_test.c │ │ │ │ ├── pmch_test.c │ │ │ │ ├── prach_nr_test_perf.c │ │ │ │ ├── prach_test.c │ │ │ │ ├── prach_test_multi.c │ │ │ │ ├── prach_test_usrp.c │ │ │ │ ├── psbch_file_test.c │ │ │ │ ├── psbch_test.c │ │ │ │ ├── pscch_test.c │ │ │ │ ├── pssch_pscch_file_test.c │ │ │ │ ├── pssch_test.c │ │ │ │ ├── pucch_nr_test.c │ │ │ │ ├── pucch_test.c │ │ │ │ ├── pusch_nr_bler_test.c │ │ │ │ ├── pusch_nr_test.c │ │ │ │ ├── pusch_test.c │ │ │ │ ├── ra_nr_test.c │ │ │ │ ├── sch_nr_test.c │ │ │ │ ├── signal.1.92M.amar.dat │ │ │ │ ├── signal.1.92M.dat │ │ │ │ ├── signal.10M.dat │ │ │ │ ├── signal_nbiot_amari_nid0_sfn514_sib2.bin │ │ │ │ ├── signal_nbiot_dci_formatN0_L_1_nid0_tti_8624_rnti_0x102.bin │ │ │ │ ├── signal_nbiot_dci_formatN1_nid0_tti_5461_rnti_0x89.bin │ │ │ │ ├── signal_nbiot_nid256_r14_sf0.bin │ │ │ │ ├── signal_nbiot_nid257_r13_sf0.bin │ │ │ │ ├── signal_nbiot_nid257_r14_sf0.bin │ │ │ │ ├── signal_sidelink_cmw500_f5.92e9_s11.52e6_50prb_0offset_1ms.dat │ │ │ │ ├── signal_sidelink_cmw500_f5.92e9_s11.52e6_50prb_slss_id169.dat │ │ │ │ ├── signal_sidelink_huawei_s11.52e6_50prb_10prb_offset_with_retx.dat │ │ │ │ ├── signal_sidelink_ideal_tm2_p100_c335_s30.72e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm2_p15_c84_s3.84e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm2_p25_c168_s7.68e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm2_p50_c252_s15.36e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm2_p50_c252_s15.36e6_ext.dat │ │ │ │ ├── signal_sidelink_ideal_tm2_p6_c0_s1.92e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm4_p100_c335_size10_num10_cshift0_s30.72e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm4_p15_c84_size5_num3_cshift0_s3.84e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm4_p25_c168_size5_num5_cshift0_s7.68e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm4_p50_c252_size10_num5_cshift0_s15.36e6.dat │ │ │ │ ├── signal_sidelink_ideal_tm4_p6_c0_size6_num1_cshift0_s1.92e6.dat │ │ │ │ ├── signal_sidelink_qc9150_f5.92e9_s15.36e6_50prb_20offset.dat │ │ │ │ ├── signal_sidelink_uxm_s15.36e6_50prb_0prb_offset_mcs12.dat │ │ │ │ ├── signal_sidelink_uxm_s15.36e6_50prb_0prb_offset_mcs28_padding_5ms.dat │ │ │ │ ├── signal_sidelink_uxm_s23.04e6_100prb_1prb_offset_mcs12_padding.dat │ │ │ │ └── signal_sidelink_uxm_s30.72e6_100prb_1prb_offset_mcs12_its.dat │ │ │ ├── uci.c │ │ │ └── uci_nr.c │ │ ├── resampling │ │ │ ├── CMakeLists.txt │ │ │ ├── decim.c │ │ │ ├── interp.c │ │ │ ├── resample_arb.c │ │ │ ├── resampler.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── resample_arb_bench.c │ │ │ │ ├── resample_arb_test.c │ │ │ │ └── resampler_test.c │ │ ├── rf │ │ │ ├── CMakeLists.txt │ │ │ ├── rf_blade_imp.c │ │ │ ├── rf_blade_imp.h │ │ │ ├── rf_dev.h │ │ │ ├── rf_file_imp.c │ │ │ ├── rf_file_imp.h │ │ │ ├── rf_file_imp_rx.c │ │ │ ├── rf_file_imp_trx.h │ │ │ ├── rf_file_imp_tx.c │ │ │ ├── rf_file_test.c │ │ │ ├── rf_helper.h │ │ │ ├── rf_imp.c │ │ │ ├── rf_plugin.h │ │ │ ├── rf_skiq_imp.c │ │ │ ├── rf_skiq_imp.h │ │ │ ├── rf_skiq_imp_card.c │ │ │ ├── rf_skiq_imp_card.h │ │ │ ├── rf_skiq_imp_cfg.h │ │ │ ├── rf_skiq_imp_port.c │ │ │ ├── rf_skiq_imp_port.h │ │ │ ├── rf_soapy_imp.c │ │ │ ├── rf_soapy_imp.h │ │ │ ├── rf_uhd_generic.h │ │ │ ├── rf_uhd_imp.cc │ │ │ ├── rf_uhd_imp.h │ │ │ ├── rf_uhd_rfnoc.h │ │ │ ├── rf_uhd_safe.h │ │ │ ├── rf_utils.c │ │ │ ├── rf_zmq_imp.c │ │ │ ├── rf_zmq_imp.h │ │ │ ├── rf_zmq_imp_rx.c │ │ │ ├── rf_zmq_imp_trx.h │ │ │ ├── rf_zmq_imp_tx.c │ │ │ ├── rf_zmq_test.c │ │ │ ├── rfnoc_test.cc │ │ │ └── skiq_pps_test.c │ │ ├── scrambling │ │ │ ├── CMakeLists.txt │ │ │ ├── scrambling.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── scrambling_test.c │ │ ├── sync │ │ │ ├── CMakeLists.txt │ │ │ ├── cfo.c │ │ │ ├── cp.c │ │ │ ├── find_sss.c │ │ │ ├── gen_sss.c │ │ │ ├── npss.c │ │ │ ├── nsss.c │ │ │ ├── pss.c │ │ │ ├── pss_nr.c │ │ │ ├── psss.c │ │ │ ├── refsignal_dl_sync.c │ │ │ ├── sfo.c │ │ │ ├── ssb.c │ │ │ ├── sss.c │ │ │ ├── sss_nr.c │ │ │ ├── ssss.c │ │ │ ├── sync.c │ │ │ ├── sync_nbiot.c │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cfo_test.c │ │ │ │ ├── n78.fo35028.fs4608M.data │ │ │ │ ├── n78.fo367536.fs6144M.data │ │ │ │ ├── npss_file.c │ │ │ │ ├── npss_test.c │ │ │ │ ├── npss_usrp.c │ │ │ │ ├── nsss_test.c │ │ │ │ ├── nsss_usrp.c │ │ │ │ ├── pss_file.c │ │ │ │ ├── pss_usrp.c │ │ │ │ ├── psss_file_test.c │ │ │ │ ├── ssb_decode_test.c │ │ │ │ ├── ssb_file_test.c │ │ │ │ ├── ssb_grid_test.c │ │ │ │ ├── ssb_measure_test.c │ │ │ │ ├── sync_nbiot_test.c │ │ │ │ ├── sync_sl_test.c │ │ │ │ └── sync_test.c │ │ ├── ue │ │ │ ├── .ue_dl.c.swp │ │ │ ├── CMakeLists.txt │ │ │ ├── ngscope.c │ │ │ ├── ngscope.c_bkup │ │ │ ├── ngscope_dci.c │ │ │ ├── ngscope_search_space.c │ │ │ ├── ngscope_st.c │ │ │ ├── ngscope_tree.c │ │ │ ├── ngscope_tree.c_bkup │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gen_ack_nr_test.c │ │ │ │ ├── gen_ack_test.c │ │ │ │ ├── pucch_resource_test.c │ │ │ │ ├── ue_dl_nbiot_test.c │ │ │ │ ├── ue_dl_nr_file_test.cc │ │ │ │ ├── ue_dl_nr_pci1_rb25_n0_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n1_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n2_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n3_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n4_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n5_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n6_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n7_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n8_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci1_rb25_n9_common_L1_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci500_rb52_n4_ra_L2_ncce0.dat │ │ │ │ ├── ue_dl_nr_pci500_rb52_rar_s15.36e6.dat │ │ │ │ ├── ue_dl_nr_pci500_rb52_rnti0x100_s15.36e6.dat │ │ │ │ ├── ue_dl_nr_pci500_rb52_si_coreset0_idx6_s15.36e6.dat │ │ │ │ ├── ue_dl_nr_pci500_rb52_si_coreset0_idx7_s15.36e6.dat │ │ │ │ ├── ue_mib_sync_test_nbiot_usrp.c │ │ │ │ ├── ue_sync_nr_test.c │ │ │ │ └── ue_sync_test_nbiot_usrp.c │ │ │ ├── ue_cell_search.c │ │ │ ├── ue_cell_search_nbiot.c │ │ │ ├── ue_dl.c │ │ │ ├── ue_dl_nbiot.c │ │ │ ├── ue_dl_nr.c │ │ │ ├── ue_mib.c │ │ │ ├── ue_mib_nbiot.c │ │ │ ├── ue_mib_sl.c │ │ │ ├── ue_sync.c │ │ │ ├── ue_sync_nbiot.c │ │ │ ├── ue_sync_nr.c │ │ │ ├── ue_ul.c │ │ │ └── ue_ul_nr.c │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── bit.c │ │ │ ├── cexptab.c │ │ │ ├── convolution.c │ │ │ ├── debug.c │ │ │ ├── filter.c │ │ │ ├── mat.c │ │ │ ├── phy_logger.c │ │ │ ├── primes.c │ │ │ ├── random.cpp │ │ │ ├── re_pattern.c │ │ │ ├── ringbuffer.c │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── dft_test.c │ │ │ ├── freq_est_test.c │ │ │ ├── mat_test.c │ │ │ ├── re_pattern_test.c │ │ │ ├── ring_buffer_test.c │ │ │ └── vector_test.c │ │ │ ├── vector.c │ │ │ └── vector_simd.c │ ├── radio │ │ ├── CMakeLists.txt │ │ ├── channel_mapping.cc │ │ ├── radio.cc │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark_radio.cc │ │ │ └── test_radio_rt_gain.cc │ ├── rlc │ │ ├── CMakeLists.txt │ │ ├── bearer_mem_pool.cc │ │ ├── rlc.cc │ │ ├── rlc_am_base.cc │ │ ├── rlc_am_lte.cc │ │ ├── rlc_am_lte_packing.cc │ │ ├── rlc_am_nr.cc │ │ ├── rlc_am_nr_packing.cc │ │ ├── rlc_tm.cc │ │ ├── rlc_um_base.cc │ │ ├── rlc_um_lte.cc │ │ └── rlc_um_nr.cc │ ├── srslog │ │ ├── CMakeLists.txt │ │ ├── backend_worker.cpp │ │ ├── backend_worker.h │ │ ├── bundled │ │ │ └── fmt │ │ │ │ ├── format.cc │ │ │ │ └── os.cc │ │ ├── event_trace.cpp │ │ ├── formatters │ │ │ ├── json_formatter.cpp │ │ │ ├── json_formatter.h │ │ │ ├── text_formatter.cpp │ │ │ └── text_formatter.h │ │ ├── log_backend_impl.h │ │ ├── object_repository.h │ │ ├── sinks │ │ │ ├── buffered_file_sink.h │ │ │ ├── file_sink.h │ │ │ ├── file_utils.h │ │ │ ├── stream_sink.h │ │ │ └── syslog_sink.h │ │ ├── srslog.cpp │ │ ├── srslog_c.cpp │ │ └── srslog_instance.h │ ├── support │ │ ├── CMakeLists.txt │ │ ├── emergency_handlers.cc │ │ └── signal_handler.cc │ └── system │ │ ├── CMakeLists.txt │ │ └── sys_metrics_processor.cc └── test │ ├── CMakeLists.txt │ ├── adt │ ├── CMakeLists.txt │ ├── bounded_bitset_test.cc │ ├── bounded_vector_test.cc │ ├── cached_alloc_test.cc │ ├── circular_buffer_test.cc │ ├── circular_map_test.cc │ ├── expected_test.cc │ ├── fsm_test.cc │ ├── interval_test.cc │ ├── mem_pool_test.cc │ ├── observer_test.cc │ ├── optional_array_test.cc │ ├── optional_test.cc │ ├── scope_exit_test.cc │ └── span_test.cc │ ├── asn1 │ ├── CMakeLists.txt │ ├── asn1_utils_test.cc │ ├── nas_5g_msg_test.cc │ ├── nas_decoder.cc │ ├── ngap_test.cc │ ├── rrc_asn1_decoder.cc │ ├── rrc_nr_utils_test.cc │ ├── rrc_test.cc │ ├── s1ap_test.cc │ ├── srsran_asn1_nas_test.cc │ ├── srsran_asn1_rrc_dl_ccch_test.cc │ ├── srsran_asn1_rrc_dl_dcch_test.cc │ ├── srsran_asn1_rrc_mcch_test.cc │ ├── srsran_asn1_rrc_meas_test.cc │ ├── srsran_asn1_rrc_nr_test.cc │ └── srsran_asn1_rrc_ul_dcch_test.cc │ ├── common │ ├── CMakeLists.txt │ ├── bcd_helpers_test.cc │ ├── byte_buffer_queue_test.cc │ ├── choice_type_test.cc │ ├── mac_pcap_net_test.cc │ ├── multiqueue_test.cc │ ├── network_utils_test.cc │ ├── stack_procedure_test.cc │ ├── task_scheduler_test.cc │ ├── test_eea1.cc │ ├── test_eea2.cc │ ├── test_eea3.cc │ ├── test_eia1.cc │ ├── test_eia3.cc │ ├── test_f12345.cc │ ├── test_security_kdf.cc │ ├── timeout_test.cc │ ├── timer_test.cc │ └── tti_point_test.cc │ ├── pdcp │ ├── CMakeLists.txt │ ├── pdcp_base_test.h │ ├── pdcp_lte_test.h │ ├── pdcp_lte_test_discard_sdu.cc │ ├── pdcp_lte_test_rx.cc │ ├── pdcp_lte_test_status_report.cc │ ├── pdcp_nr_test.h │ ├── pdcp_nr_test_discard_sdu.cc │ ├── pdcp_nr_test_rx.cc │ └── pdcp_nr_test_tx.cc │ ├── phy │ ├── CMakeLists.txt │ ├── phy_dl_nr_test.c │ ├── phy_dl_test.c │ └── pucch_ca_test.c │ ├── rlc │ ├── CMakeLists.txt │ ├── rlc_am_control_test.cc │ ├── rlc_am_data_test.cc │ ├── rlc_am_lte_test.cc │ ├── rlc_am_nr_pdu_test.cc │ ├── rlc_am_nr_test.cc │ ├── rlc_common_test.cc │ ├── rlc_stress_test.cc │ ├── rlc_stress_test.h │ ├── rlc_test_common.h │ ├── rlc_um_data_test.cc │ ├── rlc_um_nr_pdu_test.cc │ ├── rlc_um_nr_test.cc │ └── rlc_um_test.cc │ └── srslog │ ├── CMakeLists.txt │ ├── any_test.cpp │ ├── benchmarks │ └── frontend_latency.cpp │ ├── context_test.cpp │ ├── event_trace_test.cpp │ ├── file_sink_test.cpp │ ├── file_test_utils.h │ ├── file_utils_test.cpp │ ├── json_formatter_test.cpp │ ├── log_backend_test.cpp │ ├── log_channel_test.cpp │ ├── logger_test.cpp │ ├── srslog_test.cpp │ ├── syslog_sink_test.cpp │ ├── test_dummies.h │ ├── testing_helpers.h │ └── text_formatter_test.cpp ├── libasn4g ├── .DS_Store ├── README.md ├── headers │ └── libasn4g.h ├── source │ ├── .DS_Store │ └── libasn4g.c └── spec │ ├── .DS_Store │ └── EUTRA-RRC-Definitions.asn ├── ngscope ├── CMakeLists.txt ├── cellcfg.txt ├── config.cfg ├── config │ └── config.cfg ├── hdr │ ├── BufferPool.h │ ├── SFDecoder.h │ ├── SIBDecoder.h │ ├── ThreadPool.h │ ├── args.h │ ├── common_type_define.h │ ├── dciLib │ │ ├── .time_stamp.h.swp │ │ ├── asn_decoder.h │ │ ├── cell_status.h │ │ ├── dci_decoder.h │ │ ├── dci_log.h │ │ ├── dci_ring_buffer.h │ │ ├── dci_sink_client.h │ │ ├── dci_sink_config.h │ │ ├── dci_sink_dci_recv.h │ │ ├── dci_sink_def.h │ │ ├── dci_sink_recv_dci.h │ │ ├── dci_sink_ring_buffer.h │ │ ├── dci_sink_serv.h │ │ ├── dci_sink_sock.h │ │ ├── decode_sib.h │ │ ├── load_config.h │ │ ├── ngscope_def.h │ │ ├── ngscope_main.h │ │ ├── ngscope_util.h │ │ ├── parse_args.h │ │ ├── phich_decoder.h │ │ ├── radio.h │ │ ├── sib1_helper.h │ │ ├── skip_tti.h │ │ ├── socket.h │ │ ├── status_plot.h │ │ ├── status_tracker.h │ │ ├── sync_dci_remote.h │ │ ├── task_scheduler.h │ │ ├── task_sf_ring_buffer.h │ │ ├── thread_exit.h │ │ ├── time_stamp.h │ │ ├── ue_list.h │ │ └── ue_tracker.h │ ├── main.h │ ├── ngscope_radio.h │ ├── runtimeConfig.h │ ├── sfTask.h │ ├── sfworker.h │ ├── singleThread.h │ ├── ueDatabase.h │ └── ulSch.h ├── rsrp.txt ├── scripts │ ├── config.cfg │ └── ping_google.sh └── src │ ├── CMakeLists.txt │ ├── config.cfg │ ├── dciLib │ ├── ' │ ├── CMakeLists.txt │ ├── README │ ├── asn_decoder.c │ ├── cell_status.c │ ├── dci_decoder.c │ ├── dci_log.c │ ├── dci_log.c_bkup │ ├── dci_ring_buffer.c │ ├── dci_sink_client.c │ ├── dci_sink_recv_dci.c │ ├── dci_sink_ring_buffer.c │ ├── dci_sink_send_dci.c │ ├── dci_sink_serv.c │ ├── dci_sink_sock.c │ ├── decode_sib.cpp │ ├── load_config.c │ ├── ngscope_main.c │ ├── ngscope_util.c │ ├── parse_args.c │ ├── phich_decoder.c │ ├── radio.c │ ├── sib1_helper.cpp │ ├── skip_tti.c │ ├── socket.c │ ├── status_plot.c │ ├── status_tracker.c │ ├── status_tracker.c_bkup │ ├── sync_dci_remote.c │ ├── task_scheduler.c │ ├── task_scheduler.c_bkup │ ├── task_sf_ring_buffer.c │ ├── thread_exit.c │ ├── time_stamp.c │ ├── ue_list.c │ └── ue_tracker.c │ ├── main.c │ ├── remote_client.c │ └── remote_server.c ├── run-clang-format-diff.sh ├── srsenb ├── CMakeLists.txt ├── enb.conf.example ├── hdr │ ├── cfg_parser.h │ ├── common │ │ ├── common_enb.h │ │ └── rnti_pool.h │ ├── enb.h │ ├── metrics_csv.h │ ├── metrics_e2.h │ ├── metrics_json.h │ ├── metrics_stdout.h │ ├── parser.h │ ├── phy │ │ ├── enb_phy_base.h │ │ ├── lte │ │ │ ├── cc_worker.h │ │ │ ├── sf_worker.h │ │ │ └── worker_pool.h │ │ ├── nr │ │ │ ├── slot_worker.h │ │ │ └── worker_pool.h │ │ ├── phy.h │ │ ├── phy_common.h │ │ ├── phy_interfaces.h │ │ ├── phy_metrics.h │ │ ├── phy_ue_db.h │ │ ├── prach_worker.h │ │ └── txrx.h │ ├── stack │ │ ├── enb_stack_base.h │ │ ├── enb_stack_lte.h │ │ ├── mac │ │ │ ├── common │ │ │ │ ├── base_ue_buffer_manager.h │ │ │ │ ├── mac_metrics.h │ │ │ │ └── sched_config.h │ │ │ ├── mac.h │ │ │ ├── sched.h │ │ │ ├── sched_carrier.h │ │ │ ├── sched_common.h │ │ │ ├── sched_grid.h │ │ │ ├── sched_helpers.h │ │ │ ├── sched_interface.h │ │ │ ├── sched_lte_common.h │ │ │ ├── sched_phy_ch │ │ │ │ ├── sched_dci.h │ │ │ │ ├── sched_phy_resource.h │ │ │ │ ├── sched_result.h │ │ │ │ └── sf_cch_allocator.h │ │ │ ├── sched_ue.h │ │ │ ├── sched_ue_ctrl │ │ │ │ ├── sched_dl_cqi.h │ │ │ │ ├── sched_harq.h │ │ │ │ ├── sched_lch.h │ │ │ │ ├── sched_ue_cell.h │ │ │ │ └── tpc.h │ │ │ ├── schedulers │ │ │ │ ├── sched_base.h │ │ │ │ ├── sched_time_pf.h │ │ │ │ └── sched_time_rr.h │ │ │ ├── ta.h │ │ │ └── ue.h │ │ ├── rrc │ │ │ ├── mac_controller.h │ │ │ ├── rrc.h │ │ │ ├── rrc_bearer_cfg.h │ │ │ ├── rrc_cell_cfg.h │ │ │ ├── rrc_config.h │ │ │ ├── rrc_config_common.h │ │ │ ├── rrc_endc.h │ │ │ ├── rrc_metrics.h │ │ │ ├── rrc_mobility.h │ │ │ ├── rrc_paging.h │ │ │ ├── rrc_ue.h │ │ │ ├── ue_meas_cfg.h │ │ │ └── ue_rr_cfg.h │ │ ├── s1ap │ │ │ ├── s1ap.h │ │ │ └── s1ap_metrics.h │ │ └── upper │ │ │ ├── gtpu.h │ │ │ ├── gtpu_pdcp_adapter.h │ │ │ ├── pdcp.h │ │ │ └── rlc.h │ └── x2_adapter.h ├── rb.conf.example ├── rr.conf.example ├── sib.conf.example ├── sib.conf.mbsfn.example ├── src │ ├── CMakeLists.txt │ ├── common │ │ ├── CMakeLists.txt │ │ └── rnti_pool.cc │ ├── enb.cc │ ├── enb_cfg_parser.cc │ ├── enb_cfg_parser.h │ ├── main.cc │ ├── metrics_csv.cc │ ├── metrics_e2.cc │ ├── metrics_json.cc │ ├── metrics_stdout.cc │ ├── parser.cc │ ├── phy │ │ ├── CMakeLists.txt │ │ ├── lte │ │ │ ├── cc_worker.cc │ │ │ ├── sf_worker.cc │ │ │ └── worker_pool.cc │ │ ├── nr │ │ │ ├── slot_worker.cc │ │ │ └── worker_pool.cc │ │ ├── phy.cc │ │ ├── phy_common.cc │ │ ├── phy_ue_db.cc │ │ ├── prach_worker.cc │ │ └── txrx.cc │ └── stack │ │ ├── CMakeLists.txt │ │ ├── enb_stack_lte.cc │ │ ├── mac │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ └── base_ue_buffer_manager.cc │ │ ├── mac.cc │ │ ├── sched.cc │ │ ├── sched_carrier.cc │ │ ├── sched_grid.cc │ │ ├── sched_helpers.cc │ │ ├── sched_phy_ch │ │ │ ├── sched_dci.cc │ │ │ ├── sched_phy_resource.cc │ │ │ └── sf_cch_allocator.cc │ │ ├── sched_ue.cc │ │ ├── sched_ue_ctrl │ │ │ ├── sched_dl_cqi.cc │ │ │ ├── sched_harq.cc │ │ │ ├── sched_lch.cc │ │ │ └── sched_ue_cell.cc │ │ ├── schedulers │ │ │ ├── CMakeLists.txt │ │ │ ├── sched_base.cc │ │ │ ├── sched_time_pf.cc │ │ │ └── sched_time_rr.cc │ │ └── ue.cc │ │ ├── rrc │ │ ├── CMakeLists.txt │ │ ├── mac_controller.cc │ │ ├── rrc.cc │ │ ├── rrc_bearer_cfg.cc │ │ ├── rrc_cell_cfg.cc │ │ ├── rrc_endc.cc │ │ ├── rrc_mobility.cc │ │ ├── rrc_ue.cc │ │ ├── ue_meas_cfg.cc │ │ └── ue_rr_cfg.cc │ │ ├── s1ap │ │ ├── CMakeLists.txt │ │ └── s1ap.cc │ │ └── upper │ │ ├── CMakeLists.txt │ │ ├── gtpu.cc │ │ ├── pdcp.cc │ │ └── rlc.cc └── test │ ├── CMakeLists.txt │ ├── common │ ├── dummy_classes.h │ ├── dummy_classes_common.h │ └── rlc_test_dummy.h │ ├── enb_metrics_test.cc │ ├── mac │ ├── CMakeLists.txt │ ├── sched_benchmark.cc │ ├── sched_ca_test.cc │ ├── sched_common_test_suite.cc │ ├── sched_common_test_suite.h │ ├── sched_cqi_test.cc │ ├── sched_dci_test.cc │ ├── sched_grid_test.cc │ ├── sched_lc_ch_test.cc │ ├── sched_phy_resource_test.cc │ ├── sched_sim_ue.cc │ ├── sched_sim_ue.h │ ├── sched_test_common.cc │ ├── sched_test_common.h │ ├── sched_test_rand.cc │ ├── sched_test_utils.h │ ├── sched_tpc_test.cc │ ├── sched_ue_cell_test.cc │ ├── sched_ue_ded_test_suite.cc │ └── sched_ue_ded_test_suite.h │ ├── phy │ ├── CMakeLists.txt │ └── enb_phy_test.cc │ ├── rrc │ ├── CMakeLists.txt │ ├── erab_setup_test.cc │ ├── rrc_meascfg_test.cc │ ├── rrc_mobility_test.cc │ ├── rrc_paging_test.cc │ ├── test_helpers.cc │ └── test_helpers.h │ ├── s1ap │ ├── CMakeLists.txt │ └── s1ap_test.cc │ └── upper │ ├── CMakeLists.txt │ ├── gtpu_test.cc │ └── plmn_test.cc ├── srsepc ├── CMakeLists.txt ├── epc.conf.example ├── hdr │ ├── hss │ │ └── hss.h │ ├── mbms-gw │ │ └── mbms-gw.h │ ├── mme │ │ ├── mme.h │ │ ├── mme_gtpc.h │ │ ├── nas.h │ │ ├── s1ap.h │ │ ├── s1ap_common.h │ │ ├── s1ap_ctx_mngmt_proc.h │ │ ├── s1ap_erab_mngmt_proc.h │ │ ├── s1ap_mngmt_proc.h │ │ ├── s1ap_nas_transport.h │ │ └── s1ap_paging.h │ └── spgw │ │ ├── gtpc.h │ │ ├── gtpu.h │ │ └── spgw.h ├── mbms.conf.example ├── src │ ├── CMakeLists.txt │ ├── hss │ │ ├── CMakeLists.txt │ │ └── hss.cc │ ├── main.cc │ ├── mbms-gw │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ └── mbms-gw.cc │ ├── mme │ │ ├── CMakeLists.txt │ │ ├── mme.cc │ │ ├── mme_gtpc.cc │ │ ├── nas.cc │ │ ├── s1ap.cc │ │ ├── s1ap_ctx_mngmt_proc.cc │ │ ├── s1ap_erab_mngmt_proc.cc │ │ ├── s1ap_mngmt_proc.cc │ │ ├── s1ap_nas_transport.cc │ │ └── s1ap_paging.cc │ └── spgw │ │ ├── CMakeLists.txt │ │ ├── gtpc.cc │ │ ├── gtpu.cc │ │ └── spgw.cc ├── srsepc_if_masq.sh └── user_db.csv.example ├── srsgnb ├── CMakeLists.txt ├── hdr │ ├── phy │ │ └── phy_nr_interfaces.h │ └── stack │ │ ├── common │ │ └── test │ │ │ └── dummy_nr_classes.h │ │ ├── gnb_stack_nr.h │ │ ├── mac │ │ ├── harq_softbuffer.h │ │ ├── mac_nr.h │ │ ├── sched_nr.h │ │ ├── sched_nr_bwp.h │ │ ├── sched_nr_cfg.h │ │ ├── sched_nr_grant_allocator.h │ │ ├── sched_nr_harq.h │ │ ├── sched_nr_helpers.h │ │ ├── sched_nr_interface.h │ │ ├── sched_nr_interface_utils.h │ │ ├── sched_nr_pdcch.h │ │ ├── sched_nr_rb.h │ │ ├── sched_nr_sch.h │ │ ├── sched_nr_signalling.h │ │ ├── sched_nr_time_rr.h │ │ ├── sched_nr_ue.h │ │ ├── sched_nr_worker.h │ │ ├── sched_ue │ │ │ └── ue_cfg_manager.h │ │ └── ue_nr.h │ │ ├── ngap │ │ ├── ngap.h │ │ ├── ngap_interfaces.h │ │ ├── ngap_metrics.h │ │ ├── ngap_ue.h │ │ ├── ngap_ue_bearer_manager.h │ │ ├── ngap_ue_proc.h │ │ └── ngap_ue_utils.h │ │ ├── ric │ │ ├── e2_agent.h │ │ ├── e2ap.h │ │ ├── e2ap_ric_subscription.h │ │ ├── e2sm.h │ │ ├── e2sm_kpm.h │ │ ├── e2sm_kpm_common.h │ │ ├── e2sm_kpm_metrics.h │ │ └── e2sm_kpm_report_service.h │ │ ├── rrc │ │ ├── cell_asn1_config.h │ │ ├── rrc_nr.h │ │ ├── rrc_nr_config.h │ │ ├── rrc_nr_config_utils.h │ │ ├── rrc_nr_du_manager.h │ │ ├── rrc_nr_security_context.h │ │ └── rrc_nr_ue.h │ │ └── sdap │ │ └── sdap.h └── src │ ├── CMakeLists.txt │ └── stack │ ├── CMakeLists.txt │ ├── gnb_stack_nr.cc │ ├── mac │ ├── CMakeLists.txt │ ├── harq_softbuffer.cc │ ├── mac_nr.cc │ ├── sched_nr.cc │ ├── sched_nr_bwp.cc │ ├── sched_nr_cfg.cc │ ├── sched_nr_grant_allocator.cc │ ├── sched_nr_harq.cc │ ├── sched_nr_helpers.cc │ ├── sched_nr_interface_utils.cc │ ├── sched_nr_pdcch.cc │ ├── sched_nr_rb.cc │ ├── sched_nr_sch.cc │ ├── sched_nr_signalling.cc │ ├── sched_nr_time_rr.cc │ ├── sched_nr_ue.cc │ ├── sched_nr_worker.cc │ ├── sched_ue │ │ └── ue_cfg_manager.cc │ ├── test │ │ ├── CMakeLists.txt │ │ ├── sched_nr_cfg_generators.h │ │ ├── sched_nr_common_test.cc │ │ ├── sched_nr_common_test.h │ │ ├── sched_nr_dci_utilities_tests.cc │ │ ├── sched_nr_parallel_test.cc │ │ ├── sched_nr_pdcch_test.cc │ │ ├── sched_nr_prb_test.cc │ │ ├── sched_nr_rar_test.cc │ │ ├── sched_nr_sch_test.cc │ │ ├── sched_nr_sim_ue.cc │ │ ├── sched_nr_sim_ue.h │ │ ├── sched_nr_test.cc │ │ ├── sched_nr_ue_ded_test_suite.cc │ │ └── sched_nr_ue_ded_test_suite.h │ └── ue_nr.cc │ ├── ngap │ ├── CMakeLists.txt │ ├── ngap.cc │ ├── ngap_ue.cc │ ├── ngap_ue_bearer_manager.cc │ ├── ngap_ue_proc.cc │ └── test │ │ ├── CMakeLists.txt │ │ └── ngap_test.cc │ ├── ric │ ├── CMakeLists.txt │ ├── e2_agent.cc │ ├── e2ap.cc │ ├── e2ap_ric_subscription.cc │ ├── e2sm_kpm.cc │ ├── e2sm_kpm_common.cc │ ├── e2sm_kpm_report_service.cc │ └── test │ │ ├── CMakeLists.txt │ │ └── e2ap_test.cc │ ├── rrc │ ├── CMakeLists.txt │ ├── cell_asn1_config.cc │ ├── rrc_nr.cc │ ├── rrc_nr_config_utils.cc │ ├── rrc_nr_du_manager.cc │ ├── rrc_nr_security_context.cc │ ├── rrc_nr_ue.cc │ └── test │ │ ├── CMakeLists.txt │ │ ├── rrc_nr_core_test.cc │ │ ├── rrc_nr_test.cc │ │ ├── rrc_nr_test_helpers.cc │ │ └── rrc_nr_test_helpers.h │ └── sdap │ ├── CMakeLists.txt │ └── sdap.cc ├── srsue ├── CMakeLists.txt ├── hdr │ ├── metrics_csv.h │ ├── metrics_json.h │ ├── metrics_stdout.h │ ├── phy │ │ ├── dummy_phy.h │ │ ├── lte │ │ │ ├── cc_worker.h │ │ │ ├── sf_worker.h │ │ │ └── worker_pool.h │ │ ├── nr │ │ │ ├── cc_worker.h │ │ │ ├── cell_search.h │ │ │ ├── sf_worker.h │ │ │ ├── slot_sync.h │ │ │ ├── state.h │ │ │ ├── sync_sa.h │ │ │ └── worker_pool.h │ │ ├── phy.h │ │ ├── phy_common.h │ │ ├── phy_metrics.h │ │ ├── phy_nr_sa.h │ │ ├── prach.h │ │ ├── scell │ │ │ ├── intra_measure_base.h │ │ │ ├── intra_measure_lte.h │ │ │ ├── intra_measure_nr.h │ │ │ ├── scell_recv.h │ │ │ ├── scell_state.h │ │ │ └── scell_sync.h │ │ ├── search.h │ │ ├── sfn_sync.h │ │ ├── sync.h │ │ ├── sync_state.h │ │ ├── ta_control.h │ │ └── ue_phy_base.h │ ├── stack │ │ ├── mac │ │ │ ├── demux.h │ │ │ ├── dl_harq.h │ │ │ ├── dl_sps.h │ │ │ ├── mac.h │ │ │ ├── mac_metrics.h │ │ │ ├── mux.h │ │ │ ├── proc.h │ │ │ ├── proc_bsr.h │ │ │ ├── proc_phr.h │ │ │ ├── proc_ra.h │ │ │ ├── proc_sr.h │ │ │ ├── ul_harq.h │ │ │ └── ul_sps.h │ │ ├── mac_common │ │ │ ├── mac_common.h │ │ │ └── mux_base.h │ │ ├── mac_nr │ │ │ ├── demux_nr.h │ │ │ ├── dl_harq_nr.h │ │ │ ├── mac_nr.h │ │ │ ├── mac_nr_interfaces.h │ │ │ ├── mux_nr.h │ │ │ ├── proc_bsr_nr.h │ │ │ ├── proc_ra_nr.h │ │ │ ├── proc_sr_nr.h │ │ │ └── ul_harq_nr.h │ │ ├── rrc │ │ │ ├── phy_controller.h │ │ │ ├── rrc.h │ │ │ ├── rrc_cell.h │ │ │ ├── rrc_config.h │ │ │ ├── rrc_meas.h │ │ │ ├── rrc_metrics.h │ │ │ ├── rrc_procedures.h │ │ │ └── rrc_rlf_report.h │ │ ├── rrc_nr │ │ │ ├── rrc_nr.h │ │ │ ├── rrc_nr_config.h │ │ │ ├── rrc_nr_metrics.h │ │ │ └── rrc_nr_procedures.h │ │ ├── ue_stack_base.h │ │ ├── ue_stack_lte.h │ │ ├── ue_stack_nr.h │ │ └── upper │ │ │ ├── gw.h │ │ │ ├── gw_metrics.h │ │ │ ├── nas.h │ │ │ ├── nas_5g.h │ │ │ ├── nas_5g_metrics.h │ │ │ ├── nas_5g_procedures.h │ │ │ ├── nas_5gmm_state.h │ │ │ ├── nas_base.h │ │ │ ├── nas_config.h │ │ │ ├── nas_emm_state.h │ │ │ ├── nas_idle_procedures.h │ │ │ ├── nas_metrics.h │ │ │ ├── pcsc_usim.h │ │ │ ├── sdap.h │ │ │ ├── test │ │ │ └── nas_test_common.h │ │ │ ├── tft_packet_filter.h │ │ │ ├── usim.h │ │ │ └── usim_base.h │ ├── ue.h │ └── ue_metrics_interface.h ├── src │ ├── CMakeLists.txt │ ├── main.cc │ ├── metrics_csv.cc │ ├── metrics_json.cc │ ├── metrics_stdout.cc │ ├── phy │ │ ├── CMakeLists.txt │ │ ├── lte │ │ │ ├── cc_worker.cc │ │ │ ├── sf_worker.cc │ │ │ └── worker_pool.cc │ │ ├── nr │ │ │ ├── cc_worker.cc │ │ │ ├── cell_search.cc │ │ │ ├── sf_worker.cc │ │ │ ├── slot_sync.cc │ │ │ └── worker_pool.cc │ │ ├── phy.cc │ │ ├── phy_common.cc │ │ ├── phy_nr_sa.cc │ │ ├── prach.cc │ │ ├── scell │ │ │ ├── intra_measure_base.cc │ │ │ ├── intra_measure_lte.cc │ │ │ ├── intra_measure_nr.cc │ │ │ └── scell_recv.cc │ │ ├── search.cc │ │ ├── sfn_sync.cc │ │ ├── sync.cc │ │ ├── sync_sa.cc │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── gnb_emulator.h │ │ │ ├── gnb_rf_emulator.h │ │ │ ├── nr_cell_search_rf.cc │ │ │ ├── nr_cell_search_test.cc │ │ │ ├── nr_sa_cell_search_test.cc │ │ │ ├── scell_search_test.cc │ │ │ └── ue_phy_test.cc │ ├── stack │ │ ├── CMakeLists.txt │ │ ├── mac │ │ │ ├── CMakeLists.txt │ │ │ ├── demux.cc │ │ │ ├── dl_harq.cc │ │ │ ├── mac.cc │ │ │ ├── mux.cc │ │ │ ├── proc_bsr.cc │ │ │ ├── proc_phr.cc │ │ │ ├── proc_ra.cc │ │ │ ├── proc_sr.cc │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mac_test.cc │ │ │ └── ul_harq.cc │ │ ├── mac_common │ │ │ ├── CMakeLists.txt │ │ │ └── mac_common.cc │ │ ├── mac_nr │ │ │ ├── CMakeLists.txt │ │ │ ├── demux_nr.cc │ │ │ ├── dl_harq_nr.cc │ │ │ ├── mac_nr.cc │ │ │ ├── mux_nr.cc │ │ │ ├── proc_bsr_nr.cc │ │ │ ├── proc_ra_nr.cc │ │ │ ├── proc_sr_nr.cc │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mac_nr_test.cc │ │ │ │ ├── proc_bsr_nr_test.cc │ │ │ │ ├── proc_ra_nr_test.cc │ │ │ │ └── proc_sr_nr_test.cc │ │ │ └── ul_harq_nr.cc │ │ ├── rrc │ │ │ ├── CMakeLists.txt │ │ │ ├── phy_controller.cc │ │ │ ├── rrc.cc │ │ │ ├── rrc_cell.cc │ │ │ ├── rrc_meas.cc │ │ │ ├── rrc_procedures.cc │ │ │ ├── rrc_rlf_report.cc │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rrc_cell_test.cc │ │ │ │ ├── rrc_meas_test.cc │ │ │ │ ├── rrc_phy_ctrl_test.cc │ │ │ │ ├── rrc_reconfig_test.cc │ │ │ │ └── rrc_rlf_report_test.cc │ │ ├── rrc_nr │ │ │ ├── CMakeLists.txt │ │ │ ├── rrc_nr.cc │ │ │ ├── rrc_nr_procedures.cc │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ue_rrc_nr_test.cc │ │ ├── ue_stack_lte.cc │ │ ├── ue_stack_nr.cc │ │ └── upper │ │ │ ├── CMakeLists.txt │ │ │ ├── gw.cc │ │ │ ├── nas.cc │ │ │ ├── nas_5g.cc │ │ │ ├── nas_5g_procedures.cc │ │ │ ├── nas_5gmm_state.cc │ │ │ ├── nas_base.cc │ │ │ ├── nas_emm_state.cc │ │ │ ├── nas_idle_procedures.cc │ │ │ ├── pcsc_usim.cc │ │ │ ├── sdap.cc │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── gw_test.cc │ │ │ ├── nas_5g_test.cc │ │ │ ├── nas_test.cc │ │ │ ├── pcsc_usim_test.cc │ │ │ ├── tft_test.cc │ │ │ └── usim_test.cc │ │ │ ├── tft_packet_filter.cc │ │ │ ├── usim.cc │ │ │ └── usim_base.cc │ ├── test │ │ ├── CMakeLists.txt │ │ ├── metrics_test.cc │ │ └── ttcn3 │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── hdr │ │ │ ├── dut_utils.h │ │ │ ├── lte_ttcn3_phy.h │ │ │ ├── swappable_sink.h │ │ │ ├── ttcn3_common.h │ │ │ ├── ttcn3_drb_interface.h │ │ │ ├── ttcn3_helpers.h │ │ │ ├── ttcn3_interfaces.h │ │ │ ├── ttcn3_ip_ctrl_interface.h │ │ │ ├── ttcn3_ip_sock_interface.h │ │ │ ├── ttcn3_port_handler.h │ │ │ ├── ttcn3_srb_interface.h │ │ │ ├── ttcn3_sys_interface.h │ │ │ ├── ttcn3_syssim.h │ │ │ ├── ttcn3_ue.h │ │ │ └── ttcn3_ut_interface.h │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── lte_ttcn3_phy.cc │ │ │ ├── ttcn3_dut.cc │ │ │ ├── ttcn3_syssim.cc │ │ │ └── ttcn3_ue.cc │ │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── rapidjson_test.cc │ │ │ └── ttcn3_if_handler_test.cc │ └── ue.cc └── ue.conf.example └── test ├── CMakeLists.txt ├── README.md ├── phy ├── CMakeLists.txt ├── dummy_gnb_stack.h ├── dummy_phy_common.h ├── dummy_rx_harq_proc.h ├── dummy_tx_harq_proc.h ├── dummy_ue_phy.h ├── dummy_ue_stack.h ├── nr_phy_test.cc └── test_bench.h └── run_lte.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/.DS_Store -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/.gdbinit -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/CTestCustom.cmake.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/README.md -------------------------------------------------------------------------------- /cellinspector/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/.DS_Store -------------------------------------------------------------------------------- /cellinspector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/CMakeLists.txt -------------------------------------------------------------------------------- /cellinspector/headers/cell_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/headers/cell_scan.h -------------------------------------------------------------------------------- /cellinspector/headers/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/headers/cpu.h -------------------------------------------------------------------------------- /cellinspector/source/asn_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/source/asn_decoder.c -------------------------------------------------------------------------------- /cellinspector/source/cell_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/source/cell_scan.c -------------------------------------------------------------------------------- /cellinspector/source/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/source/cpu.c -------------------------------------------------------------------------------- /cellinspector/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellinspector/source/main.c -------------------------------------------------------------------------------- /cellscanner/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/.DS_Store -------------------------------------------------------------------------------- /cellscanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/CMakeLists.txt -------------------------------------------------------------------------------- /cellscanner/headers/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/headers/bands.h -------------------------------------------------------------------------------- /cellscanner/headers/cell_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/headers/cell_scan.h -------------------------------------------------------------------------------- /cellscanner/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/source/CMakeLists.txt -------------------------------------------------------------------------------- /cellscanner/source/cell_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/source/cell_scan.c -------------------------------------------------------------------------------- /cellscanner/source/main.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/source/main.backup -------------------------------------------------------------------------------- /cellscanner/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cellscanner/source/main.c -------------------------------------------------------------------------------- /cmake/modules/CheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/CheckAtomic.cmake -------------------------------------------------------------------------------- /cmake/modules/FindBackward.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindBackward.cmake -------------------------------------------------------------------------------- /cmake/modules/FindFFTW3F.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindFFTW3F.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLibConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindLibConfig.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLimeSDR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindLimeSDR.cmake -------------------------------------------------------------------------------- /cmake/modules/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindMKL.cmake -------------------------------------------------------------------------------- /cmake/modules/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindMbedTLS.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPCSCLite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindPCSCLite.cmake -------------------------------------------------------------------------------- /cmake/modules/FindRapidJSON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindRapidJSON.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSCTP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindSCTP.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSKIQ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindSKIQ.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSRSGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindSRSGUI.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSSE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindSSE.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSoapySDR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindSoapySDR.cmake -------------------------------------------------------------------------------- /cmake/modules/FindUHD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindUHD.cmake -------------------------------------------------------------------------------- /cmake/modules/FindZeroMQ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindZeroMQ.cmake -------------------------------------------------------------------------------- /cmake/modules/FindbladeRF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/FindbladeRF.cmake -------------------------------------------------------------------------------- /cmake/modules/SRSRANPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/SRSRANPackage.cmake -------------------------------------------------------------------------------- /cmake/modules/SRSRANVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake/modules/SRSRANVersion.cmake -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/man/genmanpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/man/genmanpages.sh -------------------------------------------------------------------------------- /debian/man/srsenb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/man/srsenb.txt -------------------------------------------------------------------------------- /debian/man/srsepc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/man/srsepc.txt -------------------------------------------------------------------------------- /debian/man/srsue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/man/srsue.txt -------------------------------------------------------------------------------- /debian/packager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/packager.sh -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/srsenb.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srsenb.install -------------------------------------------------------------------------------- /debian/srsenb.manpages: -------------------------------------------------------------------------------- 1 | debian/man/srsenb.8 2 | -------------------------------------------------------------------------------- /debian/srsenb.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srsenb.service -------------------------------------------------------------------------------- /debian/srsepc.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srsepc.install -------------------------------------------------------------------------------- /debian/srsepc.manpages: -------------------------------------------------------------------------------- 1 | debian/man/srsepc.8 2 | -------------------------------------------------------------------------------- /debian/srsepc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srsepc.service -------------------------------------------------------------------------------- /debian/srslte-core.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srslte-core.config -------------------------------------------------------------------------------- /debian/srslte-core.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srslte-core.install -------------------------------------------------------------------------------- /debian/srslte-core.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srslte-core.postinst -------------------------------------------------------------------------------- /debian/srslte-core.templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srslte-core.templates -------------------------------------------------------------------------------- /debian/srslte-dev.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.a 2 | usr/include/srsran 3 | -------------------------------------------------------------------------------- /debian/srsue.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srsue.install -------------------------------------------------------------------------------- /debian/srsue.manpages: -------------------------------------------------------------------------------- 1 | debian/man/srsue.8 2 | -------------------------------------------------------------------------------- /debian/srsue.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/debian/srsue.service -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/examples/.pdsch_ue.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/.pdsch_ue.c.swp -------------------------------------------------------------------------------- /lib/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/CMakeLists.txt -------------------------------------------------------------------------------- /lib/examples/cell_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/cell_search.c -------------------------------------------------------------------------------- /lib/examples/cell_search_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/cell_search_nbiot.c -------------------------------------------------------------------------------- /lib/examples/npdsch_enodeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/npdsch_enodeb.c -------------------------------------------------------------------------------- /lib/examples/npdsch_ue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/npdsch_ue.c -------------------------------------------------------------------------------- /lib/examples/npdsch_ue_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/npdsch_ue_helper.cc -------------------------------------------------------------------------------- /lib/examples/npdsch_ue_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/npdsch_ue_helper.h -------------------------------------------------------------------------------- /lib/examples/pdsch_enodeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/pdsch_enodeb.c -------------------------------------------------------------------------------- /lib/examples/pdsch_ue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/pdsch_ue.c -------------------------------------------------------------------------------- /lib/examples/pssch_ue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/pssch_ue.c -------------------------------------------------------------------------------- /lib/examples/synch_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/synch_file.c -------------------------------------------------------------------------------- /lib/examples/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/examples/test/iqtests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/test/iqtests.cmake -------------------------------------------------------------------------------- /lib/examples/usrp_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/usrp_capture.c -------------------------------------------------------------------------------- /lib/examples/usrp_capture_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/usrp_capture_sync.c -------------------------------------------------------------------------------- /lib/examples/usrp_iq_collector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/usrp_iq_collector.c -------------------------------------------------------------------------------- /lib/examples/usrp_txrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/usrp_txrx.c -------------------------------------------------------------------------------- /lib/examples/zmq_remote_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/examples/zmq_remote_rx.c -------------------------------------------------------------------------------- /lib/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/CMakeLists.txt -------------------------------------------------------------------------------- /lib/include/srsran/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/CMakeLists.txt -------------------------------------------------------------------------------- /lib/include/srsran/adt/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/expected.h -------------------------------------------------------------------------------- /lib/include/srsran/adt/fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/fsm.h -------------------------------------------------------------------------------- /lib/include/srsran/adt/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/interval.h -------------------------------------------------------------------------------- /lib/include/srsran/adt/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/observer.h -------------------------------------------------------------------------------- /lib/include/srsran/adt/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/optional.h -------------------------------------------------------------------------------- /lib/include/srsran/adt/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/singleton.h -------------------------------------------------------------------------------- /lib/include/srsran/adt/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/adt/span.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/e2ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/e2ap.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/e2sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/e2sm.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/e2sm_kpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/e2sm_kpm.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/gtpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/gtpc.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/gtpc_ies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/gtpc_ies.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/gtpc_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/gtpc_msg.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/ngap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/ngap.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/rrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/rrc.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/rrc/si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/rrc/si.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/rrc_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/rrc_nr.h -------------------------------------------------------------------------------- /lib/include/srsran/asn1/s1ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/asn1/s1ap.h -------------------------------------------------------------------------------- /lib/include/srsran/build_info.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/build_info.h.in -------------------------------------------------------------------------------- /lib/include/srsran/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/common.h -------------------------------------------------------------------------------- /lib/include/srsran/common/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/pcap.h -------------------------------------------------------------------------------- /lib/include/srsran/common/s3g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/s3g.h -------------------------------------------------------------------------------- /lib/include/srsran/common/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/ssl.h -------------------------------------------------------------------------------- /lib/include/srsran/common/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/timers.h -------------------------------------------------------------------------------- /lib/include/srsran/common/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/trace.h -------------------------------------------------------------------------------- /lib/include/srsran/common/zuc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/common/zuc.h -------------------------------------------------------------------------------- /lib/include/srsran/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/config.h -------------------------------------------------------------------------------- /lib/include/srsran/mac/bsr_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/mac/bsr_nr.h -------------------------------------------------------------------------------- /lib/include/srsran/mac/pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/mac/pdu.h -------------------------------------------------------------------------------- /lib/include/srsran/mac/pdu_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/mac/pdu_queue.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/agc/agc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/agc/agc.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/cfr/cfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/cfr/cfr.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/dft/dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/dft/dft.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/dft/ofdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/dft/ofdm.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/fec/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/fec/crc.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/io/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/io/format.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/modem/evm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/modem/evm.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/modem/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/modem/mod.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/cqi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/cqi.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/csi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/csi.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/dci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/dci.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/pbch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/pbch.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/pmch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/pmch.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/ra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/ra.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/regs.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/sch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/sch.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/sci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/sci.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/phch/uci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/phch/uci.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/rf/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/rf/rf.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/cfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/cfo.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/cp.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/npss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/npss.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/nsss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/nsss.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/pss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/pss.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/psss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/psss.h -------------------------------------------------------------------------------- /lib/include/srsran/phy/sync/sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/phy/sync/sfo.h -------------------------------------------------------------------------------- /lib/include/srsran/radio/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/radio/radio.h -------------------------------------------------------------------------------- /lib/include/srsran/rlc/rlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/rlc/rlc.h -------------------------------------------------------------------------------- /lib/include/srsran/rlc/rlc_tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/rlc/rlc_tm.h -------------------------------------------------------------------------------- /lib/include/srsran/srslog/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/srslog/sink.h -------------------------------------------------------------------------------- /lib/include/srsran/srsran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/srsran.h -------------------------------------------------------------------------------- /lib/include/srsran/upper/gtpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/upper/gtpu.h -------------------------------------------------------------------------------- /lib/include/srsran/upper/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/upper/ipv6.h -------------------------------------------------------------------------------- /lib/include/srsran/upper/pdcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/upper/pdcp.h -------------------------------------------------------------------------------- /lib/include/srsran/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/include/srsran/version.h.in -------------------------------------------------------------------------------- /lib/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/asn1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/asn1/asn1_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/asn1_utils.cc -------------------------------------------------------------------------------- /lib/src/asn1/e2ap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/e2ap.cpp -------------------------------------------------------------------------------- /lib/src/asn1/e2sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/e2sm.cpp -------------------------------------------------------------------------------- /lib/src/asn1/e2sm_kpm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/e2sm_kpm.cpp -------------------------------------------------------------------------------- /lib/src/asn1/e2sm_kpm_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/e2sm_kpm_v2.cpp -------------------------------------------------------------------------------- /lib/src/asn1/gtpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/gtpc.cc -------------------------------------------------------------------------------- /lib/src/asn1/liblte_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/liblte_common.cc -------------------------------------------------------------------------------- /lib/src/asn1/liblte_mme.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/liblte_mme.cc -------------------------------------------------------------------------------- /lib/src/asn1/nas_5g_ies.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/nas_5g_ies.cc -------------------------------------------------------------------------------- /lib/src/asn1/nas_5g_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/nas_5g_msg.cc -------------------------------------------------------------------------------- /lib/src/asn1/nas_5g_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/nas_5g_utils.cc -------------------------------------------------------------------------------- /lib/src/asn1/ngap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/ngap.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/bcch_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/bcch_msg.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/common.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/common_ext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/common_ext.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/dl_ccch_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/dl_ccch_msg.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/dl_dcch_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/dl_dcch_msg.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/ho_cmd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/ho_cmd.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/meascfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/meascfg.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/paging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/paging.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/phy_ded.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/phy_ded.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/rr_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/rr_common.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/rr_ded.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/rr_ded.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/security.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/security.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/si.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/si.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/uecap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/uecap.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/ul_ccch_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/ul_ccch_msg.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc/ul_dcch_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc/ul_dcch_msg.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc_nbiot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc_nbiot.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc_nr.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc_nr_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc_nr_utils.cc -------------------------------------------------------------------------------- /lib/src/asn1/rrc_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/rrc_utils.cc -------------------------------------------------------------------------------- /lib/src/asn1/s1ap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/s1ap.cc -------------------------------------------------------------------------------- /lib/src/asn1/s1ap_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/asn1/s1ap_utils.cc -------------------------------------------------------------------------------- /lib/src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/common/arch_select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/arch_select.cc -------------------------------------------------------------------------------- /lib/src/common/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/backtrace.c -------------------------------------------------------------------------------- /lib/src/common/band_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/band_helper.cc -------------------------------------------------------------------------------- /lib/src/common/bearer_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/bearer_manager.cc -------------------------------------------------------------------------------- /lib/src/common/buffer_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/buffer_pool.cc -------------------------------------------------------------------------------- /lib/src/common/byte_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/byte_buffer.cc -------------------------------------------------------------------------------- /lib/src/common/crash_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/crash_handler.cc -------------------------------------------------------------------------------- /lib/src/common/enb_events.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/enb_events.cc -------------------------------------------------------------------------------- /lib/src/common/gen_mch_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/gen_mch_tables.c -------------------------------------------------------------------------------- /lib/src/common/mac_pcap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/mac_pcap.cc -------------------------------------------------------------------------------- /lib/src/common/mac_pcap_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/mac_pcap_base.cc -------------------------------------------------------------------------------- /lib/src/common/mac_pcap_net.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/mac_pcap_net.cc -------------------------------------------------------------------------------- /lib/src/common/nas_pcap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/nas_pcap.cc -------------------------------------------------------------------------------- /lib/src/common/network_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/network_utils.cc -------------------------------------------------------------------------------- /lib/src/common/ngap_pcap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/ngap_pcap.cc -------------------------------------------------------------------------------- /lib/src/common/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/pcap.c -------------------------------------------------------------------------------- /lib/src/common/phy_cfg_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/phy_cfg_nr.cc -------------------------------------------------------------------------------- /lib/src/common/rlc_pcap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/rlc_pcap.cc -------------------------------------------------------------------------------- /lib/src/common/rrc_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/rrc_common.cc -------------------------------------------------------------------------------- /lib/src/common/s1ap_pcap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/s1ap_pcap.cc -------------------------------------------------------------------------------- /lib/src/common/s3g.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/s3g.cc -------------------------------------------------------------------------------- /lib/src/common/security.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/security.cc -------------------------------------------------------------------------------- /lib/src/common/thread_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/thread_pool.cc -------------------------------------------------------------------------------- /lib/src/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/threads.c -------------------------------------------------------------------------------- /lib/src/common/time_prof.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/time_prof.cc -------------------------------------------------------------------------------- /lib/src/common/tti_sync_cv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/tti_sync_cv.cc -------------------------------------------------------------------------------- /lib/src/common/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/version.c -------------------------------------------------------------------------------- /lib/src/common/zuc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/common/zuc.cc -------------------------------------------------------------------------------- /lib/src/gtpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/gtpu/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/gtpu/gtpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/gtpu/gtpu.cc -------------------------------------------------------------------------------- /lib/src/mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/mac/mac_rar_pdu_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/mac_rar_pdu_nr.cc -------------------------------------------------------------------------------- /lib/src/mac/mac_sch_pdu_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/mac_sch_pdu_nr.cc -------------------------------------------------------------------------------- /lib/src/mac/pdu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/pdu.cc -------------------------------------------------------------------------------- /lib/src/mac/pdu_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/pdu_queue.cc -------------------------------------------------------------------------------- /lib/src/mac/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/mac/test/pdu_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/mac/test/pdu_test.cc -------------------------------------------------------------------------------- /lib/src/pdcp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/pdcp/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/pdcp/pdcp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/pdcp/pdcp.cc -------------------------------------------------------------------------------- /lib/src/pdcp/pdcp_entity_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/pdcp/pdcp_entity_base.cc -------------------------------------------------------------------------------- /lib/src/pdcp/pdcp_entity_lte.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/pdcp/pdcp_entity_lte.cc -------------------------------------------------------------------------------- /lib/src/pdcp/pdcp_entity_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/pdcp/pdcp_entity_nr.cc -------------------------------------------------------------------------------- /lib/src/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/agc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/agc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/agc/agc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/agc/agc.c -------------------------------------------------------------------------------- /lib/src/phy/cfr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/cfr/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/cfr/cfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/cfr/cfr.c -------------------------------------------------------------------------------- /lib/src/phy/cfr/test/cfr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/cfr/test/cfr_test.c -------------------------------------------------------------------------------- /lib/src/phy/channel/ch_awgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/ch_awgn.c -------------------------------------------------------------------------------- /lib/src/phy/channel/channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/channel.cc -------------------------------------------------------------------------------- /lib/src/phy/channel/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/delay.c -------------------------------------------------------------------------------- /lib/src/phy/channel/fading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/fading.c -------------------------------------------------------------------------------- /lib/src/phy/channel/gauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/gauss.c -------------------------------------------------------------------------------- /lib/src/phy/channel/gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/gauss.h -------------------------------------------------------------------------------- /lib/src/phy/channel/hst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/hst.c -------------------------------------------------------------------------------- /lib/src/phy/channel/rlf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/channel/rlf.c -------------------------------------------------------------------------------- /lib/src/phy/common/phy_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/common/phy_common.c -------------------------------------------------------------------------------- /lib/src/phy/common/sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/common/sequence.c -------------------------------------------------------------------------------- /lib/src/phy/common/sliv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/common/sliv.c -------------------------------------------------------------------------------- /lib/src/phy/common/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/common/timestamp.c -------------------------------------------------------------------------------- /lib/src/phy/common/zc_sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/common/zc_sequence.c -------------------------------------------------------------------------------- /lib/src/phy/dft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/dft/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/dft/dft_fftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/dft/dft_fftw.c -------------------------------------------------------------------------------- /lib/src/phy/dft/dft_precoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/dft/dft_precoding.c -------------------------------------------------------------------------------- /lib/src/phy/dft/ofdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/dft/ofdm.c -------------------------------------------------------------------------------- /lib/src/phy/dft/test/ofdm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/dft/test/ofdm_test.c -------------------------------------------------------------------------------- /lib/src/phy/enb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/enb/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/enb/enb_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/enb/enb_dl.c -------------------------------------------------------------------------------- /lib/src/phy/enb/enb_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/enb/enb_ul.c -------------------------------------------------------------------------------- /lib/src/phy/fec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/fec/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/block/block.c -------------------------------------------------------------------------------- /lib/src/phy/fec/cbsegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/cbsegm.c -------------------------------------------------------------------------------- /lib/src/phy/fec/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/crc.c -------------------------------------------------------------------------------- /lib/src/phy/fec/ldpc/ldpc_rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/ldpc/ldpc_rm.c -------------------------------------------------------------------------------- /lib/src/phy/fec/polar/polar_rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/polar/polar_rm.c -------------------------------------------------------------------------------- /lib/src/phy/fec/softbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/softbuffer.c -------------------------------------------------------------------------------- /lib/src/phy/fec/test/crc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/test/crc_test.c -------------------------------------------------------------------------------- /lib/src/phy/fec/test/crc_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/test/crc_test.h -------------------------------------------------------------------------------- /lib/src/phy/fec/turbo/rm_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/turbo/rm_conv.c -------------------------------------------------------------------------------- /lib/src/phy/fec/turbo/rm_turbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/turbo/rm_turbo.c -------------------------------------------------------------------------------- /lib/src/phy/fec/utils_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/utils_avx2.h -------------------------------------------------------------------------------- /lib/src/phy/fec/utils_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/fec/utils_avx512.h -------------------------------------------------------------------------------- /lib/src/phy/gnb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/gnb/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/gnb/gnb_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/gnb/gnb_dl.c -------------------------------------------------------------------------------- /lib/src/phy/gnb/gnb_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/gnb/gnb_ul.c -------------------------------------------------------------------------------- /lib/src/phy/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/io/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/io/binsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/io/binsource.c -------------------------------------------------------------------------------- /lib/src/phy/io/filesink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/io/filesink.c -------------------------------------------------------------------------------- /lib/src/phy/io/filesource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/io/filesource.c -------------------------------------------------------------------------------- /lib/src/phy/io/netsink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/io/netsink.c -------------------------------------------------------------------------------- /lib/src/phy/io/netsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/io/netsource.c -------------------------------------------------------------------------------- /lib/src/phy/mimo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/mimo/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/mimo/layermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/mimo/layermap.c -------------------------------------------------------------------------------- /lib/src/phy/mimo/precoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/mimo/precoding.c -------------------------------------------------------------------------------- /lib/src/phy/modem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/modem/demod_hard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/demod_hard.c -------------------------------------------------------------------------------- /lib/src/phy/modem/demod_soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/demod_soft.c -------------------------------------------------------------------------------- /lib/src/phy/modem/lte_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/lte_tables.c -------------------------------------------------------------------------------- /lib/src/phy/modem/lte_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/lte_tables.h -------------------------------------------------------------------------------- /lib/src/phy/modem/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/mod.c -------------------------------------------------------------------------------- /lib/src/phy/modem/modem_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/modem/modem_table.c -------------------------------------------------------------------------------- /lib/src/phy/phch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/phch/cqi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/cqi.c -------------------------------------------------------------------------------- /lib/src/phy/phch/csi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/csi.c -------------------------------------------------------------------------------- /lib/src/phy/phch/dci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/dci.c -------------------------------------------------------------------------------- /lib/src/phy/phch/dci_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/dci_nbiot.c -------------------------------------------------------------------------------- /lib/src/phy/phch/dci_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/dci_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/harq_ack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/harq_ack.c -------------------------------------------------------------------------------- /lib/src/phy/phch/mib_sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/mib_sl.c -------------------------------------------------------------------------------- /lib/src/phy/phch/npbch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/npbch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/npdcch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/npdcch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/npdsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/npdsch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pbch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pbch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pbch_msg_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pbch_msg_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pbch_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pbch_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pcfich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pcfich.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pdcch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pdcch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pdcch_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pdcch_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pdsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pdsch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pdsch_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pdsch_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/phch_cfg_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/phch_cfg_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/phich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/phich.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pmch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pmch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/prach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/prach.c -------------------------------------------------------------------------------- /lib/src/phy/phch/prach_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/prach_tables.h -------------------------------------------------------------------------------- /lib/src/phy/phch/prb_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/prb_dl.c -------------------------------------------------------------------------------- /lib/src/phy/phch/prb_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/prb_dl.h -------------------------------------------------------------------------------- /lib/src/phy/phch/psbch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/psbch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pscch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pscch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pssch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pssch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pucch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pucch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pucch_cfg_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pucch_cfg_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pucch_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pucch_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pucch_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pucch_proc.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pusch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pusch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/pusch_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/pusch_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_dl.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_dl_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_dl_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_helper.h -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_nbiot.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_sl.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_ul.c -------------------------------------------------------------------------------- /lib/src/phy/phch/ra_ul_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/ra_ul_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/regs.c -------------------------------------------------------------------------------- /lib/src/phy/phch/sch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/sch.c -------------------------------------------------------------------------------- /lib/src/phy/phch/sch_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/sch_nr.c -------------------------------------------------------------------------------- /lib/src/phy/phch/sci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/sci.c -------------------------------------------------------------------------------- /lib/src/phy/phch/sequences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/sequences.c -------------------------------------------------------------------------------- /lib/src/phy/phch/tbs_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/tbs_tables.h -------------------------------------------------------------------------------- /lib/src/phy/phch/test/dci_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/test/dci_test.c -------------------------------------------------------------------------------- /lib/src/phy/phch/uci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/uci.c -------------------------------------------------------------------------------- /lib/src/phy/phch/uci_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/phch/uci_nr.c -------------------------------------------------------------------------------- /lib/src/phy/resampling/decim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/resampling/decim.c -------------------------------------------------------------------------------- /lib/src/phy/resampling/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/resampling/interp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_blade_imp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_blade_imp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_blade_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_blade_imp.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_dev.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_file_imp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_file_imp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_file_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_file_imp.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_file_imp_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_file_imp_rx.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_file_imp_trx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_file_imp_trx.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_file_imp_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_file_imp_tx.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_file_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_file_test.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_helper.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_imp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_imp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_plugin.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_skiq_imp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_skiq_imp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_skiq_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_skiq_imp.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_skiq_imp_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_skiq_imp_cfg.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_soapy_imp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_soapy_imp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_soapy_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_soapy_imp.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_uhd_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_uhd_generic.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_uhd_imp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_uhd_imp.cc -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_uhd_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_uhd_imp.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_uhd_rfnoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_uhd_rfnoc.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_uhd_safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_uhd_safe.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_utils.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_zmq_imp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_zmq_imp.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_zmq_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_zmq_imp.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_zmq_imp_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_zmq_imp_rx.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_zmq_imp_trx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_zmq_imp_trx.h -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_zmq_imp_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_zmq_imp_tx.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rf_zmq_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rf_zmq_test.c -------------------------------------------------------------------------------- /lib/src/phy/rf/rfnoc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/rfnoc_test.cc -------------------------------------------------------------------------------- /lib/src/phy/rf/skiq_pps_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/rf/skiq_pps_test.c -------------------------------------------------------------------------------- /lib/src/phy/sync/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/sync/cfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/cfo.c -------------------------------------------------------------------------------- /lib/src/phy/sync/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/cp.c -------------------------------------------------------------------------------- /lib/src/phy/sync/find_sss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/find_sss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/gen_sss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/gen_sss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/npss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/npss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/nsss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/nsss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/pss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/pss_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/pss_nr.c -------------------------------------------------------------------------------- /lib/src/phy/sync/psss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/psss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/sfo.c -------------------------------------------------------------------------------- /lib/src/phy/sync/ssb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/ssb.c -------------------------------------------------------------------------------- /lib/src/phy/sync/sss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/sss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/sss_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/sss_nr.c -------------------------------------------------------------------------------- /lib/src/phy/sync/ssss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/ssss.c -------------------------------------------------------------------------------- /lib/src/phy/sync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/sync.c -------------------------------------------------------------------------------- /lib/src/phy/sync/sync_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/sync_nbiot.c -------------------------------------------------------------------------------- /lib/src/phy/sync/test/cfo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/test/cfo_test.c -------------------------------------------------------------------------------- /lib/src/phy/sync/test/pss_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/test/pss_file.c -------------------------------------------------------------------------------- /lib/src/phy/sync/test/pss_usrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/sync/test/pss_usrp.c -------------------------------------------------------------------------------- /lib/src/phy/ue/.ue_dl.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/.ue_dl.c.swp -------------------------------------------------------------------------------- /lib/src/phy/ue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/ue/ngscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ngscope.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ngscope.c_bkup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ngscope.c_bkup -------------------------------------------------------------------------------- /lib/src/phy/ue/ngscope_dci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ngscope_dci.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ngscope_st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ngscope_st.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ngscope_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ngscope_tree.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_cell_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_cell_search.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_dl.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_dl_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_dl_nbiot.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_dl_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_dl_nr.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_mib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_mib.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_mib_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_mib_nbiot.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_mib_sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_mib_sl.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_sync.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_sync_nbiot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_sync_nbiot.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_sync_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_sync_nr.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_ul.c -------------------------------------------------------------------------------- /lib/src/phy/ue/ue_ul_nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/ue/ue_ul_nr.c -------------------------------------------------------------------------------- /lib/src/phy/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/phy/utils/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/bit.c -------------------------------------------------------------------------------- /lib/src/phy/utils/cexptab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/cexptab.c -------------------------------------------------------------------------------- /lib/src/phy/utils/convolution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/convolution.c -------------------------------------------------------------------------------- /lib/src/phy/utils/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/debug.c -------------------------------------------------------------------------------- /lib/src/phy/utils/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/filter.c -------------------------------------------------------------------------------- /lib/src/phy/utils/mat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/mat.c -------------------------------------------------------------------------------- /lib/src/phy/utils/phy_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/phy_logger.c -------------------------------------------------------------------------------- /lib/src/phy/utils/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/primes.c -------------------------------------------------------------------------------- /lib/src/phy/utils/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/random.cpp -------------------------------------------------------------------------------- /lib/src/phy/utils/re_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/re_pattern.c -------------------------------------------------------------------------------- /lib/src/phy/utils/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/ringbuffer.c -------------------------------------------------------------------------------- /lib/src/phy/utils/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/vector.c -------------------------------------------------------------------------------- /lib/src/phy/utils/vector_simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/phy/utils/vector_simd.c -------------------------------------------------------------------------------- /lib/src/radio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/radio/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/radio/channel_mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/radio/channel_mapping.cc -------------------------------------------------------------------------------- /lib/src/radio/radio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/radio/radio.cc -------------------------------------------------------------------------------- /lib/src/rlc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/rlc/bearer_mem_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/bearer_mem_pool.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_am_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_am_base.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_am_lte.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_am_lte.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_am_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_am_nr.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_am_nr_packing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_am_nr_packing.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_tm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_tm.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_um_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_um_base.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_um_lte.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_um_lte.cc -------------------------------------------------------------------------------- /lib/src/rlc/rlc_um_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/rlc/rlc_um_nr.cc -------------------------------------------------------------------------------- /lib/src/srslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/srslog/backend_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/backend_worker.h -------------------------------------------------------------------------------- /lib/src/srslog/bundled/fmt/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/bundled/fmt/os.cc -------------------------------------------------------------------------------- /lib/src/srslog/event_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/event_trace.cpp -------------------------------------------------------------------------------- /lib/src/srslog/sinks/file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/sinks/file_sink.h -------------------------------------------------------------------------------- /lib/src/srslog/srslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/srslog.cpp -------------------------------------------------------------------------------- /lib/src/srslog/srslog_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/srslog_c.cpp -------------------------------------------------------------------------------- /lib/src/srslog/srslog_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/srslog/srslog_instance.h -------------------------------------------------------------------------------- /lib/src/support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/support/CMakeLists.txt -------------------------------------------------------------------------------- /lib/src/system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/src/system/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/adt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/adt/expected_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/expected_test.cc -------------------------------------------------------------------------------- /lib/test/adt/fsm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/fsm_test.cc -------------------------------------------------------------------------------- /lib/test/adt/interval_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/interval_test.cc -------------------------------------------------------------------------------- /lib/test/adt/mem_pool_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/mem_pool_test.cc -------------------------------------------------------------------------------- /lib/test/adt/observer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/observer_test.cc -------------------------------------------------------------------------------- /lib/test/adt/optional_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/optional_test.cc -------------------------------------------------------------------------------- /lib/test/adt/scope_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/scope_exit_test.cc -------------------------------------------------------------------------------- /lib/test/adt/span_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/adt/span_test.cc -------------------------------------------------------------------------------- /lib/test/asn1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/asn1/asn1_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/asn1_utils_test.cc -------------------------------------------------------------------------------- /lib/test/asn1/nas_5g_msg_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/nas_5g_msg_test.cc -------------------------------------------------------------------------------- /lib/test/asn1/nas_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/nas_decoder.cc -------------------------------------------------------------------------------- /lib/test/asn1/ngap_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/ngap_test.cc -------------------------------------------------------------------------------- /lib/test/asn1/rrc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/rrc_test.cc -------------------------------------------------------------------------------- /lib/test/asn1/s1ap_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/asn1/s1ap_test.cc -------------------------------------------------------------------------------- /lib/test/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/common/test_eea1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/test_eea1.cc -------------------------------------------------------------------------------- /lib/test/common/test_eea2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/test_eea2.cc -------------------------------------------------------------------------------- /lib/test/common/test_eea3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/test_eea3.cc -------------------------------------------------------------------------------- /lib/test/common/test_eia1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/test_eia1.cc -------------------------------------------------------------------------------- /lib/test/common/test_eia3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/test_eia3.cc -------------------------------------------------------------------------------- /lib/test/common/test_f12345.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/test_f12345.cc -------------------------------------------------------------------------------- /lib/test/common/timeout_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/timeout_test.cc -------------------------------------------------------------------------------- /lib/test/common/timer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/common/timer_test.cc -------------------------------------------------------------------------------- /lib/test/pdcp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/pdcp/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/pdcp/pdcp_base_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/pdcp/pdcp_base_test.h -------------------------------------------------------------------------------- /lib/test/pdcp/pdcp_lte_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/pdcp/pdcp_lte_test.h -------------------------------------------------------------------------------- /lib/test/pdcp/pdcp_nr_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/pdcp/pdcp_nr_test.h -------------------------------------------------------------------------------- /lib/test/pdcp/pdcp_nr_test_rx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/pdcp/pdcp_nr_test_rx.cc -------------------------------------------------------------------------------- /lib/test/pdcp/pdcp_nr_test_tx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/pdcp/pdcp_nr_test_tx.cc -------------------------------------------------------------------------------- /lib/test/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/phy/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/phy/phy_dl_nr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/phy/phy_dl_nr_test.c -------------------------------------------------------------------------------- /lib/test/phy/phy_dl_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/phy/phy_dl_test.c -------------------------------------------------------------------------------- /lib/test/phy/pucch_ca_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/phy/pucch_ca_test.c -------------------------------------------------------------------------------- /lib/test/rlc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/rlc/rlc_am_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_am_data_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_am_lte_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_am_lte_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_am_nr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_am_nr_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_common_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_common_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_stress_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_stress_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_stress_test.h -------------------------------------------------------------------------------- /lib/test/rlc/rlc_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_test_common.h -------------------------------------------------------------------------------- /lib/test/rlc/rlc_um_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_um_data_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_um_nr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_um_nr_test.cc -------------------------------------------------------------------------------- /lib/test/rlc/rlc_um_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/rlc/rlc_um_test.cc -------------------------------------------------------------------------------- /lib/test/srslog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/srslog/CMakeLists.txt -------------------------------------------------------------------------------- /lib/test/srslog/any_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/srslog/any_test.cpp -------------------------------------------------------------------------------- /lib/test/srslog/context_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/srslog/context_test.cpp -------------------------------------------------------------------------------- /lib/test/srslog/logger_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/srslog/logger_test.cpp -------------------------------------------------------------------------------- /lib/test/srslog/srslog_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/srslog/srslog_test.cpp -------------------------------------------------------------------------------- /lib/test/srslog/test_dummies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/lib/test/srslog/test_dummies.h -------------------------------------------------------------------------------- /libasn4g/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/libasn4g/.DS_Store -------------------------------------------------------------------------------- /libasn4g/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/libasn4g/README.md -------------------------------------------------------------------------------- /libasn4g/headers/libasn4g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/libasn4g/headers/libasn4g.h -------------------------------------------------------------------------------- /libasn4g/source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/libasn4g/source/.DS_Store -------------------------------------------------------------------------------- /libasn4g/source/libasn4g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/libasn4g/source/libasn4g.c -------------------------------------------------------------------------------- /libasn4g/spec/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/libasn4g/spec/.DS_Store -------------------------------------------------------------------------------- /ngscope/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/CMakeLists.txt -------------------------------------------------------------------------------- /ngscope/cellcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/cellcfg.txt -------------------------------------------------------------------------------- /ngscope/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/config.cfg -------------------------------------------------------------------------------- /ngscope/config/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/config/config.cfg -------------------------------------------------------------------------------- /ngscope/hdr/BufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/BufferPool.h -------------------------------------------------------------------------------- /ngscope/hdr/SFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/SFDecoder.h -------------------------------------------------------------------------------- /ngscope/hdr/SIBDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/SIBDecoder.h -------------------------------------------------------------------------------- /ngscope/hdr/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/ThreadPool.h -------------------------------------------------------------------------------- /ngscope/hdr/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/args.h -------------------------------------------------------------------------------- /ngscope/hdr/common_type_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/common_type_define.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/asn_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/asn_decoder.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/cell_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/cell_status.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/dci_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/dci_decoder.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/dci_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/dci_log.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/decode_sib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/decode_sib.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/load_config.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/ngscope_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/ngscope_def.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/parse_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/parse_args.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/radio.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/sib1_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/sib1_helper.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/skip_tti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/skip_tti.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/socket.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/status_plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/status_plot.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/thread_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/thread_exit.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/time_stamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/time_stamp.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/ue_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/ue_list.h -------------------------------------------------------------------------------- /ngscope/hdr/dciLib/ue_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/dciLib/ue_tracker.h -------------------------------------------------------------------------------- /ngscope/hdr/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/main.h -------------------------------------------------------------------------------- /ngscope/hdr/ngscope_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/ngscope_radio.h -------------------------------------------------------------------------------- /ngscope/hdr/runtimeConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/runtimeConfig.h -------------------------------------------------------------------------------- /ngscope/hdr/sfTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/sfTask.h -------------------------------------------------------------------------------- /ngscope/hdr/sfworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/sfworker.h -------------------------------------------------------------------------------- /ngscope/hdr/singleThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/singleThread.h -------------------------------------------------------------------------------- /ngscope/hdr/ueDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/ueDatabase.h -------------------------------------------------------------------------------- /ngscope/hdr/ulSch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/hdr/ulSch.h -------------------------------------------------------------------------------- /ngscope/rsrp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/rsrp.txt -------------------------------------------------------------------------------- /ngscope/scripts/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/scripts/config.cfg -------------------------------------------------------------------------------- /ngscope/scripts/ping_google.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/scripts/ping_google.sh -------------------------------------------------------------------------------- /ngscope/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/CMakeLists.txt -------------------------------------------------------------------------------- /ngscope/src/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/config.cfg -------------------------------------------------------------------------------- /ngscope/src/dciLib/': -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/' -------------------------------------------------------------------------------- /ngscope/src/dciLib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/README -------------------------------------------------------------------------------- /ngscope/src/dciLib/asn_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/asn_decoder.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/cell_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/cell_status.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/dci_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/dci_decoder.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/dci_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/dci_log.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/load_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/load_config.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/parse_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/parse_args.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/radio.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/skip_tti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/skip_tti.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/socket.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/status_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/status_plot.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/thread_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/thread_exit.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/time_stamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/time_stamp.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/ue_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/ue_list.c -------------------------------------------------------------------------------- /ngscope/src/dciLib/ue_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/dciLib/ue_tracker.c -------------------------------------------------------------------------------- /ngscope/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/main.c -------------------------------------------------------------------------------- /ngscope/src/remote_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/remote_client.c -------------------------------------------------------------------------------- /ngscope/src/remote_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/ngscope/src/remote_server.c -------------------------------------------------------------------------------- /run-clang-format-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/run-clang-format-diff.sh -------------------------------------------------------------------------------- /srsenb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/enb.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/enb.conf.example -------------------------------------------------------------------------------- /srsenb/hdr/cfg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/cfg_parser.h -------------------------------------------------------------------------------- /srsenb/hdr/common/common_enb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/common/common_enb.h -------------------------------------------------------------------------------- /srsenb/hdr/common/rnti_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/common/rnti_pool.h -------------------------------------------------------------------------------- /srsenb/hdr/enb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/enb.h -------------------------------------------------------------------------------- /srsenb/hdr/metrics_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/metrics_csv.h -------------------------------------------------------------------------------- /srsenb/hdr/metrics_e2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/metrics_e2.h -------------------------------------------------------------------------------- /srsenb/hdr/metrics_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/metrics_json.h -------------------------------------------------------------------------------- /srsenb/hdr/metrics_stdout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/metrics_stdout.h -------------------------------------------------------------------------------- /srsenb/hdr/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/parser.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/enb_phy_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/enb_phy_base.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/lte/cc_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/lte/cc_worker.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/lte/sf_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/lte/sf_worker.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/lte/worker_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/lte/worker_pool.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/nr/slot_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/nr/slot_worker.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/nr/worker_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/nr/worker_pool.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/phy.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/phy_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/phy_common.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/phy_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/phy_interfaces.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/phy_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/phy_metrics.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/phy_ue_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/phy_ue_db.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/prach_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/prach_worker.h -------------------------------------------------------------------------------- /srsenb/hdr/phy/txrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/phy/txrx.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/enb_stack_lte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/enb_stack_lte.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/mac/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/mac/mac.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/mac/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/mac/sched.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/mac/sched_ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/mac/sched_ue.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/mac/ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/mac/ta.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/mac/ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/mac/ue.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/rrc/rrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/rrc/rrc.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/rrc/rrc_endc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/rrc/rrc_endc.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/rrc/rrc_ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/rrc/rrc_ue.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/rrc/ue_rr_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/rrc/ue_rr_cfg.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/s1ap/s1ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/s1ap/s1ap.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/upper/gtpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/upper/gtpu.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/upper/pdcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/upper/pdcp.h -------------------------------------------------------------------------------- /srsenb/hdr/stack/upper/rlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/stack/upper/rlc.h -------------------------------------------------------------------------------- /srsenb/hdr/x2_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/hdr/x2_adapter.h -------------------------------------------------------------------------------- /srsenb/rb.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/rb.conf.example -------------------------------------------------------------------------------- /srsenb/rr.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/rr.conf.example -------------------------------------------------------------------------------- /srsenb/sib.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/sib.conf.example -------------------------------------------------------------------------------- /srsenb/sib.conf.mbsfn.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/sib.conf.mbsfn.example -------------------------------------------------------------------------------- /srsenb/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/src/common/rnti_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/common/rnti_pool.cc -------------------------------------------------------------------------------- /srsenb/src/enb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/enb.cc -------------------------------------------------------------------------------- /srsenb/src/enb_cfg_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/enb_cfg_parser.cc -------------------------------------------------------------------------------- /srsenb/src/enb_cfg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/enb_cfg_parser.h -------------------------------------------------------------------------------- /srsenb/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/main.cc -------------------------------------------------------------------------------- /srsenb/src/metrics_csv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/metrics_csv.cc -------------------------------------------------------------------------------- /srsenb/src/metrics_e2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/metrics_e2.cc -------------------------------------------------------------------------------- /srsenb/src/metrics_json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/metrics_json.cc -------------------------------------------------------------------------------- /srsenb/src/metrics_stdout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/metrics_stdout.cc -------------------------------------------------------------------------------- /srsenb/src/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/parser.cc -------------------------------------------------------------------------------- /srsenb/src/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/src/phy/lte/cc_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/lte/cc_worker.cc -------------------------------------------------------------------------------- /srsenb/src/phy/lte/sf_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/lte/sf_worker.cc -------------------------------------------------------------------------------- /srsenb/src/phy/nr/slot_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/nr/slot_worker.cc -------------------------------------------------------------------------------- /srsenb/src/phy/nr/worker_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/nr/worker_pool.cc -------------------------------------------------------------------------------- /srsenb/src/phy/phy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/phy.cc -------------------------------------------------------------------------------- /srsenb/src/phy/phy_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/phy_common.cc -------------------------------------------------------------------------------- /srsenb/src/phy/phy_ue_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/phy_ue_db.cc -------------------------------------------------------------------------------- /srsenb/src/phy/prach_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/prach_worker.cc -------------------------------------------------------------------------------- /srsenb/src/phy/txrx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/phy/txrx.cc -------------------------------------------------------------------------------- /srsenb/src/stack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/src/stack/mac/mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/mac/mac.cc -------------------------------------------------------------------------------- /srsenb/src/stack/mac/sched.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/mac/sched.cc -------------------------------------------------------------------------------- /srsenb/src/stack/mac/sched_ue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/mac/sched_ue.cc -------------------------------------------------------------------------------- /srsenb/src/stack/mac/ue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/mac/ue.cc -------------------------------------------------------------------------------- /srsenb/src/stack/rrc/rrc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/rrc/rrc.cc -------------------------------------------------------------------------------- /srsenb/src/stack/rrc/rrc_endc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/rrc/rrc_endc.cc -------------------------------------------------------------------------------- /srsenb/src/stack/rrc/rrc_ue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/rrc/rrc_ue.cc -------------------------------------------------------------------------------- /srsenb/src/stack/s1ap/s1ap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/s1ap/s1ap.cc -------------------------------------------------------------------------------- /srsenb/src/stack/upper/gtpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/upper/gtpu.cc -------------------------------------------------------------------------------- /srsenb/src/stack/upper/pdcp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/upper/pdcp.cc -------------------------------------------------------------------------------- /srsenb/src/stack/upper/rlc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/src/stack/upper/rlc.cc -------------------------------------------------------------------------------- /srsenb/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/test/enb_metrics_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/enb_metrics_test.cc -------------------------------------------------------------------------------- /srsenb/test/mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/mac/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/test/mac/sched_ca_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/mac/sched_ca_test.cc -------------------------------------------------------------------------------- /srsenb/test/mac/sched_sim_ue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/mac/sched_sim_ue.cc -------------------------------------------------------------------------------- /srsenb/test/mac/sched_sim_ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/mac/sched_sim_ue.h -------------------------------------------------------------------------------- /srsenb/test/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/phy/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/test/phy/enb_phy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/phy/enb_phy_test.cc -------------------------------------------------------------------------------- /srsenb/test/rrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/rrc/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/test/rrc/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/rrc/test_helpers.cc -------------------------------------------------------------------------------- /srsenb/test/rrc/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/rrc/test_helpers.h -------------------------------------------------------------------------------- /srsenb/test/s1ap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/s1ap/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/test/s1ap/s1ap_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/s1ap/s1ap_test.cc -------------------------------------------------------------------------------- /srsenb/test/upper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/upper/CMakeLists.txt -------------------------------------------------------------------------------- /srsenb/test/upper/gtpu_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/upper/gtpu_test.cc -------------------------------------------------------------------------------- /srsenb/test/upper/plmn_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsenb/test/upper/plmn_test.cc -------------------------------------------------------------------------------- /srsepc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/CMakeLists.txt -------------------------------------------------------------------------------- /srsepc/epc.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/epc.conf.example -------------------------------------------------------------------------------- /srsepc/hdr/hss/hss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/hss/hss.h -------------------------------------------------------------------------------- /srsepc/hdr/mbms-gw/mbms-gw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mbms-gw/mbms-gw.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/mme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/mme.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/mme_gtpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/mme_gtpc.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/nas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/nas.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/s1ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/s1ap.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/s1ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/s1ap_common.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/s1ap_mngmt_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/s1ap_mngmt_proc.h -------------------------------------------------------------------------------- /srsepc/hdr/mme/s1ap_paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/mme/s1ap_paging.h -------------------------------------------------------------------------------- /srsepc/hdr/spgw/gtpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/spgw/gtpc.h -------------------------------------------------------------------------------- /srsepc/hdr/spgw/gtpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/spgw/gtpu.h -------------------------------------------------------------------------------- /srsepc/hdr/spgw/spgw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/hdr/spgw/spgw.h -------------------------------------------------------------------------------- /srsepc/mbms.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/mbms.conf.example -------------------------------------------------------------------------------- /srsepc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/CMakeLists.txt -------------------------------------------------------------------------------- /srsepc/src/hss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/hss/CMakeLists.txt -------------------------------------------------------------------------------- /srsepc/src/hss/hss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/hss/hss.cc -------------------------------------------------------------------------------- /srsepc/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/main.cc -------------------------------------------------------------------------------- /srsepc/src/mbms-gw/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mbms-gw/main.cc -------------------------------------------------------------------------------- /srsepc/src/mbms-gw/mbms-gw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mbms-gw/mbms-gw.cc -------------------------------------------------------------------------------- /srsepc/src/mme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mme/CMakeLists.txt -------------------------------------------------------------------------------- /srsepc/src/mme/mme.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mme/mme.cc -------------------------------------------------------------------------------- /srsepc/src/mme/mme_gtpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mme/mme_gtpc.cc -------------------------------------------------------------------------------- /srsepc/src/mme/nas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mme/nas.cc -------------------------------------------------------------------------------- /srsepc/src/mme/s1ap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mme/s1ap.cc -------------------------------------------------------------------------------- /srsepc/src/mme/s1ap_paging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/mme/s1ap_paging.cc -------------------------------------------------------------------------------- /srsepc/src/spgw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/spgw/CMakeLists.txt -------------------------------------------------------------------------------- /srsepc/src/spgw/gtpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/spgw/gtpc.cc -------------------------------------------------------------------------------- /srsepc/src/spgw/gtpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/spgw/gtpu.cc -------------------------------------------------------------------------------- /srsepc/src/spgw/spgw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/src/spgw/spgw.cc -------------------------------------------------------------------------------- /srsepc/srsepc_if_masq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/srsepc_if_masq.sh -------------------------------------------------------------------------------- /srsepc/user_db.csv.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsepc/user_db.csv.example -------------------------------------------------------------------------------- /srsgnb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/CMakeLists.txt -------------------------------------------------------------------------------- /srsgnb/hdr/stack/gnb_stack_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/gnb_stack_nr.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/mac/mac_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/mac/mac_nr.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/mac/sched_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/mac/sched_nr.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/mac/ue_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/mac/ue_nr.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/ngap/ngap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/ngap/ngap.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/ngap/ngap_ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/ngap/ngap_ue.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/ric/e2_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/ric/e2_agent.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/ric/e2ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/ric/e2ap.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/ric/e2sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/ric/e2sm.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/ric/e2sm_kpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/ric/e2sm_kpm.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/rrc/rrc_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/rrc/rrc_nr.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/rrc/rrc_nr_ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/rrc/rrc_nr_ue.h -------------------------------------------------------------------------------- /srsgnb/hdr/stack/sdap/sdap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/hdr/stack/sdap/sdap.h -------------------------------------------------------------------------------- /srsgnb/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/CMakeLists.txt -------------------------------------------------------------------------------- /srsgnb/src/stack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/CMakeLists.txt -------------------------------------------------------------------------------- /srsgnb/src/stack/gnb_stack_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/gnb_stack_nr.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/mac/mac_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/mac/mac_nr.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/mac/sched_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/mac/sched_nr.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/mac/ue_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/mac/ue_nr.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/ngap/ngap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/ngap/ngap.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/ngap/ngap_ue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/ngap/ngap_ue.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/ric/e2_agent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/ric/e2_agent.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/ric/e2ap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/ric/e2ap.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/ric/e2sm_kpm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/ric/e2sm_kpm.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/rrc/rrc_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/rrc/rrc_nr.cc -------------------------------------------------------------------------------- /srsgnb/src/stack/sdap/sdap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsgnb/src/stack/sdap/sdap.cc -------------------------------------------------------------------------------- /srsue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/CMakeLists.txt -------------------------------------------------------------------------------- /srsue/hdr/metrics_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/metrics_csv.h -------------------------------------------------------------------------------- /srsue/hdr/metrics_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/metrics_json.h -------------------------------------------------------------------------------- /srsue/hdr/metrics_stdout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/metrics_stdout.h -------------------------------------------------------------------------------- /srsue/hdr/phy/dummy_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/dummy_phy.h -------------------------------------------------------------------------------- /srsue/hdr/phy/lte/cc_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/lte/cc_worker.h -------------------------------------------------------------------------------- /srsue/hdr/phy/lte/sf_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/lte/sf_worker.h -------------------------------------------------------------------------------- /srsue/hdr/phy/lte/worker_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/lte/worker_pool.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/cc_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/cc_worker.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/cell_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/cell_search.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/sf_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/sf_worker.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/slot_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/slot_sync.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/state.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/sync_sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/sync_sa.h -------------------------------------------------------------------------------- /srsue/hdr/phy/nr/worker_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/nr/worker_pool.h -------------------------------------------------------------------------------- /srsue/hdr/phy/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/phy.h -------------------------------------------------------------------------------- /srsue/hdr/phy/phy_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/phy_common.h -------------------------------------------------------------------------------- /srsue/hdr/phy/phy_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/phy_metrics.h -------------------------------------------------------------------------------- /srsue/hdr/phy/phy_nr_sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/phy_nr_sa.h -------------------------------------------------------------------------------- /srsue/hdr/phy/prach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/prach.h -------------------------------------------------------------------------------- /srsue/hdr/phy/scell/scell_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/scell/scell_recv.h -------------------------------------------------------------------------------- /srsue/hdr/phy/scell/scell_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/scell/scell_sync.h -------------------------------------------------------------------------------- /srsue/hdr/phy/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/search.h -------------------------------------------------------------------------------- /srsue/hdr/phy/sfn_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/sfn_sync.h -------------------------------------------------------------------------------- /srsue/hdr/phy/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/sync.h -------------------------------------------------------------------------------- /srsue/hdr/phy/sync_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/sync_state.h -------------------------------------------------------------------------------- /srsue/hdr/phy/ta_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/ta_control.h -------------------------------------------------------------------------------- /srsue/hdr/phy/ue_phy_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/phy/ue_phy_base.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/demux.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/dl_harq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/dl_harq.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/dl_sps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/dl_sps.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/mac.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/mux.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/proc.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/proc_bsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/proc_bsr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/proc_phr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/proc_phr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/proc_ra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/proc_ra.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/proc_sr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/proc_sr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/ul_harq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/ul_harq.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac/ul_sps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac/ul_sps.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac_nr/mac_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac_nr/mac_nr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/mac_nr/mux_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/mac_nr/mux_nr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/rrc/rrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/rrc/rrc.h -------------------------------------------------------------------------------- /srsue/hdr/stack/rrc/rrc_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/rrc/rrc_cell.h -------------------------------------------------------------------------------- /srsue/hdr/stack/rrc/rrc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/rrc/rrc_config.h -------------------------------------------------------------------------------- /srsue/hdr/stack/rrc/rrc_meas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/rrc/rrc_meas.h -------------------------------------------------------------------------------- /srsue/hdr/stack/rrc_nr/rrc_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/rrc_nr/rrc_nr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/ue_stack_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/ue_stack_base.h -------------------------------------------------------------------------------- /srsue/hdr/stack/ue_stack_lte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/ue_stack_lte.h -------------------------------------------------------------------------------- /srsue/hdr/stack/ue_stack_nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/ue_stack_nr.h -------------------------------------------------------------------------------- /srsue/hdr/stack/upper/gw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/upper/gw.h -------------------------------------------------------------------------------- /srsue/hdr/stack/upper/nas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/upper/nas.h -------------------------------------------------------------------------------- /srsue/hdr/stack/upper/nas_5g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/upper/nas_5g.h -------------------------------------------------------------------------------- /srsue/hdr/stack/upper/nas_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/upper/nas_base.h -------------------------------------------------------------------------------- /srsue/hdr/stack/upper/sdap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/upper/sdap.h -------------------------------------------------------------------------------- /srsue/hdr/stack/upper/usim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/stack/upper/usim.h -------------------------------------------------------------------------------- /srsue/hdr/ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/ue.h -------------------------------------------------------------------------------- /srsue/hdr/ue_metrics_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/hdr/ue_metrics_interface.h -------------------------------------------------------------------------------- /srsue/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/CMakeLists.txt -------------------------------------------------------------------------------- /srsue/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/main.cc -------------------------------------------------------------------------------- /srsue/src/metrics_csv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/metrics_csv.cc -------------------------------------------------------------------------------- /srsue/src/metrics_json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/metrics_json.cc -------------------------------------------------------------------------------- /srsue/src/metrics_stdout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/metrics_stdout.cc -------------------------------------------------------------------------------- /srsue/src/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/CMakeLists.txt -------------------------------------------------------------------------------- /srsue/src/phy/lte/cc_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/lte/cc_worker.cc -------------------------------------------------------------------------------- /srsue/src/phy/lte/sf_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/lte/sf_worker.cc -------------------------------------------------------------------------------- /srsue/src/phy/lte/worker_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/lte/worker_pool.cc -------------------------------------------------------------------------------- /srsue/src/phy/nr/cc_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/nr/cc_worker.cc -------------------------------------------------------------------------------- /srsue/src/phy/nr/cell_search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/nr/cell_search.cc -------------------------------------------------------------------------------- /srsue/src/phy/nr/sf_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/nr/sf_worker.cc -------------------------------------------------------------------------------- /srsue/src/phy/nr/slot_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/nr/slot_sync.cc -------------------------------------------------------------------------------- /srsue/src/phy/nr/worker_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/nr/worker_pool.cc -------------------------------------------------------------------------------- /srsue/src/phy/phy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/phy.cc -------------------------------------------------------------------------------- /srsue/src/phy/phy_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/phy_common.cc -------------------------------------------------------------------------------- /srsue/src/phy/phy_nr_sa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/phy_nr_sa.cc -------------------------------------------------------------------------------- /srsue/src/phy/prach.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/prach.cc -------------------------------------------------------------------------------- /srsue/src/phy/search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/search.cc -------------------------------------------------------------------------------- /srsue/src/phy/sfn_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/sfn_sync.cc -------------------------------------------------------------------------------- /srsue/src/phy/sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/sync.cc -------------------------------------------------------------------------------- /srsue/src/phy/sync_sa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/phy/sync_sa.cc -------------------------------------------------------------------------------- /srsue/src/stack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/CMakeLists.txt -------------------------------------------------------------------------------- /srsue/src/stack/mac/demux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/demux.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/dl_harq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/dl_harq.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/mac.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/mux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/mux.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/proc_bsr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/proc_bsr.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/proc_phr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/proc_phr.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/proc_ra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/proc_ra.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/proc_sr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/proc_sr.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac/ul_harq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac/ul_harq.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac_nr/mac_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac_nr/mac_nr.cc -------------------------------------------------------------------------------- /srsue/src/stack/mac_nr/mux_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/mac_nr/mux_nr.cc -------------------------------------------------------------------------------- /srsue/src/stack/rrc/rrc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/rrc/rrc.cc -------------------------------------------------------------------------------- /srsue/src/stack/rrc/rrc_cell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/rrc/rrc_cell.cc -------------------------------------------------------------------------------- /srsue/src/stack/rrc/rrc_meas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/rrc/rrc_meas.cc -------------------------------------------------------------------------------- /srsue/src/stack/rrc_nr/rrc_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/rrc_nr/rrc_nr.cc -------------------------------------------------------------------------------- /srsue/src/stack/ue_stack_lte.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/ue_stack_lte.cc -------------------------------------------------------------------------------- /srsue/src/stack/ue_stack_nr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/ue_stack_nr.cc -------------------------------------------------------------------------------- /srsue/src/stack/upper/gw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/upper/gw.cc -------------------------------------------------------------------------------- /srsue/src/stack/upper/nas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/upper/nas.cc -------------------------------------------------------------------------------- /srsue/src/stack/upper/nas_5g.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/upper/nas_5g.cc -------------------------------------------------------------------------------- /srsue/src/stack/upper/sdap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/upper/sdap.cc -------------------------------------------------------------------------------- /srsue/src/stack/upper/usim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/stack/upper/usim.cc -------------------------------------------------------------------------------- /srsue/src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /srsue/src/test/metrics_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/test/metrics_test.cc -------------------------------------------------------------------------------- /srsue/src/test/ttcn3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/test/ttcn3/README.md -------------------------------------------------------------------------------- /srsue/src/ue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/src/ue.cc -------------------------------------------------------------------------------- /srsue/ue.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/srsue/ue.conf.example -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/README.md -------------------------------------------------------------------------------- /test/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/CMakeLists.txt -------------------------------------------------------------------------------- /test/phy/dummy_gnb_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/dummy_gnb_stack.h -------------------------------------------------------------------------------- /test/phy/dummy_phy_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/dummy_phy_common.h -------------------------------------------------------------------------------- /test/phy/dummy_rx_harq_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/dummy_rx_harq_proc.h -------------------------------------------------------------------------------- /test/phy/dummy_tx_harq_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/dummy_tx_harq_proc.h -------------------------------------------------------------------------------- /test/phy/dummy_ue_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/dummy_ue_phy.h -------------------------------------------------------------------------------- /test/phy/dummy_ue_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/dummy_ue_stack.h -------------------------------------------------------------------------------- /test/phy/nr_phy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/nr_phy_test.cc -------------------------------------------------------------------------------- /test/phy/test_bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/phy/test_bench.h -------------------------------------------------------------------------------- /test/run_lte.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrincetonUniversity/NG-Scope/HEAD/test/run_lte.sh --------------------------------------------------------------------------------