add variant for Adafruit Feather RP2040 with RFM95 LoRa Radio - #3277
Open
weebl2000 wants to merge 1 commit into
Open
add variant for Adafruit Feather RP2040 with RFM95 LoRa Radio#3277weebl2000 wants to merge 1 commit into
weebl2000 wants to merge 1 commit into
Conversation
Adds a variant for the Adafruit Feather RP2040 RFM95 (product 5714), which pairs an RP2040 with an SX1276-based RFM95 module. The RFM95 is wired to the RP2040's spi1 block, which this board's Arduino variant exposes as the default SPI object. Pin mapping is taken from the framework-arduinopico adafruit_feather_rfm variant: NSS=16, RST=17, DIO0=21, DIO1=22, SCK=14, MISO=8, MOSI=15. TX power is capped at 20dBm as the RFM95 is PA_BOOST only. Provides repeater and USB companion environments. BLE and WiFi companion environments are not included: the board has no wireless hardware other than the RFM95, and SerialBLEInterface/SerialWifiInterface are only implemented for esp32 and nrf52.
|
I can confirm that the repeater firmware works on two Adafruit RP2040 LoRa boards. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a variant for the Adafruit Feather RP2040 RFM95, which pairs an RP2040 with an SX1276-based RFM95 module.
The RFM95 is wired to the RP2040's spi1 block, which this board's Arduino variant exposes as the default SPI object. Pin mapping is taken from the framework-arduinopico adafruit_feather_rfm variant: NSS=16, RST=17, DIO0=21, DIO1=22, SCK=14, MISO=8, MOSI=15.
TX power is capped at 20dBm as the RFM95 is PA_BOOST only.
Provides repeater and USB companion environments. BLE and WiFi companion environments are not included: the board has no wireless hardware other than the RFM95, and SerialBLEInterface/SerialWifiInterface are only implemented for esp32 and nrf52.
Credits to Matt Hixson for testing this.