#include #include ..... SIGNAL(SIG_INTERRUPT0) { uart_putc('$'); } SIGNAL(SIG_INTERRUPT1) { uart_putc('§'); } ...... int main(void) { // Hauptprogramm uart_init( UART_BAUD_SELECT(UART_BAUD_RATE,XTAL_CPU) ); // INT0 und INT1 - Interrupt aktivieren MCUCR = 0x0f; GICR = 0xc0; sei(); ... }