T-Lora Pager: Support LR1121 and SX1280 models (#7956)

* T-Lora Pager: Support LR1121 and SX1280 models

* Remove ifdefs
This commit is contained in:
WillyJL
2025-09-13 13:50:02 +02:00
committed by Ben Meadors
parent b6dd99917d
commit 6d2093650a
2 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#include "RadioLib.h"
static const uint32_t rfswitch_dio_pins[] = {
RADIOLIB_LR11X0_DIO5, RADIOLIB_LR11X0_DIO6,
RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC
};
static const Module::RfSwitchMode_t rfswitch_table[] = {
// mode DIO5 DIO6
{ LR11x0::MODE_STBY, { LOW, LOW } },
{ LR11x0::MODE_RX, { LOW, HIGH } },
{ LR11x0::MODE_TX, { HIGH, LOW } },
{ LR11x0::MODE_TX_HP, { HIGH, LOW } },
{ LR11x0::MODE_TX_HF, { LOW, LOW } },
{ LR11x0::MODE_GNSS, { LOW, LOW } },
{ LR11x0::MODE_WIFI, { LOW, LOW } },
END_OF_MODE_TABLE,
};