cancel
Showing results for 
Search instead for 
Did you mean: 

Does SWV work on the STM32H573 DK board?

Thatseasy
Associate III

Beside enabled it in the Debugger tab:

Thatseasy_0-1743125055947.png

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Thatseasy
Associate III

After adding the following line:

SET_BIT(DBGMCU->CR, DBGMCU_CR_TRACE_IOEN);

The ITM_SendChar is working now.

View solution in original post

1 REPLY 1
Thatseasy
Associate III

After adding the following line:

SET_BIT(DBGMCU->CR, DBGMCU_CR_TRACE_IOEN);

The ITM_SendChar is working now.