printf on STM32H747 core M4 doesn't work
printf works on the STM32H747 M7 core once I add the following codeint _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 debug...