Build fixes

This commit is contained in:
Paul Sutton 2015-03-05 12:35:09 +00:00
parent 5775025ca6
commit 7b403e2882
2 changed files with 14 additions and 5 deletions

View File

@ -55,7 +55,7 @@ add_executable(pdsch_ue pdsch_ue.c cuhd_utils.c)
target_link_libraries(pdsch_ue lte_rrc lte_phy)
add_executable(pdsch_enodeb pdsch_enodeb.c)
target_link_libraries(pdsch_enodeb lte_rrc lte_phy)
target_link_libraries(pdsch_enodeb lte_rrc lte_phy pthread)
IF(${CUHD_FIND} EQUAL -1)
SET_TARGET_PROPERTIES(pdsch_ue PROPERTIES COMPILE_DEFINITIONS "DISABLE_UHD")

View File

@ -143,9 +143,11 @@ int main(int argc, char **argv) {
}
uint32_t N_id_2 = cell_id%3;
uint32_t N_id_1 = cell_id/3;
#ifndef DISABLE_GRAPHICS
if (!disable_plots)
init_plots();
#endif
flen = 4800*(fft_size/64);
@ -270,8 +272,13 @@ int main(int argc, char **argv) {
INFO("No space for CFO computation. Frame starts at \n",peak_idx);
}
if (!disable_plots && sss_synch_subframe(m0,m1) == 0)
do_plots_sss(sss.corr_output_m0, sss.corr_output_m1);
if(sss_synch_subframe(m0,m1) == 0)
{
#ifndef DISABLE_GRAPHICS
if (!disable_plots)
do_plots_sss(sss.corr_output_m0, sss.corr_output_m1);
#endif
}
} else {
nof_nodet++;
@ -302,9 +309,11 @@ int main(int argc, char **argv) {
printf("\n");
}
#ifndef DISABLE_GRAPHICS
if (!disable_plots)
do_plots(pss.conv_output_avg, pss.conv_output_avg[peak_idx], pss.fft_size+pss.frame_size-1, ce);
#endif
last_peak = peak_idx;
}