Hi
I am working on EVM TCI6636K2H.
I upgraded my old project which worked with DSP/BIOS to SYS/BIOS in order to work with elf.
Therefore I am trying to create a project on C66XX with SYSBIOS 6 and NDK 2.22 but with legacy DSP/BIOS apis.
To the regular template I've added
LCK_Attrs attrs;
LCK_Handle lck = LCK_create(&attrs);
in the main
In order to link the legacy DSP/BIOS apis I added as the first line in the cfg file "xdc.loadPackage('ti.bios.tconf');"
When I try to add NDK with the following line in the cfg
var Global = xdc.useModule('ti.ndk.config.Global');
I get the error:
js: "C:/ti/ndk_2_22_02_16/packages/ti/ndk/config/package.xs", line 47: TypeError: Cannot read property "target" from undefined (C:/ti/ndk_2_22_02_16/packages/ti/ndk/config/package.xs#47)
"E:/Workspace/TestNetwork/TestNetwork/app.cfg", line 2
"./package/cfg/app_pe66.cfg", line 191
How can i get it all to work together?
Attached is a project example