Question
printf on STM32H747 core M4 doesn't work
printf works on the STM32H747 M7 core once I add the following code
int _write(int file, char *ptr, int len)
{
int i =0;
for ( i = 0 ; i < len; i++)
{
ITM_SendChar((*ptr++));
}
return len;
}and enable the "SWV" in the debugger configuration and configure the "SWV ITM Data Console".
But when I perform the same steps for the M4 core I don't see any outputs. Is there anything else I need to do?
cheers
Chris
