NUCLEO-WBA25CE1 "Bootloader limitation"
Hi, As per UM3610 « section 7.7 », a "Bootloader limitation" has been found in NUCLEO-WBA25CE1. Please refer to "Workaround" section if you are facing this limitation.
Ask questions and discuss STM32 wireless solutions and their implementation for running Bluetooth LE, Zigbee, LoRaWAN applications.
Hi, As per UM3610 « section 7.7 », a "Bootloader limitation" has been found in NUCLEO-WBA25CE1. Please refer to "Workaround" section if you are facing this limitation.
Dear all, The X-CUBE-MATTER Expansion Package is now available on our official website following this link MATTER - Matter software expansion for STM32Cube - STMicroelectronics It is a reference implementation for the demonstration of Matter on ST...
Please go and visit our wiki pages where you can find a lot of information on our wireless product families (WB, WBA, WL) and the supported protocols: BLE, Zigbee, Thread, Matter, Lora, ... To begin your technical journey, please start from this top ...
I'm developing an application which uses both USB mass storage and BLE. I've started by building two separate applications using STM32CubeMX:A USB mass storage application communicating with a microSD card over SPI1A BLE P2P serverBoth of these work ...
I would like to be able to turn BLE off (e.g. with a timer) even if it is currently connected. I know I can stop it advertising, but this doesn't seem to kill the connection. Basically, after a timeout, I would like the BEL to shutdown and stop using...
Hello! I am using PWM to generate 1.25 ms period pulse to trigger a LED strip light . In main.c , properly in while(1) when I called HAL_TIM_PWM_Start_DMA followed by HAL_Delay the program got stuck in uint32_t tickstart = HAL_GetTick(); . When I run...
I have a custom test/debug fixture for a custom board. It is based on the ST-LINK/V3-MODS board to programm the target MCU (STM32WB55).The other interfaces (GPIO, I2C) are used to control functions like power supply to the target etc.When I try to de...
As far as I understand, the OTA example provided (BLE_Ota) supports either flashing the user application directly or handing the processing over to CPU2 for decryption of the Wireless firmware (which comes as an encrypted and signed package).Is it po...
When will it be possible to start a project with components from the series STM32WLE?
I am using the following code: while(HAL_I2C_Master_Transmit(&hi2c1, DEVICE_ADDR, i2cbuffer, 1, 1000) != HAL_OK) { /* Error_Handler() function is called when Timeout error occurs. When Acknowledge failure occurs (Slave doesn't acknowledge its...
I am using the STM32WB in master mode, polling a single LSM303AGR accelerometer. Using the HAL transmit routine as follows:if(hi2c1.State == HAL_I2C_STATE_READY) { /* Now send the device address and register to be read with 1 sec delay max*/ while(...
I2C Error trappingI am using the STM32WB in master mode, polling a single LSM303AGR accelerometer. Using the HAL transmit routine as follows:if(hi2c1.State == HAL_I2C_STATE_READY) { /* Now send the device address and register to be read with 1 sec d...