diff options
author | jcorgan | 2008-01-22 00:06:28 +0000 |
---|---|---|
committer | jcorgan | 2008-01-22 00:06:28 +0000 |
commit | c0444b8eb63a4783657d55bef1a7e3c027fd035c (patch) | |
tree | 5e30160f6faac8aabefa53418a1e709d6efc80e1 | |
parent | 61400405ef05a34f1dd34aaf23a2797a16e219bf (diff) | |
download | gnuradio-c0444b8eb63a4783657d55bef1a7e3c027fd035c.tar.gz gnuradio-c0444b8eb63a4783657d55bef1a7e3c027fd035c.tar.bz2 gnuradio-c0444b8eb63a4783657d55bef1a7e3c027fd035c.zip |
Further attempted noise reduction for ticket:230
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7486 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r-- | gr-usrp/src/db_flexrf.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gr-usrp/src/db_flexrf.py b/gr-usrp/src/db_flexrf.py index b998e1088..b5a0cab13 100644 --- a/gr-usrp/src/db_flexrf.py +++ b/gr-usrp/src/db_flexrf.py @@ -88,6 +88,9 @@ class flexrf_base(db_base.db_base): def __del__(self): #print "flexrf_base.__del__" self._u.write_io(self._which, self.power_off, POWER_UP) # turn off power to board + # Power down VCO/PLL + self.PD = 3 + self._write_control(self._compute_control_reg()) self._enable_refclk(False) # turn off refclk self.set_auto_tr(False) @@ -410,15 +413,19 @@ class _AD4360_common(object): R = (self.R_RSV<<22) | (self.BSC<<20) | (self.TEST<<19) | (self.LDP<<18) \ | (self.ABP<<16) | (self.R_DIV<<2) - control = (self.P<<22) | (self.PD<<20) | (self.CP2<<17) | (self.CP1<<14) | (self.PL<<12) \ - | (self.MTLD<<11) | (self.CPG<<10) | (self.CP3S<<9) | (self.PDP<<8) | \ - (self.MUXOUT<<5) | (self.CR<<4) | (self.PC<<2) + control = self._compute_control_reg() N = (self.DIVSEL<<23) | (self.DIV2<<22) | (self.CPGAIN<<21) | (self.B_DIV<<8) | \ (self.N_RSV<<7) | (self.A_DIV<<2) return (R,control,N,actual_freq/self.freq_mult) + def _compute_control_reg(self): + control = (self.P<<22) | (self.PD<<20) | (self.CP2<<17) | (self.CP1<<14) | (self.PL<<12) \ + | (self.MTLD<<11) | (self.CPG<<10) | (self.CP3S<<9) | (self.PDP<<8) | \ + (self.MUXOUT<<5) | (self.CR<<4) | (self.PC<<2) + return control + def _refclk_divisor(self): """ Return value to stick in REFCLK_DIVISOR register |