summaryrefslogtreecommitdiff
path: root/usrp2/firmware/apps
diff options
context:
space:
mode:
authoreb2008-10-26 23:50:51 +0000
committereb2008-10-26 23:50:51 +0000
commita538f5aa702bb3ee2a9e6bb9ac3ef1a2988ed36b (patch)
treef6d8661200041fac861ed702a752aa8ed70fb20c /usrp2/firmware/apps
parent267cd744dda0cc857b623060023c658cf97b48f4 (diff)
downloadgnuradio-a538f5aa702bb3ee2a9e6bb9ac3ef1a2988ed36b.tar.gz
gnuradio-a538f5aa702bb3ee2a9e6bb9ac3ef1a2988ed36b.tar.bz2
gnuradio-a538f5aa702bb3ee2a9e6bb9ac3ef1a2988ed36b.zip
Deadly printfs turned off... Specified gain ranges for TV Rx and RFX boards.
Still a problem setting the gain; Firmware takes too long to get back to service ethernet. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9860 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/firmware/apps')
-rw-r--r--usrp2/firmware/apps/app_common_v2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/usrp2/firmware/apps/app_common_v2.c b/usrp2/firmware/apps/app_common_v2.c
index f132e55fd..b048c3fca 100644
--- a/usrp2/firmware/apps/app_common_v2.c
+++ b/usrp2/firmware/apps/app_common_v2.c
@@ -506,10 +506,12 @@ void
print_tune_result(char *msg, bool tune_ok,
u2_fxpt_freq_t target_freq, struct tune_result *r)
{
+#if 0
printf("db_tune %s %s\n", msg, tune_ok ? "true" : "false");
putstr(" target_freq "); print_fxpt_freq(target_freq); newline();
putstr(" baseband_freq "); print_fxpt_freq(r->baseband_freq); newline();
putstr(" dxc_freq "); print_fxpt_freq(r->dxc_freq); newline();
putstr(" residual_freq "); print_fxpt_freq(r->residual_freq); newline();
printf(" inverted %s\n", r->inverted ? "true" : "false");
+#endif
}