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 going through simplelink_mcu_sdk/Users_Guide.html to see what I need to include and have had no luck. I also did a grep through the simplelink_mcu_sdk install directory to see where it might be defined, but no luck. I find a lot of invocations, but no implementation.
I have imported the CCS debug project and I made sure that I am using SysMin as the system portion of TI RTOS.
Hoping someone can point me to the appropriate document with instructions on how to include System_printf. I looked at the RTOS User Guide, but those appear to point back to Tiva instructions for CCSv6.
Of course, System_flush() is also undefined!
Your guess is correct... there are the following in the header file.
#define xdc_runtime_System_printf xdc_runtime_System_printf__E
#define System_printf xdc_runtime_System_printf
There are times where for namespace protection, people like using the fully qualified name. The "__E" is a different story that I won't bore you with:)
Todd