diff options
Diffstat (limited to 'usrp2/host/lib/usrp2.cc')
-rw-r--r-- | usrp2/host/lib/usrp2.cc | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/usrp2/host/lib/usrp2.cc b/usrp2/host/lib/usrp2.cc index 90a31b220..6a54c6da6 100644 --- a/usrp2/host/lib/usrp2.cc +++ b/usrp2/host/lib/usrp2.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2008 Free Software Foundation, Inc. + * Copyright 2008,2009 Free Software Foundation, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -187,6 +187,12 @@ namespace usrp2 { } bool + usrp2::set_rx_lo_offset(double frequency) + { + return d_impl->set_rx_lo_offset(frequency); + } + + bool usrp2::set_rx_center_freq(double frequency, tune_result *result) { return d_impl->set_rx_center_freq(frequency, result); @@ -279,6 +285,12 @@ namespace usrp2 { } bool + usrp2::set_tx_lo_offset(double frequency) + { + return d_impl->set_tx_lo_offset(frequency); + } + + bool usrp2::set_tx_center_freq(double frequency, tune_result *result) { return d_impl->set_tx_center_freq(frequency, result); |