How can i get printF to work in other .c files?
I just started out a project with FreeRtos and followed this and managed to get it to work.
How to redirect the printf function to a UART for debug messages
I can also printF from the freertos.c StartXXXTask functions.
But one of the start task functions i call my own method in my custom .C file i can't seem to printF from it. Within that function i can run this and it works, but not printF.
HAL_UART_Transmit(&huart2, buf, strlen((char*)buf), HAL_MAX_DELAY);
Wondering what am I doing wrong?
