This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ADC CONVERTER 5 v power supply with LPC2368

i need help i wrote dies small code for a test conversion of my power supply (5V) i try to see it on debugger Mode in AD convert 0;

this function is for the conversion :

AD0CR |=0x00000000;// AD convertion start

while(AD0DR & 0x80000000 )==0; // conversion complet

return ((AD0DR&0x03FF)>>6);

in my main function how schould i write to see the result of the conversion in AD0 convert Window in debugger Mode
i wrote this but didn´t function

int main ()
{ adc_init(); unsigned int result; while(1) { result= adc_read; }
} the problem are: is my conversion code o.k?
is my main function o.k ; so that i can bekomme 1024 (5v) in my AD convert window?

i use LPC2368, ARM7
thx for a helping code or suggestion

Parents
  • o.k thkx in this case it mean the same

    because
    (AD0DR&0x03FF) choose the right channel(in my case ch 0).... >> shiftihng it to right 6 place of 10 Bit value;

    or AD0DR>>6; first shifting and choose the right channel (AD0DR>>6)&0x03FF

    can you please have a complet code For an AD- Convert (ad_init(); ad_read(); the main function to managed and view the result of the convertion) it will be so helpfull

    Thx Webmaster

Reply
  • o.k thkx in this case it mean the same

    because
    (AD0DR&0x03FF) choose the right channel(in my case ch 0).... >> shiftihng it to right 6 place of 10 Bit value;

    or AD0DR>>6; first shifting and choose the right channel (AD0DR>>6)&0x03FF

    can you please have a complet code For an AD- Convert (ad_init(); ad_read(); the main function to managed and view the result of the convertion) it will be so helpfull

    Thx Webmaster

Children