diff options
author | jcorgan | 2008-12-26 19:31:44 +0000 |
---|---|---|
committer | jcorgan | 2008-12-26 19:31:44 +0000 |
commit | a09700c26a39ebddbeb56b5ecddedf50f0cc7ac4 (patch) | |
tree | ab0965177ca1e3a30e6a4ba0335bf8d9acc86531 /usrp/host/lib/legacy/db_dtt768.cc | |
parent | d755f1395daf64f3a75d5947cd71b0a61b099392 (diff) | |
download | gnuradio-a09700c26a39ebddbeb56b5ecddedf50f0cc7ac4.tar.gz gnuradio-a09700c26a39ebddbeb56b5ecddedf50f0cc7ac4.tar.bz2 gnuradio-a09700c26a39ebddbeb56b5ecddedf50f0cc7ac4.zip |
Fix missing set_bw call in new daughterboard API. Reconciled implementations between different boards to return true or false (success).
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10168 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/host/lib/legacy/db_dtt768.cc')
-rw-r--r-- | usrp/host/lib/legacy/db_dtt768.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usrp/host/lib/legacy/db_dtt768.cc b/usrp/host/lib/legacy/db_dtt768.cc index c2e9c9821..cae8b7347 100644 --- a/usrp/host/lib/legacy/db_dtt768.cc +++ b/usrp/host/lib/legacy/db_dtt768.cc @@ -239,7 +239,7 @@ db_dtt768::spectrum_inverted() return d_inverted; } -void +bool db_dtt768::set_bw(float bw) { /* @@ -248,6 +248,8 @@ db_dtt768::set_bw(float bw) d_bw = bw; set_freq(d_freq); + + return true; // FIXME: propagate set_freq result } void |