I'm using CCS 5.5 and attempting to use the platform_uart_write() function to write to the UART. I get an error:
"unresolved symbol platform_uart_write, ..."
I take it I need to include a library somehow, but which one?
I had a similar problem with Timestamp_getFreq and found a post saying to add the following to my .cfg file:
var Timestamp = xdc.useModule('xdc.runtime.Timestamp');
That worked, but how are you supposed to know these things? I can't seem to find any documentation of available functions along with how to link them. Suffice it to say I'm new to CCS.