mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-06 19:49:19 +00:00

* Add RF switch settings for STM32WL variants * Shuffle ifdefs in STM32WLE5JCInterface to make it not get built by other targets
9 lines
481 B
C
9 lines
481 B
C
/* https://wiki.seeedstudio.com/LoRa-E5_STM32WLE5JC_Module/
|
|
* Wio-E5 module ONLY transmits through RFO_HP
|
|
* Receive: PA4=1, PA5=0
|
|
* Transmit(high output power, SMPS mode): PA4=0, PA5=1 */
|
|
static const RADIOLIB_PIN_TYPE rfswitch_pins[5] = {PA4, PA5, RADIOLIB_NC, RADIOLIB_NC, RADIOLIB_NC};
|
|
|
|
static const Module::RfSwitchMode_t rfswitch_table[4] = {
|
|
{STM32WLx::MODE_IDLE, {LOW, LOW}}, {STM32WLx::MODE_RX, {HIGH, LOW}}, {STM32WLx::MODE_TX_HP, {LOW, HIGH}}, END_OF_MODE_TABLE};
|