2022-11-21 08:40 AM
Hello,
I am following this tutorial -
The first task is to change the following:
#define CFG_DEBUGGER_SUPPORTED 1
#define CFG_DEBUG_BLE_TRACE 1
#define CFG_DEBUG_APP_TRACE 1
However I get an error stating :
BLE_HeartRate/Core/Src/app_debug.c:444: undefined reference to `HW_UART_Transmit_DMA'
is there a define for this? or does it need to be imported and if so how?
2022-11-28 12:40 AM
Hello,
You can start with BLE_HeartRate example available in STM32CubeWB package and active the debug traces and the debugger by define the following value as you said:
#define CFG_DEBUGGER_SUPPORTED 1
#define CFG_DEBUG_BLE_TRACE 1
#define CFG_DEBUG_APP_TRACE 1
Best Regards