Hi
Where is the standard output directed to on the DSP side? I am using DaVinci DM6446 using only DSPLink for communication between ARM and DSP (without codec engine). How can I read the messages printed by printf or cout on the DSP side?
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.
Hi
Where is the standard output directed to on the DSP side? I am using DaVinci DM6446 using only DSPLink for communication between ARM and DSP (without codec engine). How can I read the messages printed by printf or cout on the DSP side?
I am programming in Linux. I have read the links you provided. Do I understand correctly that I have to get a driver for UART to direct output to the serial port? Where can I get an appropriate driver, or do I have to write it myself?
On Linux, based on bootargs settings(console variable which is part of bootargs) in u-boot, one can direct the logs to the serial console by default.
However if one needs to do it programatically, then i think UART driver API calls need to be supported which can be called in applications to read/write to the serial console.
Thanks,
Prathap.
I do not need to do it programmaticaly if there is another option. I just want to read something from DSP side of my application somewhere (it may be serial port, or Linux console - I do not care).
Changing boot args won't just send messages from ARM side of the application to the serial port?