rico65
16.05.2006, 21:58
Ich habe ein RN-MiniControl mit ATMega168 und schaffe es
nicht, eine ISR für einen Pegelwechsel an PB4/PCINT4 aufzurufen.
Danke für Hilfe.
Code:
Config Portb = Input
Portb = &HF 'activate pull up
Enable Interrupts 'enable global ints
Enable Pcint0 'we enable pcint0 as this has pcint0-pcint7
On Pcint0 Isr_pcint0 'jump to this label when one of the pins is changed
Do
wait 1
Loop
Isr_pcint0:
Print "Pin change " ; 'wird nie gerufen !!
Return
End
nicht, eine ISR für einen Pegelwechsel an PB4/PCINT4 aufzurufen.
Danke für Hilfe.
Code:
Config Portb = Input
Portb = &HF 'activate pull up
Enable Interrupts 'enable global ints
Enable Pcint0 'we enable pcint0 as this has pcint0-pcint7
On Pcint0 Isr_pcint0 'jump to this label when one of the pins is changed
Do
wait 1
Loop
Isr_pcint0:
Print "Pin change " ; 'wird nie gerufen !!
Return
End