Zitat Zitat von kollimann
int2=INT1,EIMSK.1,4 ; intname, enable register and bit, number of modes
int2m1=LOW LEVEL,EICRA.2-0,EICRA.3-0 ;first mode, bits to set and value
int2m2=CHANGE,EICRA.2-1,EICRA.3-0
int2m3=FALLING,EICRA.2-0,EICRA.3-1
int2m4=RISING,EICRA.2-1,EICRA.3-1
int3=INT2,EIMSK.2,4 ; intname, enable register and bit, number of modes
int3m1=LOW LEVEL,EICRA.2-0,EICRA.3-0 ;first mode, bits to set and value
int3m2=CHANGE,EICRA.2-1,EICRA.3-0
int3m3=FALLING,EICRA.2-0,EICRA.3-1
int3m4=RISING,EICRA.2-1,EICRA.3-1


für mich gerade viele Fragezeichen................
Ich würde denken, dass du einen Volltreffer gelandet hast.

Bei INT2 (fett) werden die Bits vom Int1 gesetzt, nämlich 2 und 3. Ersetze die fetten Zeilen doch mal durch folgendes:
int3m1=LOW LEVEL,EICRA.4-0,EICRA.5-0 ;first mode, bits to set and value
int3m2=CHANGE,EICRA.4-1,EICRA.5-0
int3m3=FALLING,EICRA.4-0,EICRA.5-1
int3m4=RISING,EICRA.4-1,EICRA.5-1

und probier es noch mal aus.