Blue and Black Pill SWO debugging
Split from STM32H5 SWO debugging.
I want use SWO pin like standalone debug. Send data by "ITM_SendChar('A');" and want to read data from SWO pin by USB-UART dongle, SWO pin => Rx pin UART-USB on PC.
I try blue and black pill (STM32F103 and STM32F411), in stm32 cube ide I configured SysremCore->SYS->Debug: Trace Asynchronus Sw. In "Debug configuration" is Enable for SWV and clock core 8Mhz (SYSCLK and HCLK = 8MHz).
In main sycle:
while (1)
{
/* USER CODE END WHILE */
HAL_GPIO_TogglePin(Led_GPIO_Port, Led_Pin);
HAL_Delay(1000);
for (int i = 0; i < 10000; ++i) ITM_SendChar('A');
HAL_GPIO_TogglePin(Led_GPIO_Port, Led_Pin);
HAL_Delay(1000);
/* USER CODE BEGIN 3 */
}LED is blinking, but SWO pin out is NO SIGNAL (Checking by oscillograph).
Where is it possible problem?
