RFM69 icon indicating copy to clipboard operation
RFM69 copied to clipboard

Arduino Due compatibility

Open itavero opened this issue 8 years ago • 2 comments

It seems that this library is currently not compatible with the Arduino Due (SAM3X8).

itavero avatar Mar 26 '17 08:03 itavero

Good observation. Actually it was not really intended to support anything but AVR (specifically 328p and 1284p).

LowPowerLab avatar Mar 27 '17 12:03 LowPowerLab

it could, try adding spi pins directly in rfm69.cpp:

Replace SPI.begin(); with : SPI.begin(SCK,MOSI,MISO,CS);

and in rfm69.h:

#define RF69_IRQ_PIN PIN_NUMBER #define RF69_SPI_CS PIN_NUMBER

ajaybnl avatar Mar 30 '20 12:03 ajaybnl