diff --git a/cmake/modules/SRSLTEVersion.cmake b/cmake/modules/SRSLTEVersion.cmake index db0087290..e79f7f88e 100644 --- a/cmake/modules/SRSLTEVersion.cmake +++ b/cmake/modules/SRSLTEVersion.cmake @@ -20,5 +20,5 @@ SET(SRSLTE_VERSION_MAJOR 18) SET(SRSLTE_VERSION_MINOR 6) -SET(SRSLTE_VERSION_PATCH 0) +SET(SRSLTE_VERSION_PATCH 1) SET(SRSLTE_VERSION_STRING "${SRSLTE_VERSION_MAJOR}.${SRSLTE_VERSION_MINOR}.${SRSLTE_VERSION_PATCH}") diff --git a/srsenb/enb.conf.example b/srsenb/enb.conf.example index 1c7c93214..0eb65bd92 100644 --- a/srsenb/enb.conf.example +++ b/srsenb/enb.conf.example @@ -12,6 +12,7 @@ # mnc: Mobile Network Code # mme_addr: IP address of MME for S1 connnection # gtp_bind_addr: Local IP address to bind for GTP connection +# s1c_bind_addr: Local IP address to bind for S1AP connection # n_prb: Number of Physical Resource Blocks (6,15,25,50,75,100) # tm: Transmission mode 1-4 (TM1 default) # nof_ports: Number of Tx ports (1 port default, set to 2 for TM2/3/4) @@ -112,7 +113,7 @@ filename = /tmp/enb.pcap # If set to negative, a single log file will be created. ##################################################################### [log] -all_level = info +all_level = warning all_hex_limit = 32 filename = /tmp/enb.log file_max_size = -1 diff --git a/srsenb/src/mac/mac.cc b/srsenb/src/mac/mac.cc index d16279f15..fb1a71c4a 100644 --- a/srsenb/src/mac/mac.cc +++ b/srsenb/src/mac/mac.cc @@ -734,7 +734,8 @@ int mac::get_mch_sched(bool is_mcch, dl_sched_t *dl_sched_res) dl_sched_res->sched_grants[0].data[0] = ue_db[SRSLTE_MRNTI]->generate_mch_pdu(mch, 1, mcs_data.tbs/8); } } else { - //TRANSMIT NOTHING + dl_sched_res->sched_grants[0].rnti = 0; + dl_sched_res->sched_grants[0].data[0] = NULL; } mch.current_sf_allocation_num++; } diff --git a/srsue/src/ue_base.cc b/srsue/src/ue_base.cc index b3fc56132..ed3bd4ee9 100644 --- a/srsue/src/ue_base.cc +++ b/srsue/src/ue_base.cc @@ -133,6 +133,9 @@ std::string ue_base::get_build_mode() std::string ue_base::get_build_info() { + if (std::string(srslte_get_build_info()) == "") { + return std::string(srslte_get_version()); + } return std::string(srslte_get_build_info()); } diff --git a/srsue/ue.conf.example b/srsue/ue.conf.example index d1a81b0d9..5822ab0c9 100644 --- a/srsue/ue.conf.example +++ b/srsue/ue.conf.example @@ -77,7 +77,7 @@ nas_filename = /tmp/nas.pcap # If set to negative, a single log file will be created. ##################################################################### [log] -all_level = info +all_level = warning phy_lib_level = none all_hex_limit = 32 filename = /tmp/ue.log