discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Discuss-gnuradio] Re: usrp1 harmonic issue


From: Markus Feldmann
Subject: [Discuss-gnuradio] Re: usrp1 harmonic issue
Date: Wed, 01 Apr 2009 19:21:54 +0200
User-agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103)

Eric Blossom schrieb:
On Wed, Apr 01, 2009 at 07:32:04AM +0000, feldmaus wrote:
Eric Blossom <eb <at> comsec.com> writes:

To disable automatic ADC control on all ADC's:

  u.set_dc_offset_cl_enable(0x0, 0xf)

Then set the offset that you want for each ADC using:

  u.set_adc_offset(0, offset0)
  u.set_adc_offset(1, offset1)
  u.set_adc_offset(2, offset2)
  u.set_adc_offset(3, offset3)

And if i only want to diable the automatic dc offset loop at
ADC_0 and ADC_1, then:
u.set_dc_offset_cl_enable(0x3, 0x3)

Is this correct ???

No, you'd want

  u.set_dc_offet_cl_enable(0x0, 0x3)

The mask specifies which of the bits will be touched.  value is the
value you want for those bits.
Hi and thanks for your answer,

but then i didn't understand what you try with,
u.set_adc_offset(0, offset0)
u.set_adc_offset(1, offset1)
u.set_adc_offset(2, offset2)
u.set_adc_offset(3, offset3)

As you wrote above, the mask is the bits you want to touch
and the bits is the value you want to store, but why do you
want to store a value of int(2) and int(3).
As i understand you, there are only 2 logically
values for the bits we store int(0) and int(1).

Is this correct ?

Regards Markus





reply via email to

[Prev in Thread] Current Thread [Next in Thread]