-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
We need a new build of both 2.2 and later 3.0 which is for the feather M0 RFM69 board (https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio?view=all#downloads). Unfortunately our basic M0 build only exposes the pins on the outside of the feather and is unable to access the CS, RST, and interrupt lines of the RFM radio built-in to this feather (which use pins routed internally). Here's the mapping to SAMD21 pins:
D3 = RFM69 D0/interrupt = SAMD21 PA09 (this line is currently unused by the RFM69 library but we should expose it for the future)
D4 = RFM69 RST = SAMD21 PA08
D8 = RFM69 CS = SAMD21 PA06
Please create a Feather M0 RFM69 build that includes at least these pins as new digital inputs/outputs routed to the appropriate SAMD21 pins. If you need a reference the schematic is here: https://cdn-learn.adafruit.com/assets/assets/000/032/914/original/feather_schem.png?1465421956
Alternatively I'd recommend we add to our basic build or also create a new 'super' M0 build that exposes all SAMD21 pins. This would save some pain in the future if people are using new boards, other hardware, etc. before custom builds are ready.