1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
#include <avr/interrupt.h>
#if defined(__AVR_ATmega128__)
# define FLAGREG EIFR
# define MASKREG EIMSK
# if defined(TEST_INT1)
# define FLAGBIT _BV(INTF1)
# else
# define FLAGBIT _BV(INTF0)
# endif
# define PORTREG PIND
# define CTRLREG EICRA
#endif
#if defined(__AVR_ATmega16__)
# define FLAGREG GIFR
# define MASKREG GICR
# if defined(TEST_INT1)
# define FLAGBIT _BV(INTF1)
# else
# if defined(TEST_INT2_16)
# define FLAGBIT _BV(INTF2)
# else
# define FLAGBIT _BV(INTF0)
# endif
# endif
# if defined(TEST_INT2_16)
# define PORTREG PINB
# define CTRLREG MCUCSR
# else
# define PORTREG PIND
# define CTRLREG MCUCR
# endif
#endif
#if defined(__AVR_ATmega48__)
# define FLAGREG EIFR
# define MASKREG EIMSK
# if defined(TEST_INT1)
# define FLAGBIT _BV(INTF1)
# else
# define FLAGBIT _BV(INTF0)
# endif
# define PORTREG PIND
# define CTRLREG EICRA
#endif
#if defined(__AVR_ATtiny2313__)
# define FLAGREG EIFR
# define MASKREG GIMSK
# if defined(TEST_INT1)
# define FLAGBIT _BV(INTF1)
# else
# define FLAGBIT _BV(INTF0)
# endif
# define PORTREG PIND
# define CTRLREG MCUCR
#endif
#if defined(__AVR_AT90S8515__)
# define FLAGREG GIFR
# define MASKREG GIMSK
# if defined(TEST_INT1)
# define FLAGBIT _BV(INTF1)
# else
# define FLAGBIT _BV(INTF0)
# endif
# define PORTREG PIND
# define CTRLREG MCUCR
#endif
#if defined(__AVR_AT90S4433__)
# define FLAGREG GIFR
# define MASKREG GIMSK
# if defined(TEST_INT1)
# define FLAGBIT _BV(INTF1)
# else
# define FLAGBIT _BV(INTF0)
# endif
# define PORTREG PIND
# define CTRLREG MCUCR
#endif
volatile unsigned char cnt_irq = 0;
volatile unsigned char hs_in = 0;
volatile unsigned char hs_out = 0;
volatile unsigned char hs_cmd = 0;
volatile unsigned char hs_data = 0;
volatile unsigned char dis_mask = 0;
#if defined(TEST_INT1)
ISR(INT1_vect) {
#else
# if defined(TEST_INT2_16)
ISR(INT2_vect) {
# else
ISR(INT0_vect) {
# endif
#endif
cnt_irq++;
if(dis_mask != 0)
MASKREG &= ~FLAGBIT;
}
int main() {
while(1) {
// do we have a new command?
if(hs_in != hs_out) {
switch(hs_cmd) {
default:
// noop
break;
case 1:
// sei or cli
if(hs_data != 0) {
cli();
MASKREG |= FLAGBIT;
sei();
} else {
cli();
MASKREG &= ~FLAGBIT;
}
break;
case 2:
// clear interrupt counter, this is a atomic op, so we don't need to
// disable interrupt
cnt_irq = 0;
break;
case 3:
// reset flag bit
FLAGREG |= FLAGBIT;
break;
case 4:
// set control register
CTRLREG = hs_data;
break;
case 5:
// get port input
hs_data = PORTREG;
break;
case 6:
// get flag register
hs_data = FLAGREG;
break;
case 7:
// get mask register
hs_data = MASKREG;
break;
}
// clear command
hs_cmd = 0;
// handshake
hs_out = hs_in;
}
} // this will never return
return 0;
}
|