From: matt Date: Fri, 9 Jan 2009 03:43:19 +0000 (+0000) Subject: added frequency offset X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=be1969eec0791ff97ab2fecf97e65fe92022e167;p=debian%2Fgnuradio added frequency offset git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10204 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/usrp/host/lib/legacy/db_xcvr2450.cc b/usrp/host/lib/legacy/db_xcvr2450.cc index f84671dd..1e952e3c 100644 --- a/usrp/host/lib/legacy/db_xcvr2450.cc +++ b/usrp/host/lib/legacy/db_xcvr2450.cc @@ -649,7 +649,7 @@ db_xcvr2450_base::set_freq(double target_freq) * ok is True or False and indicates success or failure, * actual_baseband_freq is the RF frequency that corresponds to DC in the IF. */ - return d_xcvr->set_freq(target_freq); + return d_xcvr->set_freq(target_freq+d_lo_offset); } bool @@ -682,6 +682,7 @@ db_xcvr2450_base::freq_max() db_xcvr2450_tx::db_xcvr2450_tx(usrp_basic_sptr usrp, int which) : db_xcvr2450_base(usrp, which) { + set_lo_offset(4.25e6); //printf("db_xcvr2450_tx::db_xcvr2450_tx\n"); } @@ -730,7 +731,7 @@ db_xcvr2450_rx::db_xcvr2450_rx(usrp_basic_sptr usrp, int which) * @param usrp: instance of usrp.source_c * @param which: 0 or 1 corresponding to side RX_A or RX_B respectively. */ - + set_lo_offset(4.25e6); //printf("db_xcvr2450_rx:d_xcvr_2450_rx\n"); }