STM32CubeWL
STM32CubeWL copied to clipboard
STM32Cube MCU Full FW Package for the STM32WL series - (HAL + LL Drivers, CMSIS Core, CMSIS Device, MW libraries plus a set of Projects running on boards provided by ST (Nucleo boards)
Hi, During the testing we have found something interesting. During the Join procedure device is using Network key instead of AppKey As per the LoRA spec device must use AppKey...
According to the documentation from Application Note AN5554: _The FUOTA application supports a full firmware upgrade image (entire firmware image sent to the end device) only runs on STM32WL55xx target_...
Hello, we are using release 1.0.0, We have configured RTC as below using clock source as LSE. But at every 24 hours time is increased with ~10 seconds. Example :...
Hello, I am using STM32WLE5CC with STM32Cube Studio 1.8.0. I am using M95512 SPI EEPROM, and SSD1306 I2C Oled. I can communicate with both peripheral and all works perfect. Our...
# Symptom A LoRaWAN application uses the trace utility to send and receive bytes on UART2. Bytes are sent using DMA TX with `UTIL_ADV_TRACE_COND_FSend()`, while reception uses RX interrupt, as...
After calling `vcom_Init`, the UART receiver is configured and ready to receive data. The problem is that when you later call `vcom_ReceiveInit`, the UART receiver might have already received some...
Hi, I've been working on evaluating different scenarios for a device which is not able to join a network immidiately and during my tests I found out that LmHandlerJoin can...
Hi there. I'm trying to run LoRa (NOT LoRaWAN) application. I even ran SubGHz_Phy_PingPong example code with no problem. I try to use my standard LoRaWAN gateway to follow up...
Hi, I've been playing around with STM32CubeWL using Nucleo-64 (STM32WL55). The default LoRaWan applications seem to work correctly against TTI stack, but when I tried to make my own using...
The error handling code below does not cover all the error scenarios in case `LmHandlerSend` fails to emit payload. [LmHandlerSend](https://github.com/STMicroelectronics/STM32CubeWL/blob/main/Projects/NUCLEO-WL55JC/Applications/LoRaWAN/LoRaWAN_End_Node/LoRaWAN/App/lora_app.c#L470-L477) ```c if (LORAMAC_HANDLER_SUCCESS == LmHandlerSend(&AppData, LORAWAN_DEFAULT_CONFIRMED_MSG_STATE, &nextTxIn, false)) { APP_LOG(TS_ON,...