aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/WInterrupts.c
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2012-03-02 18:58:53 -0500
committerDavid A. Mellis <d.mellis@arduino.cc>2012-03-02 18:58:53 -0500
commit4fade7007fbe2049f4f7a3867c9f9a76f8c06db1 (patch)
tree4d1fafa6fdd61c1b7806cdea38b2a9990713011c /cores/arduino/WInterrupts.c
parent0c00db7809760aae21678615b153d4a09709d018 (diff)
Small changes for the ATmega1284.
http://code.google.com/p/arduino/issues/detail?id=736
Diffstat (limited to 'cores/arduino/WInterrupts.c')
-rwxr-xr-xcores/arduino/WInterrupts.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cores/arduino/WInterrupts.c b/cores/arduino/WInterrupts.c
index 4f035eb..3b9fe08 100755
--- a/cores/arduino/WInterrupts.c
+++ b/cores/arduino/WInterrupts.c
@@ -121,8 +121,6 @@ void attachInterrupt(uint8_t interruptNum, void (*userFunc)(void), int mode) {
#elif defined(MCUCR) && defined(ISC20) && defined(GIMSK) && defined(GIMSK)
MCUCR = (MCUCR & ~((1 << ISC20) | (1 << ISC21))) | (mode << ISC20);
GIMSK |= (1 << INT2);
- #else
- #warning attachInterrupt may need some more work for this cpu (case 1)
#endif
break;
#endif