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.

invalid redeclaration of type name "Uint16"

Other Parts Discussed in Thread: SYSBIOS

Hello

I am working on CCS5.5

sys BIOS 6.35.4.50

XDCtool 3.25.03.72

I am getting error for DSP28x0_Device.h as  < "DSP280x_Device.h", line 98: error #258: invalid redeclaration of type name "Uint16" (declared at line 252 of "C:/ti/xdctools_3_25_03_72/packages/xdc/std.h") >

I have added

#define xdc__strict
#include <xdc/std.h> whereever rquired but how to handle this error where I needed to include both files (XDC/STD.h and DSP280x_Device.h) files??

If I write #define xdc__strict in each file the I get  " Type #20 identifier "Arg" is undefined " and Type #20 identifier "Uns" is undefined " errors.

Please help to slove these errors .Please note that I am trying to run DSP BIOS code to Sys BIOS code.

Waiting for your help.

Thanks

Newbee

  • Right after #define xdc_strict, you can add your own typedefs for Uns and Arg:
    typedef xdc_Arg Arg;
    typedef xdc_UInt Uns;

    These are the type definitions from xdc/std.h that would be available if not for xdc_strict.
    If that doesn't help, you may want to check some other threads with a similar problem. Here are two:

    http://e2e.ti.com/support/embedded/bios/f/355/t/264516.aspx

    http://e2e.ti.com/support/embedded/bios/f/355/p/280107/1014013.aspx 

  • Hi Sasha

    I tried below in my driver.cpp file

    #include "DSP280x_Project.h" // IncludesDSP_280x_Device.h
    #include "main.h" // includes  #include <xdc/std.h>

    #define xdc__strict
    #include <xdc/std.h>
    typedef xdc_UInt Uns;
    typedef xdc_Arg Arg;

    But I still get same below error

    #258 invalid redeclaration of type name "Uint16" (declared at line 252 of "C:/ti/xdctools_3_25_03_72/packages/xdc/std.h")    DSP280x_Device.h    /LittleRedSBC_sysbios/tiSRC    line 102    C/C++ Problem

    Also i get new error for typedef

    #20 identifier "xdc_Arg" is undefined    Driver.h   line 16    C/C++ Problem

    but dont get error for xdc_Arg.

    Please help me this is the error I am trying to resolve many days.

    Thanks

    Newbee

  • If your main.h includes xdc/std.h then it makes sense you would see the redeclaration error because xdc__strict is not defined yet at the time xdc/std.h is processed. Move #define xdc__strict to the top of the file, and that should fix that error.
    As for xdc_Arg being undefined, can you post your complete compiler command line? I just want to check that -D options that should show up on the command line are correct.

  • Hi sasha

    Thanks for the reply. Redeclaration error seems to be resolved but for XDC_Arg error. Please check C2000 compiler flag set

    -v28 -ml -mt --include_path="C:/ti/bios_6_35_04_50/packages/ti/sysbios/knl" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/xdctools_3_25_03_72/packages/ti/targets" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/Eaton/vineeta_code/SBC_sysbios/LittleRedSBC_sysbios/tiSRC" --include_path="C:/ti/bios_6_35_04_50/packages/ti/sysbios" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="C:/ti/xdctools_3_25_03_72/packages/xdc" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="C:/ti/xdctools_3_25_03_72/packages" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off

    Please reply

    Newbee

  • This does not look like a list of includes that CCS would automatically generate. The directories ti/sysbios/knl, ti/targets and ti/sysbios are never added to the include path the way it's done here. Also, I don't see any -D options that are required for xdc/std.h to be properly processed.

    Have you started the project as a RTSC project?

    Can you clean the project, and then build and post the complete console window output? But before you do that, go to Project->Properties->CCS Build->XDCtools->Advanced Options, and then turn on the check box "Show details during build".

  • Hi Sasha

    I am running project as RTSC project . please check snap shot attached.I have removed below includes as I added those to try to remove error (Found no differences with adding/removing these includes)

    "C:\ti\bios_6_35_04_50\packages\ti\sysbios\knl"

    "C:\ti\xdctools_3_25_03_72\packages\ti\targets"

    "C:\ti\bios_6_35_04_50\packages\ti\sysbios"

    "C:\ti\xdctools_3_25_03_72\packages\xdc"

    But If I remove "C:\ti\bios_6_35_04_50\packages\ti\bios\include" I get error " can not open source file sem.h and tsk.h"

    Also I do still get that xdc_Arg undefined error. How to generate -D option

    Please check below console window data

    **** Build of configuration Debug for project LittleRedSBC_sysbios ****

    "C:\\ti\\ccsv5\\utils\\bin\\gmake" -k all
    making ../src/sysbios.a28L ...
    cl28L C:/ti/bios_6_35_04_50/packages/ti/sysbios/BIOS.c ...
    asm28L C:/ti/bios_6_35_04_50/packages/ti/sysbios/family/c28/Clobber_asm.s28 ...
    asm28L C:/ti/bios_6_35_04_50/packages/ti/sysbios/family/c28/Hwi_asm.s28 ...
    asm28L C:/ti/bios_6_35_04_50/packages/ti/sysbios/family/c28/Hwi_disp.s28 ...
    asm28L C:/ti/bios_6_35_04_50/packages/ti/sysbios/family/c28/IntrinsicsSupport_asm.s28 ...
    asm28L C:/ti/bios_6_35_04_50/packages/ti/sysbios/family/c28/TaskSupport_asm.s28 ...
    ar28L BIOS.obj c28_Clobber_asm.obj c28_Hwi_asm.obj c28_Hwi_disp.obj c28_IntrinsicsSupport_asm.obj c28_TaskSupport_asm.obj ...
    'Building file: ../app.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_25_03_72/xs" --xdcpath="C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;" xdc.tools.configuro -o configPkg -t ti.targets.C28_large -p ti.platforms.tms320x28:TMS320C2802 -r release -c "C:/ti/ccsv5/tools/compiler/c2000_6.2.0" -Dxdc_target_types__=ti/targets/std.h -Dxdc__strict --compileOptions "-g --optimize_with_debug" -v "../app.cfg"
    #
    # making package.mak (because of package.bld) ...
    C:/ti/xdctools_3_25_03_72/xs  -Dxdc.path="C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;C:/ti/xdctools_3_25_03_72/packages;.." -Dxdc.root=C:/ti/xdctools_3_25_03_72 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;C:/ti/xdctools_3_25_03_72/packages;..;C:/ti/xdctools_3_25_03_72;C:/ti/xdctools_3_25_03_72/etc" -Dxdc.bld.targets="" -DTOOLS=   -f C:/ti/xdctools_3_25_03_72/packages/xdc/bld/bld.js ./config.bld package.bld package.mak
    #
    # generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
    C:/ti/xdctools_3_25_03_72/xs -Dxdc.path="C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;C:/ti/xdctools_3_25_03_72/packages;.." -Dxdc.root=C:/ti/xdctools_3_25_03_72 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;C:/ti/xdctools_3_25_03_72/packages;..;C:/ti/xdctools_3_25_03_72;C:/ti/xdctools_3_25_03_72/etc" -Dxdc.bld.targets="" -DTOOLS=  -f xdc/services/intern/cmd/build.xs  -m package/package.xdc.dep -i package/package.xdc.inc package.xdc
    #
    # configuring app.x28L from package/cfg/app_p28L.cfg ...
    C:/ti/xdctools_3_25_03_72/xs -Dxdc.path="C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;C:/ti/xdctools_3_25_03_72/packages;.." -Dxdc.root=C:/ti/xdctools_3_25_03_72 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_35_04_50/packages;C:/ti/ccsv5/ccs_base;C:/ti/ipc_1_25_03_15/packages;C:/ti/xdctools_3_25_03_72/packages;..;C:/ti/xdctools_3_25_03_72;C:/ti/xdctools_3_25_03_72/etc" -Dxdc.bld.targets="" -DTOOLS=  -Dxdc_target_types__=ti/targets/std.h -Dxdc__strict xdc.cfg app.x28L package/cfg/app_p28L.cfg package/cfg/app_p28L
    warning: ti.platforms.tms320x28.Platform: "C:/ti/xdctools_3_25_03_72/packages/ti/platforms/tms320x28/Platform.xs", line 266: ti.platforms.tms320x28.Platform.Instance#0 : The PLL type is not assigned, so the Boot module will not configure the PLL.
    generating custom ti.sysbios library makefile ...
    Starting build of library sources ...
    making D:/SBC_sysbios/src/sysbios.a28L ...
    gmake[2]: Nothing to be done for `all'.
    Build of libraries done.
    C:/ti/xdctools_3_25_03_72/bin/sed 's"^\"\(package/cfg/app_p28Lcfg.cmd\)\""\"D:/SBC_sysbios/Debug/configPkg/\1\""' package/cfg/app_p28L.xdl > linker.cmd
    C:/ti/xdctools_3_25_03_72/bin/rm -f package/cfg/app_p28L.o28L
    #
    # cl28L package/cfg/app_p28L.c ...
    C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000 -c  -g --optimize_with_debug -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml -eo.o28L -ea.s28L  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/app_p28L.h'  -Dxdc_target_name__=C28_large -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_2_0 -O2  -I. -IC:/ti/bios_6_35_04_50/packages -IC:/ti/ccsv5/ccs_base -IC:/ti/ipc_1_25_03_15/packages -IC:/ti/xdctools_3_25_03_72/packages -I.. -IC:/ti/ccsv5/tools/compiler/c2000_6.2.0/include -fs=./package/cfg -fr=./package/cfg -fc package/cfg/app_p28L.c
    C:/ti/xdctools_3_25_03_72/bin/mkdep -a package/cfg/app_p28L.o28L.dep -p package/cfg -s o28L package/cfg/app_p28L.c -C   -g --optimize_with_debug -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml -eo.o28L -ea.s28L  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/app_p28L.h'  -Dxdc_target_name__=C28_large -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_2_0 -O2  -I. -IC:/ti/bios_6_35_04_50/packages -IC:/ti/ccsv5/ccs_base -IC:/ti/ipc_1_25_03_15/packages -IC:/ti/xdctools_3_25_03_72/packages -I.. -IC:/ti/ccsv5/tools/compiler/c2000_6.2.0/include -fs=./package/cfg -fr=./package/cfg
    'Finished building: ../app.cfg'
    ' '
    'Building file: ../Version.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Version.pp" --cmd_file="./configPkg/compiler.opt"  "../Version.c"
    'Finished building: ../Version.c'
    ' '
    'Building file: ../main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="main.pp" --cmd_file="./configPkg/compiler.opt"  "../main.c"
    "../main.c", line 71: warning #9-D: nested comment is not allowed
    'Finished building: ../main.c'
    ' '
    "../main.c", line 76: warning #9-D: nested comment is not allowed
    'Building file: ../tiSRC/DSP280x_Adc.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_Adc.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_Adc.c"
    'Finished building: ../tiSRC/DSP280x_Adc.c'
    ' '
    'Building file: ../tiSRC/DSP280x_CpuTimers.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_CpuTimers.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_CpuTimers.c"
    'Finished building: ../tiSRC/DSP280x_CpuTimers.c'
    ' '
    'Building file: ../tiSRC/DSP280x_DefaultIsr.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_DefaultIsr.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_DefaultIsr.c"
    'Finished building: ../tiSRC/DSP280x_DefaultIsr.c'
    ' '
    'Building file: ../tiSRC/DSP280x_DisInt.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_DisInt.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_DisInt.asm"
    'Finished building: ../tiSRC/DSP280x_DisInt.asm'
    ' '
    'Building file: ../tiSRC/DSP280x_ECan.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_ECan.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_ECan.c"
    'Finished building: ../tiSRC/DSP280x_ECan.c'
    ' '
    'Building file: ../tiSRC/DSP280x_ECap.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_ECap.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_ECap.c"
    'Finished building: ../tiSRC/DSP280x_ECap.c'
    ' '
    'Building file: ../tiSRC/DSP280x_EPwm.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_EPwm.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_EPwm.c"
    'Finished building: ../tiSRC/DSP280x_EPwm.c'
    ' '
    'Building file: ../tiSRC/DSP280x_EQep.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_EQep.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_EQep.c"
    'Finished building: ../tiSRC/DSP280x_EQep.c'
    ' '
    'Building file: ../tiSRC/DSP280x_GlobalVariableDefs.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_GlobalVariableDefs.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_GlobalVariableDefs.c"
    'Finished building: ../tiSRC/DSP280x_GlobalVariableDefs.c'
    ' '
    'Building file: ../tiSRC/DSP280x_Gpio.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_Gpio.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_Gpio.c"
    'Finished building: ../tiSRC/DSP280x_Gpio.c'
    ' '
    'Building file: ../tiSRC/DSP280x_I2C.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_I2C.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_I2C.c"
    'Finished building: ../tiSRC/DSP280x_I2C.c'
    ' '
    'Building file: ../tiSRC/DSP280x_MemCopy.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_MemCopy.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_MemCopy.c"
    'Finished building: ../tiSRC/DSP280x_MemCopy.c'
    ' '
    'Building file: ../tiSRC/DSP280x_PieCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_PieCtrl.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_PieCtrl.c"
    'Finished building: ../tiSRC/DSP280x_PieCtrl.c'
    ' '
    'Building file: ../tiSRC/DSP280x_PieVect.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_PieVect.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_PieVect.c"
    'Finished building: ../tiSRC/DSP280x_PieVect.c'
    ' '
    'Building file: ../tiSRC/DSP280x_Sci.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_Sci.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_Sci.c"
    'Finished building: ../tiSRC/DSP280x_Sci.c'
    ' '
    'Building file: ../tiSRC/DSP280x_Spi.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_Spi.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_Spi.c"
    'Finished building: ../tiSRC/DSP280x_Spi.c'
    ' '
    'Building file: ../tiSRC/DSP280x_SysCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_SysCtrl.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_SysCtrl.c"
    'Finished building: ../tiSRC/DSP280x_SysCtrl.c'
    ' '
    'Building file: ../tiSRC/DSP280x_usDelay.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="tiSRC/DSP280x_usDelay.pp" --obj_directory="tiSRC" --cmd_file="./configPkg/compiler.opt"  "../tiSRC/DSP280x_usDelay.asm"
    'Finished building: ../tiSRC/DSP280x_usDelay.asm'
    ' '
    'Building file: ../Queues/Queue.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Queues/Queue.pp" --obj_directory="Queues" --cmd_file="./configPkg/compiler.opt"  "../Queues/Queue.c"
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined

    >> Compilation failure
    'Building file: ../PeriodicTSK/IdleFuncs.c'
    'Invoking: C2000 Compiler'
    "../Queues/Queue.c", line 161: warning #225-D: function "DSP28x_RestoreInt" declared implicitly
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="PeriodicTSK/IdleFuncs.pp" --obj_directory="PeriodicTSK" --cmd_file="./configPkg/compiler.opt"  "../PeriodicTSK/IdleFuncs.c"
    "../Queues/Queue.c", line 244: warning #225-D: function "DSP28x_RestoreInt" declared implicitly
    'Finished building: ../PeriodicTSK/IdleFuncs.c'
    ' '
    1 error detected in the compilation of "../Queues/Queue.c".
    'Building file: ../PeriodicSWI/PeriodicSWIs.cpp'
    'Invoking: C2000 Compiler'
    gmake: *** [Queues/Queue.obj] Error 1
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="PeriodicSWI/PeriodicSWIs.pp" --obj_directory="PeriodicSWI" --cmd_file="./configPkg/compiler.opt"  "../PeriodicSWI/PeriodicSWIs.cpp"
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined

    >> Compilation failure
    1 error detected in the compilation of "../PeriodicSWI/PeriodicSWIs.cpp".
    gmake: *** [PeriodicSWI/PeriodicSWIs.obj] Error 1
    'Building file: ../DSPport/F28335Port.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="DSPport/F28335Port.pp" --obj_directory="DSPport" --cmd_file="./configPkg/compiler.opt"  "../DSPport/F28335Port.c"
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined

    >> Compilation failure
    1 error detected in the compilation of "../DSPport/F28335Port.c".
    'Building file: ../Controls/ControlAlgos/Algos.asm'
    gmake: *** [DSPport/F28335Port.obj] Error 1
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Controls/ControlAlgos/Algos.pp" --obj_directory="Controls/ControlAlgos" --cmd_file="./configPkg/compiler.opt"  "../Controls/ControlAlgos/Algos.asm"
    'Finished building: ../Controls/ControlAlgos/Algos.asm'
    ' '
    'Building file: ../Controls/ControlAlgos/ControlBlocks.c'
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Controls/ControlAlgos/ControlBlocks.pp" --obj_directory="Controls/ControlAlgos" --cmd_file="./configPkg/compiler.opt"  "../Controls/ControlAlgos/ControlBlocks.c"
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined

    >> Compilation failure
    'Building file: ../CAN/C9Commands.cpp'
    'Invoking: C2000 Compiler'
    "../Controls/ControlAlgos/ControlBlocks.c", line 178: warning #225-D: function "sincos" declared implicitly
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="CAN/C9Commands.pp" --obj_directory="CAN" --cmd_file="./configPkg/compiler.opt"  "../CAN/C9Commands.cpp"
    "../Controls/ControlAlgos/ControlBlocks.c", line 232: warning #225-D: function "sincos" declared implicitly

    1 error detected in the compilation of "../Controls/ControlAlgos/ControlBlocks.c".
    gmake: *** [Controls/ControlAlgos/ControlBlocks.obj] Error 1
    >> Compilation failure
    'Building file: ../CAN/CanDriver.cpp'
    'Invoking: C2000 Compiler'
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="CAN/CanDriver.pp" --obj_directory="CAN" --cmd_file="./configPkg/compiler.opt"  "../CAN/CanDriver.cpp"
    1 error detected in the compilation of "../CAN/C9Commands.cpp".
    gmake: *** [CAN/C9Commands.obj] Error 1

    >> Compilation failure
    'Building file: ../CAN/InternalCan.cpp'
    'Invoking: C2000 Compiler'
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="CAN/InternalCan.pp" --obj_directory="CAN" --cmd_file="./configPkg/compiler.opt"  "../CAN/InternalCan.cpp"
    1 error detected in the compilation of "../CAN/CanDriver.cpp".
    gmake: *** [CAN/CanDriver.obj] Error 1

    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined
    >> Compilation failure
    "../CAN/InternalCan.cpp", line 278: warning #179-D: variable "<unnamed>::canMeters" was declared but never referenced
    'Building file: ../CAN/ParallelCan.cpp'
    1 error detected in the compilation of "../CAN/InternalCan.cpp".
    'Invoking: C2000 Compiler'
    gmake: *** [CAN/InternalCan.obj] Error 1
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="CAN/ParallelCan.pp" --obj_directory="CAN" --cmd_file="./configPkg/compiler.opt"  "../CAN/ParallelCan.cpp"
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined

    >> Compilation failure
    1 error detected in the compilation of "../CAN/ParallelCan.cpp".
    'Building file: ../CAN/ParallelFuncs.cpp'
    gmake: *** [CAN/ParallelCan.obj] Error 1
    'Invoking: C2000 Compiler'
    "C:/ti/ccsv5/tools/compiler/c2000_6.2.0/bin/cl2000" -v28 -ml -mt --include_path="D:/SBC_sysbios/Queues" --include_path="C:/ti/bios_6_35_04_50/packages/ti/bios/include" --include_path="D:/SBC_sysbios/CAN" --include_path="D:/SBC_sysbios/tiSRC" --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.2.0/include" --include_path="D:/SBC_sysbios/BootloaderAPI" --include_path="D:/SBC_sysbios/ADC" --include_path="D:/SBC_sysbios/Alarms" --include_path="D:/SBC_sysbios/Battery" --include_path="D:/SBC_sysbios/Controls" --include_path="D:/SBC_sysbios/Controls/BatteryConverter" --include_path="D:/SBC_sysbios/Controls/ControlAlgos" --include_path="D:/SBC_sysbios/Controls/ExtSync" --include_path="D:/SBC_sysbios/Controls/Inverter" --include_path="D:/SBC_sysbios/Controls/ParallelAutoCal" --include_path="D:/SBC_sysbios/Controls/PLL" --include_path="D:/SBC_sysbios/Controls/Rectifier" --include_path="D:/SBC_sysbios/Debugger" --include_path="D:/SBC_sysbios/DSPport" --include_path="D:/SBC_sysbios/Eeprom" --include_path="D:/SBC_sysbios/I2c_Port" --include_path="D:/SBC_sysbios/Meters" --include_path="D:/SBC_sysbios/Nodebits" --include_path="D:/SBC_sysbios/PeriodicTSK" --include_path="D:/SBC_sysbios/Queues" --include_path="D:/SBC_sysbios/RTC" --include_path="D:/SBC_sysbios/StateMachines" --include_path="D:/SBC_sysbios/StateMachines/Bypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/RealBypass" --include_path="D:/SBC_sysbios/StateMachines/Bypass/SlaveBypass" --include_path="D:/SBC_sysbios/SystemTrap" --include_path="D:/SBC_sysbios/Debug/configPkg/package/cfg" --include_path="D:/SBC_sysbios" --include_path="D:/SBC_sysbios/tiSRC" -g --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="CAN/ParallelFuncs.pp" --obj_directory="CAN" --cmd_file="./configPkg/compiler.opt"  "../CAN/ParallelFuncs.cpp"
    "D:/SBC_sysbios/tiSRC/DSP280x_Project.h", line 34: error #20: identifier "xdc_Arg" is undefined

    1 error detected in the compilation of "../CAN/ParallelFuncs.cpp".
    >> Compilation failure
    gmake: *** [CAN/ParallelFuncs.obj] Error 1
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

  • Hi

    Can you please help me to solve xdc_arg undefined error?

    I see in xdc/std.h file below code

    /* xdc_Arg is defined only in ti/targets/std.h; use IArg and UArg instead */
    #ifdef xdc__ARG__
    typedef xdc_Arg         Arg;
    #endif

    Please tell proper steps to to resolve this

    newbee

  • All your errors are coming from DSP280x_Project.h. In one of the code snippets you posted you are including that file before including xdc/std.h. Please ensure that you are including xdc/std.h and defining all types before you are including headers that use these types.

  • I also got rid of the error by defining "xdc__strict" as a predefined symbol (Project-C2000Compiler-Advanced Options).