2025-03-27 6:31 PM
Beside enabled it in the Debugger tab:
also called LL_DBGMCU_EnableTraceClock();
but when calling ITM_SendChar(), the ITM->TCR is still 0.
Do I miss anything else? BTW, I am using the latest STM32CubeIDE 1.18. Thanks.
Solved! Go to Solution.
2025-04-01 5:21 PM
After adding the following line:
SET_BIT(DBGMCU->CR, DBGMCU_CR_TRACE_IOEN);
The ITM_SendChar is working now.
2025-04-01 5:21 PM
After adding the following line:
SET_BIT(DBGMCU->CR, DBGMCU_CR_TRACE_IOEN);
The ITM_SendChar is working now.