Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently C programming 10-bit ADC inside 32-bit ARM9 based microcontroller. This 10-bit ADC is saving digitalised analog value in 10 bit register named "ADC_DATA_REG" that uses bits 9-0 (LSB). I have to read this register's value and compare it to a 32 bit constant named "CONST". My attempt looked like this, but it isn't working. What am i missing here? Should i use shift operations? This is my frst time dealing with this so any example will be welcomed.

The below code has been edited regarding coments and anwsers and is still not working. I allso added a while statement which checks if ADC_INT_STATUS flag is raized before reading ADC_DATA_REG. The flag mentioned indicates an interrupt which is pending as soon as ADC finishes conversion and data is ready to read from ADC_DATA_REG. It turns out data remains 0 even after assigning value of register ADC_DATA_REG to it, so that is why my LED is always on. And it allso means i got an interrupt and there should be data in ADC_DATA_REG, instead it seems there isnt...

#define CONST 0x1FF
unsigned int data = 0;

while (!(ADC_INT_STATUS_REG & ADC_INT_STATUS))
data = ADC_DATA_REG; 

if ((data & 0x3FF)> CONST){ 
   //code to turn off the LED 
} 
else{ 
   //code to turn on the LED 
}
share|improve this question
1  
Mask the value bits: if ((data & 0x3ff) > CONST) {} – Hans Passant Nov 8 '11 at 14:02
2  
"isn't working" how exactly? Do you get a compile error, runtime error, or wrong results? – Igor Skochinsky Nov 8 '11 at 14:14
I did edit the code above and i implemented all the proposals you gave me, but still my data remains 0 all the time and my LED is allways on even if i rotate potentiometer. – 71GA Nov 9 '11 at 10:56
Looks like you're missing a ;, so while loops on flag BEFORE reading DATA. – domen Nov 11 '11 at 20:06

1 Answer

You dont write how ADC_DATA_REG fetches the 10-bit value. But I assume that it is only a read to some IO-address. In this case the read from the address return 32 bits. In your case only the lower 10 are valid (or interresting). The other 22 bit can be anything (e.g. status bits, rubbish, ...), so before you proceed with the data, you should zero the first 22 bits.

In case the 10-bit value is signed, you should also perform a sign extension and correct your datatype (I know the port IO is unsigned, but maybe the 10-bit value the adc returns isnt). Then your comparison should work.

share|improve this answer
I did initialize data with 0 now and i allso masked the bits, but problem remains. – 71GA Nov 9 '11 at 10:26
2  
Also, if ADC_DATA_REG (or the other two regs) is #define'd something like (*(unsigned*)memory_address_of_ADC_DATA_REG), a volatile may be needed: (*(volatile unsigned*)memory_address_of_ADC_DATA_REG). And then the addresses can be wrong, the logic for reading/writing data can be wrong, the ADC may not be properly configured/initialized... It's hard to tell what exactly is/can be wrong without knowing the system. – Alexey Frunze Nov 9 '11 at 11:32
I did define it in sepparate .h file as #define ADC_DATA_REG (*((volatile unsigned int *) 0x13002008)) but it is a good comment TY. – 71GA Nov 9 '11 at 11:34
1  
+1 @Alex, good comment. Another thing maybe the byte ordering. Host and Device can have different understanding of byte ordering, and the 10 lsb can be somewhere, where you dont expect them. – flolo Nov 9 '11 at 17:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.