This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
hi,
I am working in ADC in zstack on cc2538 controller
with the below code written
adc_digital_value=HalAdcRead ( HAL_ADC_CHN_AIN5,HAL_ADC_RESOLUTION_8);
I am always getting a value of 0-127 (instead of 0-255).
I am only getting 7 bit resolution with 8 bit resolution set.
Can anyone help me in this I tried to debug a lot but not getting the problem.
AMIT
Hi,
You can't get a 8-bit sample by using API, there are 7, 9, 10 and 12 bits options available.
The naming in Z-stack is an alias to actual sampling resolution.
Yes, I think the HalAdcRead function should be updated because it's confusing:
switch (resolution) { case HAL_ADC_RESOLUTION_8: reading >>= 8; break; case HAL_ADC_RESOLUTION_10: reading >>= 6; break; case HAL_ADC_RESOLUTION_12: reading >>= 4; break; case HAL_ADC_RESOLUTION_14: default: reading >>= 2; break;
And as we can read in the CC2538 User Guide, the resolutions are 7,9,10 and 12 bits (ENOB).
Something like this should be the solution
switch (resolution) { case HAL_ADC_RESOLUTION_7: reading >>= 9; break; case HAL_ADC_RESOLUTION_9: reading >>= 7; break; case HAL_ADC_RESOLUTION_10: reading >>= 6; break; case HAL_ADC_RESOLUTION_12: default: reading >>= 4; break;