Other Parts Discussed in Thread: SYSBIOS
We need to V&V certify our system and prefer to completly eliminate the XDC tools and the .cfg file and do all SYSBIOS Objects setup at runtime
Can this be done?
what are equivalent runtime to below ?
var Defaults = xdc.useModule('xdc.runtime.Defaults');
var Diags = xdc.useModule('xdc.runtime.Diags');
var Log = xdc.useModule('xdc.runtime.Log');
var LoggerBuf = xdc.useModule('xdc.runtime.LoggerBuf');
var Main = xdc.useModule('xdc.runtime.Main')
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var Hwi = xdc.useModule('ti.sysbios.family.c28.Hwi');
var task = xdc.useModule("ti.sysbios.knl.Task");
var Sem = xdc.useModule('ti.sysbios.knl.Semaphore');
I also prefer to have all OS source code used moved into the project directory is that easily done?