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.

SFRA warning: no matching section

Other Parts Discussed in Thread: SFRA, CONTROLSUITE

I'm trying to include SFRA in my project.

I'm following the document C2000 Software Frequency Response  Analyzer (SFRA) Library & Compensation Designer  v1.10 Feb-15.

My doubt is about the warnings below. How to solve this issue?

"../F28035_FLASH_ProjectName.CMD", line 120: warning: no matching section
"../F28035_FLASH_ProjectName.CMD", line 121: warning: no matching section

The warnings are related to the CMD lines below:

ramfuncs : LOAD = FLASHE, //FLASHD,
RUN = RAML0,
LOAD_START(_RamfuncsLoadStart),
LOAD_SIZE(_RamfuncsLoadSize),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
PAGE = 0
{
--library=rts2800_ml.lib<fs_mpy.obj>
--library=SFRA_IQ_Lib.lib<SFRA_IQ_INJECT.obj>
--library=SFRA_IQ_Lib.lib<SFRA_IQ_COLLECT.obj>
}

The CMD file is shown below


_Cla1Prog_Start = _Cla1funcsRunStart;
-heap 0x200
-stack 0x200

// Define a size for the CLA scratchpad area that will be used
// by the CLA compiler for local symbols and temps
// Also force references to the special symbols that mark the
// scratchpad are.
CLA_SCRATCHPAD_SIZE = 0x100;
--undef_sym=__cla_scratchpad_end
--undef_sym=__cla_scratchpad_start

MEMORY
{
/* Note that the memory allocation below does not create sections as necessary for
the CLA on the F2803x.
*/

PAGE 0:
RAML0 : origin = 0x008000, length = 0x000800 /* on-chip RAM (L0-L1)*/
RAML3 : origin = 0x009000, length = 0x001000 /* data RAM (L3) */
OTP : origin = 0x3D7800, length = 0x000400 /* on-chip OTP */
FLASHH : origin = 0x3E8000, length = 0x002000 /* on-chip FLASH */
FLASHG : origin = 0x3EA000, length = 0x002000 /* on-chip FLASH */
FLASHF : origin = 0x3EC000, length = 0x002000 /* on-chip FLASH */
FLASHE : origin = 0x3EE000, length = 0x002000 /* on-chip FLASH */
FLASHD : origin = 0x3F0000, length = 0x002000 /* on-chip FLASH */
// FLASHC : origin = 0x3F2000, length = 0x002000 /* on-chip FLASH */
// FLASHA : origin = 0x3F6000, length = 0x001F80 /* on-chip FLASH */
FLASHA : origin = 0x3F2000, length = 0x005F80 /* on-chip FLASH */
CSM_RSVD : origin = 0x3F7F80, length = 0x000076 /* Part of FLASHA. Program with all 0x0000 when CSM is in use. */
BEGIN : origin = 0x3F7FF6, length = 0x000002 /* Part of FLASHA. Used for "boot to Flash" bootloader mode. */
CSM_PWL : origin = 0x3F7FF8, length = 0x000008 /* Part of FLASHA. CSM password locations in FLASHA */

IQTABLES : origin = 0x3FE000, length = 0x000B50 /* IQ Math Tables in Boot ROM */
IQTABLES2 : origin = 0x3FEB50, length = 0x00008C /* IQ Math Tables in Boot ROM */
IQTABLES3 : origin = 0x3FEBDC, length = 0x0000AA /* IQ Math Tables in Boot ROM */

BOOTROM : origin = 0x3FF27C, length = 0x000D44 /* Boot ROM */
RESET : origin = 0x3FFFC0, length = 0x000002 /* part of boot ROM */
VECTORS : origin = 0x3FFFC2, length = 0x00003E /* part of boot ROM */

PAGE 1 :
BOOT_RSVD : origin = 0x000000, length = 0x000050 /* Part of M0, BOOT rom will use this for stack */
// RAMM0 : origin = 0x000050, length = 0x0003B0 /* on-chip RAM block M0 */
RAMM0 : origin = 0x000050, length = 0x0007B0 /* on-chip RAM block M0 */
// RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
dataRAM : origin = 0x008800, length = 0x000800 /* on-chip RAM block L1 */
// RAML2 : origin = 0x008C00, length = 0x000400 /* on-chip RAM block L2 */

// FLASHB : origin = 0x3F4000, length = 0x002000 /* on-chip FLASH */

CLA_CPU_MSGRAM : origin = 0x001480, length = 0x000080 /* CLA-R/W, CPU-R message RAM */
CPU_CLA_MSGRAM : origin = 0x001500, length = 0x000080 /* CPU-R/W, CLA-R message RAM */
}


SECTIONS
{
/* Allocate program areas: */
.cinit : > FLASHA, PAGE = 0
.pinit : > FLASHA, PAGE = 0
.text : > FLASHA, PAGE = 0

codestart : > BEGIN PAGE = 0

ramfuncs : LOAD = FLASHE, //FLASHD,
RUN = RAML0,
LOAD_START(_RamfuncsLoadStart),
LOAD_SIZE(_RamfuncsLoadSize),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
PAGE = 0
{
--library=rts2800_ml.lib<fs_mpy.obj>
--library=SFRA_IQ_Lib.lib<SFRA_IQ_INJECT.obj>
--library=SFRA_IQ_Lib.lib<SFRA_IQ_COLLECT.obj>
}

Cla1Prog : LOAD = FLASHD, //FLASHC, /* Note for running from RAM the load and RUN can be the same */
RUN = RAML3,
LOAD_START(_Cla1funcsLoadStart),
LOAD_SIZE(_Cla1funcsLoadSize),
LOAD_END(_Cla1funcsLoadEnd),
RUN_START(_Cla1funcsRunStart),
PAGE = 0


SFRA_IQ_Data : > RAML3, ALIGN = 64, PAGE = 0


csmpasswds : > CSM_PWL PAGE = 0
csm_rsvd : > CSM_RSVD PAGE = 0

/* Allocate uninitalized data sections: */
.stack : > RAMM0, PAGE = 1
// .ebss : > RAMM1, PAGE = 1
// .esysmem : > RAMM1, PAGE = 1
// .ebss : > RAMM0, PAGE = 1
// .esysmem : > RAMM0, PAGE = 1
// .ebss : > dataRAM, PAGE = 1
.ebss : > RAML3, PAGE = 0


.esysmem : > dataRAM, PAGE = 1


Cla1Data : > dataRAM, PAGE = 1

/* Initalized sections go in Flash */
/* For SDFlash to program these, they must be allocated to page 0 */
.econst : > FLASHA PAGE = 0
.switch : > FLASHA PAGE = 0

/* Allocate IQ math areas: */
IQmath : > FLASHA PAGE = 0 /* Math Code */
IQmathTables : > IQTABLES PAGE = 0, TYPE = NOLOAD /* Math Tables In ROM */

Cla1ToCpuMsgRAM : > CLA_CPU_MSGRAM PAGE = 1
CpuToCla1MsgRAM : > CPU_CLA_MSGRAM PAGE = 1

.reset : > RESET, PAGE = 0, TYPE = DSECT
vectors : > VECTORS PAGE = 0, TYPE = DSECT


/* Uncomment the section below if calling the IQNexp() or IQexp()
functions from the IQMath.lib library in order to utilize the
relevant IQ Math table in Boot ROM (This saves space and Boot ROM
is 1 wait-state). If this section is not uncommented, IQmathTables2
will be loaded into other memory (SARAM, Flash, etc.) and will take
up space, but 0 wait-state is possible.
*/
/*
IQmathTables2 : > IQTABLES2, PAGE = 0, TYPE = NOLOAD
{

IQmath.lib<IQNexpTable.obj> (IQmathTablesRam)

}
*/
/* Uncomment the section below if calling the IQNasin() or IQasin()
functions from the IQMath.lib library in order to utilize the
relevant IQ Math table in Boot ROM (This saves space and Boot ROM
is 1 wait-state). If this section is not uncommented, IQmathTables2
will be loaded into other memory (SARAM, Flash, etc.) and will take
up space, but 0 wait-state is possible.
*/
/*
IQmathTables3 : > IQTABLES3, PAGE = 0, TYPE = NOLOAD
{

IQmath.lib<IQNasinTable.obj> (IQmathTablesRam)

}
*/

}

SECTIONS
{
/************* DPLIB Sections C28x ************************/
/* ADCDRV_1ch section */
// ADCDRV_1ch_Section : > dataRAM PAGE = 1

/* ADCDRV_4ch section */
// ADCDRV_4ch_Section : > dataRAM PAGE = 1


/* CNTL_2P2Z section */
CNTL_2P2Z_Section : > RAML3 PAGE = 0
CNTL_2P2Z_InternalData : > RAML3 PAGE = 0
CNTL_2P2Z_Coef : > RAML3 PAGE = 0

/* CNTL_3P3Z section */
CNTL_3P3Z_Section : > RAML3 PAGE = 0
CNTL_3P3Z_InternalData : > RAML3 PAGE = 0
CNTL_3P3Z_Coef : > RAML3 PAGE = 0

/*DLOG_4CH section */
DLOG_4CH_Section : > RAML0 PAGE = 0
DLOG_BUFF : > RAML0 PAGE = 0

/*MATH_EMAVG section */
MATH_EMAVG_Section : > RAML0 PAGE = 0

/*PFC_ICMD section*/
PFC_ICMD_Section : > RAML0 PAGE = 0

/*PFC_INVSQR section*/
PFC_INVSQR_Section : > RAML0 PAGE = 0

/* PWMDRV_1ch driver section */
PWMDRV_1ch_Section : > RAML0 PAGE = 0

/* PWMDRV_1chHiRes driver section */
PWMDRV_1chHiRes_Section : > RAML0 PAGE = 0

/* PWMDRV_PFC2PhiL driver section */
PWMDRV_PFC2PhiL_Section : > RAML0 PAGE = 0

/* PWMDRV_PSFB driver section */
PWMDRV_PSFB_Section : > RAML0 PAGE = 0

/* PWMDRV_DualUpDwnCnt driver section */
PWMDRV_DualUpDwnCnt_Section : > RAML0 PAGE = 0

/* PWMDRV_ComplPairDB driver section */
PWMDRV_ComplPairDB_Section : > RAML0 PAGE = 0

/* ZeroNet_Section */
ZeroNet_Section : > RAML0 PAGE = 0

/* PWM_DRV_BOOST_Section */
PWM_DRV_BOOST_Section : > RAML0 PAGE = 0

/* DUPWM_DRV_INV_Section */
DUPWM_DRV_INV_Section : > RAML0 PAGE = 0

/* TimeSlice_Section */
TimeSlice_Section : > RAML0 PAGE = 0

/* GEN_Sin_Cos_Section */
GEN_Sin_Cos_Section : > RAML0 PAGE = 0

/* ADCDRV_8ch_Section */
ADCDRV_8ch_Section : > RAML0 PAGE = 0

/* SEL_3X1MULT_IREF_Section */
SEL_3X1MULT_IREF_Section : > RAML0 PAGE = 0

/* RMS_CALC_AC_Section */
RMS_CALC_AC_Section : > RAML0 PAGE = 0

/* RMS_CALC_DC_Section */
RMS_CALC_DC_Section : > RAML0 PAGE = 0

/* CLE_Section */
CLE_Section : > RAML0 PAGE = 0

/* SUBTRACT_2IN_1OUT_Section */
SUBTRACT_2IN_1OUT_Section : > RAML0 PAGE = 0

/*DLOG_4ch sections*/
DLOG_4ch_Section : > RAML0 PAGE = 0

/*REACT_PWR_Section*/
REACT_PWR_Section : > RAML0 PAGE = 0

/*SOMADOR_3IN_1OUT_Section*/
SOMADOR_3IN_1OUT_Section : > RAML0 PAGE = 0

/*VBLE_Section*/
VBLE_Section : > RAML0 PAGE = 0

/*DCBUS_DEC_Section*/
DCBUS_DEC_Section : > RAML0 PAGE = 0

/*VPVLE_Section*/
VPVLE_Section : > RAML0 PAGE = 0

/*VBUSLIMIT_Section*/
VBUSLIMIT_Section : > RAML0 PAGE = 0

/*SEL_2X1MULT_NO_GAIN_Section*/
SEL_2X1MULT_NO_GAIN_Section : > RAML0 PAGE = 0

/*PROP_CNTL_Section*/
PROP_CNTL_Section : > RAML0 PAGE = 0

}

The Console is shown below:

**** Build of configuration F2803x_FLASH for project 251016b_DPLibTemplate-F2803x ****

"C:\\ti\\ccsv6\\utils\\bin\\gmake" -k all
'Building file: ../ADCDRV_PHB_NS1500_8ch.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="ADCDRV_PHB_NS1500_8ch.pp" "../ADCDRV_PHB_NS1500_8ch.asm"
'Finished building: ../ADCDRV_PHB_NS1500_8ch.asm'
' '
'Building file: ../Analog.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="Analog.pp" "../Analog.c"
'Finished building: ../Analog.c'
' '
'Building file: ../CURRENT_LOOP_ERROR.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="CURRENT_LOOP_ERROR.pp" "../CURRENT_LOOP_ERROR.asm"
'Finished building: ../CURRENT_LOOP_ERROR.asm'
' '
'Building file: ../Comm_Interfaces.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="Comm_Interfaces.pp" "../Comm_Interfaces.c"
'Finished building: ../Comm_Interfaces.c'
' '
'Building file: ../DC_BUS_DECOUPLING.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="DC_BUS_DECOUPLING.pp" "../DC_BUS_DECOUPLING.asm"
'Finished building: ../DC_BUS_DECOUPLING.asm'
' '
'Building file: C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/source/DSP2803x_CodeStartBranch.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="DSP2803x_CodeStartBranch.pp" "C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/source/DSP2803x_CodeStartBranch.asm"
'Finished building: C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/source/DSP2803x_CodeStartBranch.asm'
' '
'Building file: C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/source/DSP2803x_GlobalVariableDefs.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="DSP2803x_GlobalVariableDefs.pp" "C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/source/DSP2803x_GlobalVariableDefs.c"
'Finished building: C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/source/DSP2803x_GlobalVariableDefs.c'
' '
'Building file: C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/source/DSP2803x_usDelay.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="DSP2803x_usDelay.pp" "C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/source/DSP2803x_usDelay.asm"
'Finished building: C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/source/DSP2803x_usDelay.asm'
' '
'Building file: ../DUPWM_DRV_INV_NS1500.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="DUPWM_DRV_INV_NS1500.pp" "../DUPWM_DRV_INV_NS1500.asm"
'Finished building: ../DUPWM_DRV_INV_NS1500.asm'
' '
'Building file: ../IHM_Interface.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="IHM_Interface.pp" "../IHM_Interface.c"
'Finished building: ../IHM_Interface.c'
' '
'Building file: ../PHBNS1500_CNTL_2P2Z.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PHBNS1500_CNTL_2P2Z.pp" "../PHBNS1500_CNTL_2P2Z.asm"
'Finished building: ../PHBNS1500_CNTL_2P2Z.asm'
' '
'Building file: ../PHBNS1500_CNTL_3P3Z.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PHBNS1500_CNTL_3P3Z.pp" "../PHBNS1500_CNTL_3P3Z.asm"
'Finished building: ../PHBNS1500_CNTL_3P3Z.asm'
' '
'Building file: ../PHBNS1500_CNTL_3P3Z_RESET.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PHBNS1500_CNTL_3P3Z_RESET.pp" "../PHBNS1500_CNTL_3P3Z_RESET.asm"
'Finished building: ../PHBNS1500_CNTL_3P3Z_RESET.asm'
' '
'Building file: ../PROP_CONTROLLER.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PROP_CONTROLLER.pp" "../PROP_CONTROLLER.asm"
'Finished building: ../PROP_CONTROLLER.asm'
' '
'Building file: C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/CNF/PWM_1ch_Cnf.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PWM_1ch_Cnf.pp" "C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/CNF/PWM_1ch_Cnf.c"
'Finished building: C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/CNF/PWM_1ch_Cnf.c'
' '
'Building file: ../PWM_DRV_BOOST_NS1500-DPL-ISR.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PWM_DRV_BOOST_NS1500-DPL-ISR.pp" "../PWM_DRV_BOOST_NS1500-DPL-ISR.asm"
'Finished building: ../PWM_DRV_BOOST_NS1500-DPL-ISR.asm'
' '
'Building file: ../PWM_DRV_INV_NS1500.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="PWM_DRV_INV_NS1500.pp" "../PWM_DRV_INV_NS1500.asm"
'Finished building: ../PWM_DRV_INV_NS1500.asm'
' '
'Building file: ../ProjectName-CLA_Tasks.cla'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="ProjectName-CLA_Tasks.pp" "../ProjectName-CLA_Tasks.cla"
'Finished building: ../ProjectName-CLA_Tasks.cla'
' '
'Building file: ../ProjectName-DPL-ISR.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="ProjectName-DPL-ISR.pp" "../ProjectName-DPL-ISR.asm"
'Finished building: ../ProjectName-DPL-ISR.asm'
' '
'Building file: ../ProjectName-DevInit_F2803x.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="ProjectName-DevInit_F2803x.pp" "../ProjectName-DevInit_F2803x.c"
'Finished building: ../ProjectName-DevInit_F2803x.c'
' '
'Building file: ../ProjectName-Main.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="ProjectName-Main.pp" "../ProjectName-Main.c"
'Finished building: ../ProjectName-Main.c'
' '
'Building file: ../REACTIVE_POWER_CALC.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="REACTIVE_POWER_CALC.pp" "../REACTIVE_POWER_CALC.asm"
'Finished building: ../REACTIVE_POWER_CALC.asm'
' '
'Building file: ../RMS_CALC_AC.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="RMS_CALC_AC.pp" "../RMS_CALC_AC.asm"
'Finished building: ../RMS_CALC_AC.asm'
' '
'Building file: ../RMS_CALC_DC.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="RMS_CALC_DC.pp" "../RMS_CALC_DC.asm"
'Finished building: ../RMS_CALC_DC.asm'
' '
'Building file: ../SEL_2X1MULT_IREF.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SEL_2X1MULT_IREF.pp" "../SEL_2X1MULT_IREF.asm"
'Finished building: ../SEL_2X1MULT_IREF.asm'
' '
'Building file: ../SEL_2X1MULT_NO_GAIN.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SEL_2X1MULT_NO_GAIN.pp" "../SEL_2X1MULT_NO_GAIN.asm"
'Finished building: ../SEL_2X1MULT_NO_GAIN.asm'
' '
'Building file: ../SEL_3X1MULT_IREF.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SEL_3X1MULT_IREF.pp" "../SEL_3X1MULT_IREF.asm"
'Finished building: ../SEL_3X1MULT_IREF.asm'
' '
'Building file: ../SOMADOR_2IN_1OUT.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SOMADOR_2IN_1OUT.pp" "../SOMADOR_2IN_1OUT.asm"
'Finished building: ../SOMADOR_2IN_1OUT.asm'
' '
'Building file: ../SOMADOR_3IN_1OUT.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SOMADOR_3IN_1OUT.pp" "../SOMADOR_3IN_1OUT.asm"
'Finished building: ../SOMADOR_3IN_1OUT.asm'
' '
'Building file: ../SUBTRACT_2IN_1OUT.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SUBTRACT_2IN_1OUT.pp" "../SUBTRACT_2IN_1OUT.asm"
'Finished building: ../SUBTRACT_2IN_1OUT.asm'
' '
'Building file: ../SolarHv_DCAC-DLOG_4ch.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SolarHv_DCAC-DLOG_4ch.pp" "../SolarHv_DCAC-DLOG_4ch.asm"
'Finished building: ../SolarHv_DCAC-DLOG_4ch.asm'
' '
'Building file: ../SolarHv_DCAC-GEN_SIN_COS.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="SolarHv_DCAC-GEN_SIN_COS.pp" "../SolarHv_DCAC-GEN_SIN_COS.asm"
'Finished building: ../SolarHv_DCAC-GEN_SIN_COS.asm'
' '
'Building file: ../VBUSLIMIT_LOOP_ERROR.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="VBUSLIMIT_LOOP_ERROR.pp" "../VBUSLIMIT_LOOP_ERROR.asm"
'Finished building: ../VBUSLIMIT_LOOP_ERROR.asm'
' '
'Building file: ../VBUS_LOOP_ERROR.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="VBUS_LOOP_ERROR.pp" "../VBUS_LOOP_ERROR.asm"
'Finished building: ../VBUS_LOOP_ERROR.asm'
' '
'Building file: ../VPV_LOOP_ERROR.asm'
'Invoking: C2000 Compiler'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --include_path="C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" --include_path="C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/C_macros" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/include" --include_path="C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_common/include" --include_path="C:/ti/controlSUITE/libs/app_libs/digital_power/f2803x_v3.4/asm_macros" --include_path="C:/ti/controlSUITE/libs/math/IQmath/v15c/include" --include_path="C:/ti/controlSUITE/development_kits/~SupportFiles/F2803x_headers" --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 --preproc_with_compile --preproc_dependency="VPV_LOOP_ERROR.pp" "../VPV_LOOP_ERROR.asm"
'Finished building: ../VPV_LOOP_ERROR.asm'
' '
'Building target: ProjectName.out'
'Invoking: C2000 Linker'
"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/bin/cl2000" -v28 -mt -ml --cla_support=cla0 -Ooff --advice:performance=all -g --define="_DEBUG" --define="FLASH" --define="LARGE_MODEL" --diag_warning=225 -z -m"ProjectName.map" --stack_size=0x380 --warn_sections -i"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/lib" -i"C:/ti/ccsv6/tools/compiler/c2000_6.4.11/include" -i"C:/ti/controlSUITE/libs/math/IQmath/v160/lib" -i"C:/ti/controlSUITE/libs/app_libs/SFRA/v1_10_00_00/IQ/lib" --reread_libs --xml_link_info="ProjectName_linkInfo.xml" --rom_model -o "ProjectName.out" "./ADCDRV_PHB_NS1500_8ch.obj" "./Analog.obj" "./CURRENT_LOOP_ERROR.obj" "./Comm_Interfaces.obj" "./DC_BUS_DECOUPLING.obj" "./DSP2803x_CodeStartBranch.obj" "./DSP2803x_GlobalVariableDefs.obj" "./DSP2803x_usDelay.obj" "./DUPWM_DRV_INV_NS1500.obj" "./IHM_Interface.obj" "./PHBNS1500_CNTL_2P2Z.obj" "./PHBNS1500_CNTL_3P3Z.obj" "./PHBNS1500_CNTL_3P3Z_RESET.obj" "./PROP_CONTROLLER.obj" "./PWM_1ch_Cnf.obj" "./PWM_DRV_BOOST_NS1500-DPL-ISR.obj" "./PWM_DRV_INV_NS1500.obj" "./ProjectName-CLA_Tasks.obj" "./ProjectName-DPL-ISR.obj" "./ProjectName-DevInit_F2803x.obj" "./ProjectName-Main.obj" "./REACTIVE_POWER_CALC.obj" "./RMS_CALC_AC.obj" "./RMS_CALC_DC.obj" "./SEL_2X1MULT_IREF.obj" "./SEL_2X1MULT_NO_GAIN.obj" "./SEL_3X1MULT_IREF.obj" "./SOMADOR_2IN_1OUT.obj" "./SOMADOR_3IN_1OUT.obj" "./SUBTRACT_2IN_1OUT.obj" "./SolarHv_DCAC-DLOG_4ch.obj" "./SolarHv_DCAC-GEN_SIN_COS.obj" "./VBUSLIMIT_LOOP_ERROR.obj" "./VBUS_LOOP_ERROR.obj" "./VPV_LOOP_ERROR.obj" "C:/ti/controlSUITE/device_support/f2803x/v126/DSP2803x_headers/cmd/DSP2803x_Headers_nonBIOS.cmd" "../F28035_FLASH_ProjectName.CMD" "C:/ti/controlSUITE/libs/math/IQmath/v15c/lib/IQmath.lib" -l"libc.a" -l"rts2800_ml.lib" -l"IQmath.lib" -l"SFRA_IQ_Lib.lib"
<Linking>
warning: build attribute vendor section TI missing in
"C:/ti/controlSUITE/libs/math/IQmath/v15c/lib/IQmath.lib<IQ22div.obj>":
compatibility cannot be determined
warning: build attribute vendor section TI missing in
"C:/ti/controlSUITE/libs/math/IQmath/v15c/lib/IQmath.lib<IQ24div.obj>":
compatibility cannot be determined
warning: build attribute vendor section TI missing in
"C:/ti/controlSUITE/libs/math/IQmath/v15c/lib/IQmath.lib<IQ24sqrt.obj>":
compatibility cannot be determined
warning: build attribute vendor section TI missing in
"C:/ti/controlSUITE/libs/math/IQmath/v15c/lib/IQmath.lib<IQmathTables.obj>":
compatibility cannot be determined
"../F28035_FLASH_ProjectName.CMD", line 120: warning: no matching section
"../F28035_FLASH_ProjectName.CMD", line 121: warning: no matching section
'Finished building target: ProjectName.out'
' '

**** Build Finished ****

  • To better understand what occurred, I need to see the linker map file.  Please attach the file ProjectName.map to your next post.  It can be found in the Debug directory of the project (or whatever the current build configuration is named). The forum is very cautious about attachments, so you have to add the file extension ".txt" to it, or it gets rejected.

    Thanks and regards,

    -George