Other Parts Discussed in Thread: SYSBIOS
Dear all,
We have a C66x SYSBIOS project and gained a lots of interests on C55x customers recently. The C66x project contains some C source codes and a .cfg file, it involves XDC and SYSBIOS 6.x packages. My goal is to port this back to C55x platform.
Given that SYSBIOS 6.x doesn't support C55x architecture anymore. So I used a very old CCS (5.0.0) release which has DSP/BIOS 5.41 and XDC 3.20, supporting C55x targets. In the C66x .cfg files, we used a lots of the SYSBIOS modules:
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
var Timer = xdc.useModule('ti.sysbios.timers.dmtimer.Timer');
Given they are not available in DSP/BIOS 5.x, how do you replace them with DSP/BIOS modules? Any suggestions or example? Thanks!
Regards, Eric