Hi,
I am using CCS v5.0.1 and i am trying to get the outputs on console using System_printf().
The SYS/BIOS configuration i am using is
var SysMin = xdc.useModule('xdc.runtime.SysMin');
SysMin.bufSize = 4096;
SysMin.flushAtExit = true;
xdc_runtime_System.SupportProxy = SysMin;
By using the above configuration i am getting the outputs after System_flush() at the console, but i want the outputs at the console during runtime.
I am using Swi and Hwi repeatedly in the system.
I have also tried the configuration
var SysStd = xdc.useModule('xdc.runtime.SysStd');
xdc_runtime_System.SupportProxy =SysStd;
Using this configuration, my system crashes.
Is there any way out to print the outputs on console during runtime environment ?