Hi Expert
After I used NDK(ndk_2_21_01_38) and SYSBIOS(bios_6_33_05_46) together, I meet a compile issue as below
Unresolved symbol ti_sysbios_family_c64p_EventCombiner_disableEvent__E in file ./TI_lib/ndk_full_stack/intmgmt.obj .xdchelp /sysBios_Minimalv2 0 C/C++ Problem
Unresolved symbol ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E in file ./TI_lib/ndk_full_stack/intmgmt.obj .xdchelp /sysBios_Minimalv2 0 C/C++ Problem
Unresolved symbol ti_sysbios_family_c64p_EventCombiner_enableEvent__E in file ./TI_lib/ndk_full_stack/intmgmt.obj .xdchelp /sysBios_Minimalv2 0 C/C++ Problem
I tried to add sysbios related package(C:\ti\bios_6_33_05_46\packages) and also include the lib file: C:\ti\bios_6_33_05_46\packages\ti\sysbios\lib\debug\ti.sysbios.ae66 and C:\ti\bios_6_33_05_46\packages\ti\sysbios\family\c64p\lib\debug\ti.sysbios.family.c64p.ae66, C:\ti\bios_6_33_05_46\packages\ti\sysbios\family\c64p\lib\debug\ti.sysbios.family.c64p.ae64p, but the error still occurs
Could you help check what package or lib I should include?
Also after I checked the related NDK code which calls the above function as below
C:\ti\ndk_2_21_01_38\packages\ti\ndk\os\intmgmt.c
EventCombiner_dispatchPlug (myIntSetup->sysEvtId[i],(EventCombiner_FuncPtr) myIntSetup->pCallbackFxn,
(UArg) myIntSetup->pCallbackArg, (Bool) myIntSetup->bEnable);
I also find some strange comment as below:
/*
* Hack to work around Interrupt API limitations and SYS/BIOS issues.
* Does not work with interrupts that use ECM (currently none known).
*
*/
Looking forward your answer