This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
I am unable print values in CCS console using printf. If i am converting the same float value to int it is printing in console.
printf("%f\n",conVal); is the statement.
Header used is #include <stdio.h>
Kindly help.
I suspect you are running out of stack or heap memory. That may be the case even when printing an int, but it somehow works anyway. Please learn more about these problems, and others like them, in the article Tips for Using Printf.
Thanks and regards,
-George