Hi There,I am using a SWV ITM to print the messages but it always stoped printing after 221 counter number as below image. Could any tell us what needs to be set to see continues printing.
Hi AScha,I am using FreeRTOS and I am using UBUNTU and STM cube ID is 1.14.0.Im my case i have not seen above messages as my trace buffer size is 2000000.
Hi Tesla,Thanks i used above code and PCLK1 and PCLK2 frequency are same 170MHz.I think this is the issue in STM cube ID software. I tested the same code in STM cube programmer, I did not find any issue at all.
Thanks Pavel A, I google it but seems like nobody has found the proper solution.I will not use SWV for now. I think i will use serial to print the data.
I call printf 230 times before RTOS scheduler and it can print out 230 times but it stoped at 81 counter value inside rtos task. uint8_t i = 0;
for (i = 0; i < 230; i++)
{
printf("%u: Before Task initialised\n", i);
}
/* USER CODE END 2...