Hi,
I cannot use standard printf function (Code Composer v6) because it's too slow for my application and buffering also doesn't make sense, so can I reimplement printf function?
printf is sending data via XDS100v2 debugger and probably it's using a USART for this because USART pins are busy with debugger or it's using some other channel to send data through debugger. So, is it possible to reimplement this debugger printf module? As I see, it just sending bytes one by one like a simple polling routine, but I want to make it via interrupt or dma.
Thanks.