ATmega16 externer Interrupt 0
In diesem Sorucecodebeispiel wird der externe Interrupt 0 des ATmega16 demonstriert.
Beschreibung
Am eingang des Externen Interrupts 0 wird auf eine fallende flanke gewartet. Sobald diese eintritt, wird das Ausgangssignal an PA0 getoggelt. |
Please visit: the four |
#include <avr/io.h>
#include <avr/interrupt.h>
int main(void)
{
DDRA = 0x01; // Setup PA1 as output
PORTD = 0x04; // Activate pullupressistor of PD2
GICR |= (1<<INT0); // Enable INT0
MCUCR |= (1<<ISC01); // INT0 is executed on falling edge
sei(); // Set the I-bit in SREG
for(;;); // The main loop stays empty and
// could contain code you want.
return 0; // This line will never be executed
}
// Interrupt subroutine for external interrupt 0
ISR(INT0_vect)
{
PORTA ^= 0x01; // Toggle PA0
}
Download C-Sourcefile mit ASCII-Schema: C-Sourcefile mit ACII-Schema
Signalplots
Gelb: Digitaler Ausgang PA0
|