In the LED test code, there are some functions I'd like to use in another project. Namely, USBSTK5505_LED_off, USBSTK5505_LED_on and USBSTK5505_LED_get. I include the header files, but when I try to compile, I get the following error:
**** Build of configuration Debug for project CSL_GPTExampale_Out ****
C:\TI\ccsv4\utils\gmake\gmake -k all
'Building target: CSL_GPTExampale_Out.out'
'Invoking: Linker'
"C:/TI/ccsv4/tools/compiler/C5500 Code Generation Tools 4.3.9/bin/cl55" -g --define="_DEBUG" --diag_warning=225 --large_memory_model --algebraic --asm_source=algebraic -z -m"CSL_GPTExampale_Out.map" --warn_sections -i"C:/TI/ccsv4/tools/compiler/C5500 Code Generation Tools 4.3.9/lib" -i"C:/TI/ccsv4/tools/compiler/C5500 Code Generation Tools 4.3.9/include" -i"C:/TI/bios_5_41_10_36/packages/ti/rtdx/lib/c5500" -i"C:/TI/bios_5_41_10_36/packages/ti/bios/lib" -i"C:/ee410/C5505_CSL_Rel_1.1_CCS40/VC5505_CSL/cslVC5505" -i"C:/ee410/CSL_GPTExampale_Out" -i"/lib" --reread_libs --rom_model -o "CSL_GPTExampale_Out.out" "./csl_gpt_examaple.obj" -l"Debug/cslVC5505_Lib.lib" -l"rts55x.lib" "../VC5505_GPT.cmd"
<Linking>
undefined first referenced
symbol in file
--------- ----------------
_USBSTK5505_LED_get ./csl_gpt_examaple.obj
_USBSTK5505_LED_off ./csl_gpt_examaple.obj
_USBSTK5505_LED_on ./csl_gpt_examaple.obj
error: unresolved symbols remain
error: errors encountered during linking; "CSL_GPTExampale_Out.out" not built
>> Compilation failure
gmake: *** [CSL_GPTExampale_Out.out] Error 1
gmake: Target `all' not remade because of errors.
Build complete for project CSL_GPTExampale_Out
What else do I need to make these functions usable? I cannot find references to them in the API documentation.