Merge pull request #39 from wifixcort/master

Support for SAMD21
This commit is contained in:
Felix Rusu 2016-03-29 20:59:58 -04:00
commit a0c3be016c
1 changed files with 4 additions and 1 deletions

View File

@ -45,6 +45,9 @@
#elif defined(__AVR_ATmega32U4__)
#define RF69_IRQ_PIN 3
#define RF69_IRQ_NUM 0
#elif defined(__arm__)//Use pin 10 or any pin you want
#define RF69_IRQ_PIN 10
#define RF69_IRQ_NUM 10
#else
#define RF69_IRQ_PIN 2
#define RF69_IRQ_NUM 0
@ -150,4 +153,4 @@ class RFM69 {
virtual void unselect();
};
#endif
#endif