Any support or reported use for the new STM32WLE?

And the regional settings seem to have been reworked.

Is this a merge of Matt’s LMIC with BasicMac?

Wow this is great. Thanks a lot for sharing this @Edzelf!

The library is a modified version of arduino-lmic/src at master · matthijskooijman/arduino-lmic · GitHub.
I choose this one because it has SX126x support.

1 Like

After looking at how Edzelf managed to get Arduino+LoRaWAN working on the Wio-E5 (ex Lora-E5) module, I went to read a bit more. Stm32duino has come a long way, and now supports the STM32WL series. They also have their LoRaWAN library, which is jointly maintained by Matthijs Kooijman.

I managed to get their Basic example working on the Wio-E5 by adding the following defines at the top of the sketch before the #include statements.

#define RBI_CONF_RFO_HP
#define LORAWAN_RFSWITCH_PINS PA4,PA5
#define LORAWAN_RFSWITCH_PIN_COUNT 2
#define LORAWAN_RFSWITCH_OFF_VALUES HIGH,LOW
#define LORAWAN_RFSWITCH_RX_VALUES HIGH,LOW
#define LORAWAN_RFSWITCH_RFO_LP_VALUES LOW,HIGH
#define LORAWAN_RFSWITCH_RFO_HP_VALUES LOW,HIGH
1 Like

That reminds me, I still need to create a pull request for my changes to the LoRaWAN library for the E5 based boards, Nice job voor ‘Koningsdag’.

3 Likes