Associate III
February 12, 2023
Question
STM32WB do not print debug log in UART
- February 12, 2023
- 1 reply
- 1621 views
The example project BLE_p2pServer ishas the debug interface configurated such as it is possible to see what is happening on the Wireless Stack.
For example
However if I use the project IOC file to make a new project I'm not getting any information.
Actually I'm entering in app_entry.c in the correct loop. The command
APP_DBG_MSG("Wireless Firmware version %d.%d.%d\n", WirelessInfo.VersionMajor, WirelessInfo.VersionMinor, WirelessInfo.VersionSub);in void APPE_SysUserEvtRx is called. However APP_DBG_MSG return a printf which in this case do not print anything. I manage to get printf working using stdio.h in the main.c infinite while loop. Therefore I think I have to do the same for the BLE App side. But do not know where to define it.
Thx in advance.
I attached the IOC file used.