This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DSPLib and Starterware Uart Implementation

Hello,

I am currently working with the C6748 LCDK and am trying to modify the DSPF_sp_fftSPxSP_674LE_LE_COFF example to output its results via the onboard UART instead of using printf(). I have included all the necessary libraries including:

"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\include"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\drivers"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\platform\lcdkC6748"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\include\c674x"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\include\c674x\c6748"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\include\hw"
"${CG_TOOL_ROOT}/include"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03"
"${ORIGINAL_PROJECT_ROOT}/../../../../../../../"

And I have included the proper libraries and library search paths in the linker:

"libc.a"
"drivers.lib"
"utils.lib"
"platform.lib"
"system_config.lib"

"${CG_TOOL_ROOT}/lib"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\binary\c674x\cgt_ccs\c6748\drivers\Debug"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\binary\c674x\cgt_ccs\c6748\lcdkC6748\platform\Debug"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\binary\c674x\cgt_ccs\c6748\system_config\Debug"
"E:\TICodeComposerStudio\pdk_C6748_2_0_0_0\C6748_StarterWare_1_20_03_03\binary\c674x\cgt_ccs\utils\Debug"
"${CG_TOOL_ROOT}/include"

I have also include uartStdio.c in the project files. Without any UART code in main the project compiles and builds. As soon as I add UARTStdioInit();, it fails and gives multiple errors such as:

Description Resource Path Location Type
errors encountered during linking; "DSPF_sp_fftSPxSP_674LE_LE_COFF.out" DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem
gmake: *** [DSPF_sp_fftSPxSP_674LE_LE_COFF.out] Error 1 DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem
gmake: Target 'all' not remade because of errors. DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem
unresolved symbol _UARTConsoleGetc, first referenced in ./uartStdio.obj DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem
unresolved symbol _UARTConsoleInit, first referenced in ./uartStdio.obj DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem
unresolved symbol _UARTConsolePutc, first referenced in ./uartStdio.obj DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem
unresolved symbols remain DSPF_sp_fftSPxSP_674LE_LE_COFF C/C++ Problem

Any help would be appreciated. I have read several posts dealing with this same issue each time getting closer to a solution but now I am unsure what else could be wrong. 

Thanks so much for the support,

Jordan