Solved
DbgOutputTraces cubemx generation error
I think I've spot a small bug into the cube mx code generation tool for STM_WPAN module
into app_debug.c in function
void DbgOutputTraces( uint8_t *p_data, uint16_t size, void (*cb)(void) )
{
/* USER CODE END DbgOutputTraces */
HW_UART_Transmit_DMA(CFG_DEBUG_TRACE_UART, p_data, size, cb);
/* USER CODE END DbgOutputTraces */
return;
}
There is 2 "END" tags the first one should be a BEGIN
due to this everything you wrote between both tag that should be kept when generating code from IOC file is scraped
thank's for the help
