Merge branch 'next' of github.com:softwareradiosystems/srsLTE into next

This commit is contained in:
Ismael Gomez 2018-05-31 14:34:55 +02:00
commit b238c912bd
2 changed files with 3 additions and 2 deletions

View File

@ -40,10 +40,10 @@ else(RF_FOUND)
add_definitions(-DDISABLE_RF)
add_executable(pdsch_ue pdsch_ue.c)
target_link_libraries(pdsch_ue srslte_phy pthread)
target_link_libraries(pdsch_ue srslte_common srslte_phy pthread)
add_executable(pdsch_enodeb pdsch_enodeb.c)
target_link_libraries(pdsch_enodeb srslte_phy pthread)
target_link_libraries(pdsch_enodeb srslte_common srslte_phy pthread)
endif(RF_FOUND)
find_package(SRSGUI)

View File

@ -763,6 +763,7 @@ bool rrc::si_acquire(uint32_t sib_index)
if ((uint32_t) sib1->sched_info[i].sib_mapping_info[j].sib_type == sib_index - 2) {
period = liblte_rrc_si_periodicity_num[sib1->sched_info[i].si_periodicity];
sched_index = i;
found = true;
}
}
}