Struggling with Example Application. Heart Rate not broadcasting. No main loop.
Using the latest STM32WB V1.13.1 Firmware Package I can't seem to get any of the example BLE applications to run.
I have upgraded the co-processor firmware and FUS accordingly.
Trying to run this application I imported into STM32CubeIDE and compiled. Set my debugger and run.
STM32WB5MM-DK\Applications\BLE\BLE_HeartRate
I get the following output on my UART terminal
Wireless Firmware version 1.13.0
Wireless Firmware build 5
FUS version 1.2.0
SHCI_SUB_EVT_CODE_READY - WIRELESS_FW_RUNNING
DBGMCU_GetRevisionID= 2001The OLED display says "ST BLE HEART RATE"
But the application appears to be frozen and not advertising. Verified with 2 phones using ST BLE Sensor and nRF Connect apps. No Advertising.
So from there i added a printer into the main loop.
if (timerTick + 1000 < HAL_GetTick()){//should print 1HZ
APP_DBG_MSG("%d LOOP\n", HAL_GetTick());
}But nothing gets printed. Where can i go from here?