ADC IN DEMO9S08QG8

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

ADC IN DEMO9S08QG8

1,322 Views
mmm
Contributor I
I want to do an ADC using the demo. To check that it converts, I have done this program, where the input channel is connected to the port B, pin 7 output:

(...)
                mov  #$80,PTBDD   ;port B, pin 7=1
init_adc:   mov  #$40,ADCSC1
                mov  #$00,ADCSC2
                mov  #$98,ADCCFG
                mov  #$01,APCTL1
                   

wait:      lda  ADCSC1                              ; waits for bit COCO=1
             and  #80h
             cbeqa  #80h, converted
              jmp  wait
          
                    
converted: lda  ADCRH
                 and  #03h
                 sta  sumh
                 lda    ADCRL
                sta  suml

(...)

I've tried, but it doesn't work, it doesn't start converting.
Can someone help me? Where is the mistake?
Labels (1)
0 Kudos
3 Replies

367 Views
mmm
Contributor I
I've made the changes you told, but still it doesn't work; I realize that the bit ADACT (ADCSC2 bit 7) is always 0.

(...)
                   mov  #$80,PTBDD
init_adc:      mov  #$98,ADCCFG
                   mov  #$01,APCTL1
                   mov  #$00,ADCSC2
                   mov  #$00,ADCSC1
                              

wait:    tst  ADCSC1
           bpl  wait
          
                    
conv:      lda  ADCRH
           sta  sumh
           lda    ADCRL
           sta  suml

(....)
0 Kudos

367 Views
tonyp
Senior Contributor II
Do you also make sure this holds true?

Whichever clock is selected, its frequency must fall within the specified frequency range for ADCK. If the
available clocks are too slow, the ADC will not perform according to specifications.  If the available clocks are too fast, then the clock must be divided to the appropriate frequency. This divider is specified by the
ADIV bits and can be divide-by 1, 2, 4, or 8.


Message Edited by tonyp on 2008-12-10 06:52 PM
0 Kudos

367 Views
tonyp
Senior Contributor II
Several problems without looking too deeply.

Do not write to the APCTL1 register (not sure if it matters in this case).  The reset default should be OK.

Write to ADCCFG first to "enable" the A/D subsystem.  Not really enable, but you must configure dividers before you start a conversion rather than during one.

The value $40 turns on interrupts.  But you use polling, so make up your mind which you want, interrupt-driven or polled mode.

Write to the ADCSC1 (with the channel number, channel zero in your case, correct?) last.

Also, you can optimize the check for COCO with the BPL instruction.

Wait tst ADCSC1
  bpl Wait

Also, you do not need the AND #3 instruction because the remaining bits are always zero.
0 Kudos