View previous topic :: View next topic |
Author |
Message |
stinky
Joined: 05 Mar 2012 Posts: 99 Location: Central Illinois
|
16LF1828 fixed voltage reference |
Posted: Tue Jul 24, 2012 8:49 am |
|
|
I'm researching for a new design and I like a lot of what I see about the 16LF1828.
One thing that is providing confusion is the FIXED VOLTAGE REFERENCE that it can supply for the A/D and D/A.
Section 16.1.3 of the datasheet I have says that ADC voltage reference can be
"...FVR 2.028V
FVR 4.096V(not available on LF devices)"
But! The device header file I have with PCM V 4.132 gives me the constant "VREF_ADC_1v024" as an option to call with setup_vref()
Having resolution at approximately 1 volt is a design requirement so my question is:
Is my datasheet incorrect? Perhaps it's not taking in to account LF devices?
Would appreciate anyone who has experience with this chip.
Thank you |
|
|
RF_Developer
Joined: 07 Feb 2011 Posts: 839
|
|
Posted: Tue Jul 24, 2012 9:17 am |
|
|
Reading the datasheet shows that 16.1.3 ADC VOLTAGE REFERENCE appears to be incorrect: 1.024V Vref is available to the ADC on both LF and F versions.
In fact, the datasheet shos that the ADC simply takes the voltage from the internal reference, the actual voltage is set in the FVR section. not the ADC.
Obviously 4.096V Vref is not available on LF parts as the supply voltage is less than 4.096V! It may not work properly on F parts with lower supply voltages. Even 2.048V won't work correctly on parts supplied with less than about 2.5ishV.
Note on terminology. The resolution of the ADC is Vref/TOTAL ADC COUNTS. This ADC is 10 bit, and has 2^10 counts, or 1024. Therefore is resolution at Vref of 1.024V will be 1.024V/1024 = 1mV per bit. The ADC range is what I suspect you were referring to, which in this unipolar ADC is 0 to (2^10-1) * V per bit, i.e. one bit shy of Vref, or 1.023V
RF Developer |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19506
|
|
Posted: Tue Jul 24, 2012 9:29 am |
|
|
This has changed with different versions.
They had useable options, with:
#define VREF_COMP_DAC_2v048 0x08
#define VREF_COMP_DAC_4v096 0x0C
in the late 4.11x versions, and
#define VSS_FVR 0x03000000 //| Range 0-Fixed Voltage Reference
for the setup_adc_ports.
The last half dozen compilers seem to be rapidly introducing a whole suite of new bugs.
Best Wishes |
|
|
stinky
Joined: 05 Mar 2012 Posts: 99 Location: Central Illinois
|
|
Posted: Tue Jul 24, 2012 9:56 am |
|
|
RF_Developer:
Thank you for your input. I did not want to assume anything that wasn't in black & white. And you are absolutely correct. I meant the ADC range.
Ttelmah:
Thank you for your well wishing. Fortunate or not I leapt from 3.107 to 4.132 so I have probably experienced far fewer bugs with version changes. |
|
|
|