forked from meshtastic/firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for the LR1121 radio to the NRF52 Pro-Micro (meshtastic…
…#5515) * Added support for the LR1121 radio Added support for the LR1121 radio, tested as functional with an E80-900M2213S from CDEbyte. * Swap PNG for PDF * remove PNG * put TCXO voltage to 1.8, as in example file It worked at 1.6v, but ¯\_(ツ)_/¯ * Hopefully this will appease Trunk * Update rf switch pins and Schematic --------- Co-authored-by: Ben Meadors <[email protected]>
- Loading branch information
1 parent
b0e3039
commit 4edeca5
Showing
3 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
Binary file added
BIN
+117 KB
variants/diy/nrf52_promicro_diy_tcxo/Schematic_Pro-Micro_Pinouts 2024-12-14.pdf
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "RadioLib.h" | ||
|
||
// RF Switch Matrix SubG RFO_HP_LF / RFO_LP_LF / RFI_[NP]_LF0 | ||
// DIO5 -> RFSW0_V1 | ||
// DIO6 -> RFSW1_V2 | ||
// DIO7 -> ANT_CTRL_ON + ESP_IO9/LR_GPS_ANT_DC_EN -> RFI_GPS (Bias-T GPS) (LR11x0 only) | ||
|
||
static const uint32_t rfswitch_dio_pins[] = {RADIOLIB_LR11X0_DIO5, RADIOLIB_LR11X0_DIO6, RADIOLIB_LR11X0_DIO7, RADIOLIB_NC, | ||
RADIOLIB_NC}; | ||
|
||
static const Module::RfSwitchMode_t rfswitch_table[] = { | ||
// mode DIO5 DIO6 DIO7 | ||
{LR11x0::MODE_STBY, {LOW, LOW, LOW}}, {LR11x0::MODE_RX, {HIGH, LOW, LOW}}, | ||
{LR11x0::MODE_TX, {LOW, HIGH, LOW}}, {LR11x0::MODE_TX_HP, {LOW, HIGH, LOW}}, | ||
{LR11x0::MODE_TX_HF, {LOW, LOW, LOW}}, {LR11x0::MODE_GNSS, {LOW, LOW, HIGH}}, | ||
{LR11x0::MODE_WIFI, {LOW, LOW, LOW}}, END_OF_MODE_TABLE, | ||
}; |
This file contains 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