Hi there
I think there is a problem in the variant
variants/STM32WLxx/WL54JCI_WL55JCI_WLE4J(8-B-C)I_WLE5J(8-B-C)I/variant_LORA_E5_MINI.h
It has
#define LORAWAN_RFSWITCH_RFO_LP_VALUES HIGH,HIGH
This caused my node to transmit about 24 times at 1/min to ChirpStack. Then it stopped. I read the Seeed Wio E5 HF documentation, and it says that this module transmits at high power only.
I modified the line as follows
#define LORAWAN_RFSWITCH_RFO_LP_VALUES LOW,HIGH
This is to prevent the LoRaWAN stack from forcing the node to use low transmission power because the module does not have this capability.
It now works for me with this modification.
Hi there
I think there is a problem in the variant
variants/STM32WLxx/WL54JCI_WL55JCI_WLE4J(8-B-C)I_WLE5J(8-B-C)I/variant_LORA_E5_MINI.h
It has
#define LORAWAN_RFSWITCH_RFO_LP_VALUES HIGH,HIGHThis caused my node to transmit about 24 times at 1/min to ChirpStack. Then it stopped. I read the Seeed Wio E5 HF documentation, and it says that this module transmits at high power only.
I modified the line as follows
#define LORAWAN_RFSWITCH_RFO_LP_VALUES LOW,HIGHThis is to prevent the LoRaWAN stack from forcing the node to use low transmission power because the module does not have this capability.
It now works for me with this modification.