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.

Migration Issues - DSP/BIOS 5.41 to SYS/BIOS 6.35

Other Parts Discussed in Thread: CODECOMPOSER, SYSBIOS, CONTROLSUITE

After finally setting all of my environment variable correctly, I am trying to run the conversion script to convert a project to SYS/BIOS. I have tried changing the name of the TCF to remove the underscores just in case, but the same error happens.  I have also tried moving the location of the repo to a shorter location, C:\Repo, but to no avail. Am I missing something

 

C:\Users\Admin\Documents\CodeComposer\Semikron_DCDC_v05>xs --xp="C:\ti\CCS5.4\bi
os_6_35_01_29\packages" ti.bios.conversion -c MyConfig.cfg --pr "C:\Users\Admin\
Documents\CodeComposer\Semikron_DCDC_v05" --pn "./New"  Semikron_DCDC_v05.tcf
TypeError: Cannot call property oldLoadPlat in object [object Object]. It is not
 a function, it is "undefined".
js: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/conversion/Main.xs", line 91:
 Error: ti.bios.conversion: ReferenceError: "prog" is not defined.

 

 

Here is my TCF file. I can't attach filetypes of this sort to this forum.

 

 

utils.loadPlatform("ti.platforms.ezdsp28335");

 /* The following DSP/BIOS Features are enabled.  */

bios.enableRealTimeAnalysis(prog);

bios.enableRtdx(prog);

bios.enableTskManager(prog);

 

bios.PRD.create("GLedBlink_PRD");

bios.PRD.instance("GLedBlink_PRD").order = 1;

bios.PRD.instance("GLedBlink_PRD").comment = "This periodic function is used to toggle the green LED on the Semikron board on and off";

bios.PRD.instance("GLedBlink_PRD").period = 500;

bios.PRD.instance("GLedBlink_PRD").fxn = prog.extern("GLedBlink");

bios.PIE.instance("PIE_INT1_4").fxn = prog.extern("FAULT_ISR");

bios.PIE.instance("PIE_INT1_4").useDispatcher = 1;

bios.LOG.create("trace");

bios.PIE.instance("PIE_INT5_1").fxn = prog.extern("EQEP1_INT_ISR");

bios.PIE.instance("PIE_INT5_1").useDispatcher = 1;

bios.PRD.instance("GLedBlink_PRD").fxn = prog.extern("GLedBlink_SWI");

bios.SWI.create("RESET_swi");

bios.SWI.instance("RESET_swi").order = 1;

bios.SWI.instance("RESET_swi").comment = "This function resets the DSP";

bios.SWI.instance("RESET_swi").fxn = prog.extern("Reset_SWI");

bios.SWI.instance("RESET_swi").priority = 4;

bios.MEM.STACKSIZE = 0x0800;

bios.SWI.instance("RESET_swi").priority = 14;

bios.MEM.STACKSIZE = 0x0500;

bios.MEM.STACKSIZE = 0x04a0;

bios.MEM.STACKSIZE = 0x047f;

bios.MEM.STACKSIZE = 0x0500;

bios.SWI.instance("RESET_swi").fxn = prog.extern("Reset_ISR");

bios.PRD.instance("GLedBlink_PRD").fxn = prog.extern("GLedBlink_ISR");

bios.SWI.instance("RESET_swi").fxn = prog.extern("Reset_SWI");

bios.PRD.instance("GLedBlink_PRD").fxn = prog.extern("GLedBlink_SWI");

bios.SWI.create("FAULT_swi");

bios.SWI.instance("FAULT_swi").order = 2;

bios.SWI.instance("FAULT_swi").priority = 14;

bios.SWI.instance("FAULT_swi").priority = 13;

bios.SWI.instance("FAULT_swi").fxn = prog.extern("Fault_SWI");

bios.SWI.instance("FAULT_swi").comment = "This SWI is executed whenever the FPGA sends a fault signal to the DSP";

bios.PIE.instance("PIE_INT1_6").fxn = prog.extern("ADC_INT_ISR");

bios.PIE.instance("PIE_INT1_6").useDispatcher = 1;

bios.SWI.create("ADC_swi");

bios.SWI.instance("ADC_swi").order = 3;

bios.SWI.instance("ADC_swi").priority = 14;

bios.SWI.instance("ADC_swi").priority = 12;

bios.SWI.instance("ADC_swi").comment = "Analog to Digital Converter Interrupt Service Routine";

bios.SWI.instance("ADC_swi").fxn = prog.extern("ADC_SWI");

bios.SWI.instance("PRD_swi").order = 1;

bios.SWI.instance("KNL_swi").order = 2;

bios.SWI.instance("RESET_swi").order = 3;

bios.SWI.instance("FAULT_swi").order = 4;

bios.SWI.instance("ADC_swi").destroy();

bios.SWI.create("ADCSEQ1_swi");

bios.SWI.instance("ADCSEQ1_swi").order = 6;

bios.SWI.instance("ADCSEQ1_swi").comment = "Analog to Digital Converter Interrupt Service Routine";

bios.SWI.instance("ADCSEQ1_swi").fxn = prog.extern("ADC_SWI");

bios.SWI.instance("ADCSEQ1_swi").priority = 14;

bios.SWI.instance("ADCSEQ1_swi").fxn = prog.extern("ADC_SEQ1_SWI");

bios.SWI.instance("ADCSEQ1_swi").priority = 12;

bios.SWI.create("ADCSEQ2_swi");

bios.SWI.instance("ADCSEQ2_swi").order = 7;

bios.SWI.instance("ADCSEQ2_swi").priority = 14;

bios.SWI.instance("ADCSEQ2_swi").priority = 11;

bios.SWI.instance("ADCSEQ2_swi").fxn = prog.extern("ADC_SEQ2_SWI");

bios.SWI.instance("ADCSEQ2_swi").priority = 6;

bios.MEM.GBLINITSEG = prog.get("FLASH");

bios.MEM.BIOSSEG = prog.get("FLASH");

bios.MEM.SYSINITSEG = prog.get("FLASH");

bios.MEM.HWISEG = prog.get("FLASH");

bios.MEM.RTDXTEXTSEG = prog.get("FLASH");

bios.MEM.TEXTSEG = prog.get("FLASH");

bios.MEM.SWITCHSEG = prog.get("FLASH");

bios.MEM.CINITSEG = prog.get("FLASH");

bios.MEM.PINITSEG = prog.get("FLASH");

bios.MEM.ECONSTSEG = prog.get("FLASH");

bios.MEM.CONSTSEG = prog.get("FLASH");

bios.MEM.DATASEG = prog.get("FLASH");

bios.MEM.ENABLELOADADDR = 1;

bios.MEM.LOADBIOSSEG = prog.get("FLASH");

bios.MEM.LOADSYSINITSEG = prog.get("FLASH");

bios.MEM.LOADGBLINITSEG = prog.get("FLASH");

bios.MEM.LOADTRCDATASEG = prog.get("FLASH");

bios.MEM.LOADTEXTSEG = prog.get("FLASH");

bios.MEM.LOADSWITCHSEG = prog.get("FLASH");

bios.MEM.LOADCINITSEG = prog.get("FLASH");

bios.MEM.LOADPINITSEG = prog.get("FLASH");

bios.MEM.LOADECONSTSEG = prog.get("FLASH");

bios.MEM.LOADCONSTSEG = prog.get("FLASH");

bios.MEM.LOADDATASEG = prog.get("FLASH");

bios.MEM.LOADHWISEG = prog.get("FLASH");

bios.MEM.LOADHWIVECSEG = prog.get("FLASH");

bios.MEM.LOADRTDXTEXTSEG = prog.get("FLASH");

bios.GBL.CALLUSERINITFXN = 1;

bios.GBL.USERINITFXN = prog.extern("UserInit");

bios.MEM.instance("L03SARAM").space = "code";

bios.MEM.instance("FLASH").len = 0x3fff6;

bios.MEM.create("BEGIN_FLASH");

bios.MEM.instance("BEGIN_FLASH").space = "code";

bios.MEM.instance("BEGIN_FLASH").base = 0x33fff6;

bios.MEM.instance("BEGIN_FLASH").len = 0x0002;

bios.MEM.instance("FLASH").len = 0x3ff80;

bios.MEM.create("CSM_RSVD");

bios.MEM.instance("CSM_RSVD").base = 0x33ff80;

bios.MEM.instance("CSM_RSVD").len = 0x0076;

bios.MEM.instance("CSM_RSVD").space = "code";

bios.MEM.create("PASSWORDS");

bios.MEM.instance("PASSWORDS").base = 0x33fff8;

bios.MEM.instance("PASSWORDS").len = 0x0008;

bios.MEM.instance("PASSWORDS").space = "code";

bios.SWI.create("CURRENTLOOPA_swi");

bios.SWI.instance("CURRENTLOOPA_swi").order = 8;

bios.SWI.instance("CURRENTLOOPA_swi").priority = 14;

bios.SWI.instance("CURRENTLOOPA_swi").priority = 11;

bios.SWI.instance("CURRENTLOOPA_swi").fxn = prog.extern("CurrentLoopPhaseA_SWI");

bios.SWI.create("CURRENTLOOPB_swi");

bios.SWI.instance("CURRENTLOOPB_swi").order = 9;

bios.SWI.instance("CURRENTLOOPB_swi").priority = 14;

bios.SWI.instance("CURRENTLOOPB_swi").priority = 11;

bios.SWI.instance("CURRENTLOOPB_swi").fxn = prog.extern("CurrentLoopPhaseB_SWI");

bios.SWI.create("CURRENTLOOPC_swi");

bios.SWI.instance("CURRENTLOOPC_swi").order = 10;

bios.SWI.instance("CURRENTLOOPC_swi").priority = 14;

bios.SWI.instance("CURRENTLOOPC_swi").priority = 11;

bios.SWI.instance("CURRENTLOOPC_swi").fxn = prog.extern("CurrentLoopPhaseC_SWI");

bios.MEM.instance("L47SARAM").space = "data";

bios.LCK.create("SPIBUSY_lck");

bios.LCK.instance("SPIBUSY_lck").comment = "This lock indicates that the SPI module is busy.";

bios.SEM.create("READTEMPS_sem");

bios.SEM.instance("READTEMPS_sem").comment = "This semaphore tells whether it is ok to allow the Read Temperatures Task to activate";

bios.TSK.instance("TSK_idle").order = 1;

bios.TSK.create("READTEMPS_tsk");

bios.TSK.instance("READTEMPS_tsk").order = 3;

bios.TSK.instance("READTEMPS_tsk").fxn = prog.extern("CheckTemperatures_TSK");

bios.PRD.create("TICKLEREADTEMPS_prd");

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 3;

bios.PRD.instance("TICKLEREADTEMPS_prd").fxn = prog.extern("TickleReadTemps_SWI");

bios.PRD.instance("TICKLEREADTEMPS_prd").period = 100;

bios.PRD.instance("TICKLEREADTEMPS_prd").comment = "This periodic function causes the Read Temperatures function to activate every 100 ms";

bios.PIE.instance("PIE_INT6_1").fxn = prog.extern("SPIINTA_ISR");

bios.PIE.instance("PIE_INT6_1").useDispatcher = 1;

bios.SEM.create("SPIMSGRDY_sem");

bios.SEM.instance("SPIMSGRDY_sem").comment = "A positive count on this semaphore indicates a message is ready in the SPI RX buffer";

bios.SEM.create("CANATXREADY_sem");

bios.SEM.instance("CANATXREADY_sem").comment = "A Positive count on this semaphore indicates that the CAN A module is ready to transmit a new mess";

bios.SEM.instance("CANATXREADY_sem").count = 1;

bios.SEM.create("CANBTXREADY_sem");

bios.SEM.instance("CANBTXREADY_sem").comment = "A Positive count on this semaphore indicates that the CAN B module is ready to transmit a new mess";

bios.SEM.instance("CANBTXREADY_sem").count = 1;

bios.PIE.instance("PIE_INT9_5").fxn = prog.extern("ECAN0INTA_ISR");

bios.PIE.instance("PIE_INT9_5").useDispatcher = 1;

bios.PIE.instance("PIE_INT9_6").fxn = prog.extern("ECAN1INTA_ISR");

bios.PIE.instance("PIE_INT9_6").useDispatcher = 1;

bios.PIE.instance("PIE_INT9_7").fxn = prog.extern("ECAN0INTB_ISR");

bios.PIE.instance("PIE_INT9_7").useDispatcher = 1;

bios.PIE.instance("PIE_INT9_8").fxn = prog.extern("ECAN1INTB_ISR");

bios.PIE.instance("PIE_INT9_8").useDispatcher = 1;

bios.SWI.create("ECAN0INTA_swi");

bios.SWI.instance("ECAN0INTA_swi").order = 11;

bios.SWI.instance("ECAN0INTA_swi").priority = 14;

bios.SWI.instance("ECAN0INTA_swi").priority = 4;

bios.SWI.instance("ECAN0INTA_swi").fxn = prog.extern("ECAN0INTA_SWI");

bios.SWI.create("ECAN1INTA_swi");

bios.SWI.instance("ECAN1INTA_swi").order = 12;

bios.SWI.instance("ECAN1INTA_swi").priority = 14;

bios.SWI.instance("ECAN1INTA_swi").priority = 2;

bios.SWI.instance("ECAN1INTA_swi").fxn = prog.extern("ECAN1INTA_SWI");

bios.SWI.create("ECAN0INTB_swi");

bios.SWI.instance("ECAN0INTB_swi").order = 13;

bios.SWI.instance("ECAN0INTB_swi").priority = 14;

bios.SWI.instance("ECAN0INTB_swi").priority = 4;

bios.SWI.instance("ECAN0INTB_swi").fxn = prog.extern("ECAN0INTB_SWI");

bios.SWI.create("ECAN1INTB_swi");

bios.SWI.instance("ECAN1INTB_swi").order = 14;

bios.SWI.instance("ECAN1INTB_swi").priority = 14;

bios.SWI.instance("ECAN1INTB_swi").fxn = prog.extern("ECAN1INTB_SWI");

bios.SWI.instance("ECAN1INTB_swi").priority = 2;

bios.TSK.create("SENDCANMSGS_tsk");

bios.TSK.instance("SENDCANMSGS_tsk").order = 4;

bios.TSK.instance("SENDCANMSGS_tsk").fxn = prog.extern("SendCANMessages_TSK");

bios.TSK.instance("READTEMPS_tsk").priority = 2;

bios.TSK.instance("READTEMPS_tsk").priority = 1;

bios.TSK.instance("SENDCANMSGS_tsk").priority = 2;

bios.SEM.create("SENDCANMSGS_sem");

bios.SEM.instance("SENDCANMSGS_sem").comment = "This semaphore tells whether it is ok to allow the SendCANMessages task to activate";

bios.PRD.create("TICKLESENDCANMSGS_prd");

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 4;

bios.PRD.instance("TICKLESENDCANMSGS_prd").period = 100;

bios.PRD.instance("TICKLESENDCANMSGS_prd").comment = "This periodic function calls the Send CAN Messages task to activate every 100 ms";

bios.PRD.instance("TICKLESENDCANMSGS_prd").fxn = prog.extern("TickleSendCANMessages_SWI");

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 2;

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 3;

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 1;

bios.PRD.instance("GLedBlink_PRD").order = 2;

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 2;

bios.PRD.instance("GLedBlink_PRD").order = 3;

bios.CLK.instance("PRD_clock").order = 1;

bios.SEM.create("TIMEOUT_sem");

bios.SEM.instance("TIMEOUT_sem").comment = "This Semaphore will never be posted.  Any function can pend on it for a finite amount of time in o";

bios.TSK.create("DEBUGTASKS_tsk");

bios.TSK.instance("DEBUGTASKS_tsk").order = 5;

bios.TSK.instance("DEBUGTASKS_tsk").fxn = prog.extern("DebugTasks_TSK");

bios.TSK.instance("READTEMPS_tsk").order = 2;

bios.TSK.instance("DEBUGTASKS_tsk").order = 3;

bios.TSK.instance("DEBUGTASKS_tsk").order = 2;

bios.TSK.instance("READTEMPS_tsk").order = 3;

bios.PRD.instance("TICKLEREADTEMPS_prd").period = 250;

bios.PRD.instance("TICKLEREADTEMPS_prd").comment = "This periodic function causes the Read Temperatures function to activate every 250 ms";

bios.TSK.instance("DEBUGTASKS_tsk").priority = 15;

bios.SEM.create("SPIBUSY_sem");

bios.SEM.instance("SPIBUSY_sem").count = 1;

bios.SEM.instance("SPIBUSY_sem").comment = "This semaphore will be checked out if any task is currently using the SPI module";

bios.SEM.instance("SPIBUSY_sem").destroy();

bios.TSK.instance("DEBUGTASKS_tsk").priority = 1;

bios.TSK.instance("SENDCANMSGS_tsk").priority = 3;

bios.TSK.instance("READTEMPS_tsk").priority = 2;

bios.SEM.create("COMPLETEINIT_sem");

bios.SEM.instance("COMPLETEINIT_sem").comment = "When this semaphore is posted, it means that the processor must complete initialization by loading";

bios.TSK.create("COMPLETEINIT_tsk");

bios.TSK.instance("COMPLETEINIT_tsk").order = 5;

bios.TSK.instance("COMPLETEINIT_tsk").priority = 15;

bios.TSK.instance("COMPLETEINIT_tsk").comment = "This task completes initialization steps which must occur at the task level";

bios.TSK.instance("COMPLETEINIT_tsk").fxn = prog.extern("CompleteInitialization_TSK");

bios.PRD.create("RESETWATCHDOG_prd");

bios.PRD.instance("RESETWATCHDOG_prd").order = 4;

bios.PRD.instance("RESETWATCHDOG_prd").period = 1;

bios.PRD.instance("RESETWATCHDOG_prd").comment = "Resets the watchdog timer";

bios.PRD.instance("RESETWATCHDOG_prd").fxn = prog.extern("ResetWatchdogTimer_SWI");

bios.SEM.create("STATEMACHINE_sem");

bios.SEM.instance("STATEMACHINE_sem").comment = "This semaphore tells the StateMachine_TSK() task to execute the number of times as the semaphore c";

bios.TSK.create("STATEMACHINE_tsk");

bios.TSK.instance("STATEMACHINE_tsk").order = 6;

bios.TSK.instance("STATEMACHINE_tsk").comment = "This task runs the main state machine on the dsp.";

bios.TSK.instance("STATEMACHINE_tsk").priority = 8;

bios.TSK.instance("STATEMACHINE_tsk").fxn = prog.extern("StateMachine_TSK");

bios.PRD.create("TICKLESTATEMACHINE_prd");

bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 5;

bios.PRD.instance("TICKLESTATEMACHINE_prd").period = 2;

bios.PRD.instance("TICKLESTATEMACHINE_prd").fxn = prog.extern("TickleStateMachine_SWI");

bios.PRD.instance("GLedBlink_PRD").order = 1;

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 2;

bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 3;

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 4;

bios.PRD.instance("RESETWATCHDOG_prd").order = 5;

bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 2;

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 3;

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 3;

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 4;

bios.PRD.instance("RESETWATCHDOG_prd").order = 2;

bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 3;

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 4;

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 5;

bios.PRD.instance("RESETWATCHDOG_prd").order = 1;

bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 2;

bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 3;

bios.PRD.instance("TICKLEREADTEMPS_prd").order = 4;

bios.PRD.instance("GLedBlink_PRD").order = 5;

bios.PRD.instance("TICKLESTATEMACHINE_prd").comment = "This periodic function causes the primary state machine function to activate every 2 ms";

bios.TSK.instance("DEBUGTASKS_tsk").priority = 2;

bios.TSK.instance("SENDCANMSGS_tsk").priority = 4;

bios.TSK.instance("READTEMPS_tsk").priority = 3;

bios.TSK.create("SERVICEWATCHDOG_tsk");

bios.TSK.instance("SERVICEWATCHDOG_tsk").order = 7;

bios.TSK.instance("SERVICEWATCHDOG_tsk").comment = "This task resets the watchdog timer. ";

bios.TSK.instance("SERVICEWATCHDOG_tsk").fxn = prog.extern("ServiceWatchdog_TSK");

bios.SEM.create("SERVICEWATCHDOG_sem");

bios.SEM.instance("SERVICEWATCHDOG_sem").comment = "This semaphore tells the ServiceWatchdog_TSK() task to execute the number of times as the semaphor";

bios.PRD.instance("TICKLESTATEMACHINE_prd").period = 1;

bios.TSK.create("RUNCONTACTOR_tsk");

bios.TSK.instance("RUNCONTACTOR_tsk").order = 8;

bios.TSK.instance("SENDCANMSGS_tsk").priority = 5;

bios.TSK.instance("RUNCONTACTOR_tsk").priority = 4;

bios.TSK.instance("RUNCONTACTOR_tsk").comment = "This task, when activated, enables the precharge then run contactor.";

bios.TSK.instance("RUNCONTACTOR_tsk").fxn = prog.extern("EnableContactor_TSK");

bios.SEM.create("ENABLECONTACTOR_sem");

bios.SEM.instance("ENABLECONTACTOR_sem").comment = "This semaphore tells whether the run contactor must be enabled";

bios.SEM.create("READWRITESAVEDVAR_sem");

bios.SEM.instance("READWRITESAVEDVAR_sem").comment = "This semaphore is posted whenever a read/write saved variable command message is received.  It tel";

bios.TSK.create("READWRITESAVEDVAR_tsk");

bios.TSK.instance("READWRITESAVEDVAR_tsk").order = 9;

bios.TSK.instance("READWRITESAVEDVAR_tsk").comment = "This task handles a request to read/write a saved variable in EEPROM";

bios.TSK.instance("READWRITESAVEDVAR_tsk").fxn = prog.extern("ReadWriteSavedVar_TSK");

bios.TSK.instance("READWRITESAVEDVAR_tsk").priority = 2;

bios.PRD.instance("GLedBlink_PRD").period = 250;

bios.PRD.instance("TICKLESENDCANMSGS_prd").period = 250;

bios.PRD.instance("TICKLESENDCANMSGS_prd").comment = "This periodic function calls the Send CAN Messages task to activate every 250 ms";

bios.TSK.instance("STATEMACHINE_tsk").priority = 6;

bios.TSK.instance("COMPLETEINIT_tsk").priority = 7;

bios.MEM.STACKSIZE = 0x0500;

bios.TSK.instance("COMPLETEINIT_tsk").priority = 15;

bios.TSK.instance("STATEMACHINE_tsk").priority = 13;

bios.TSK.instance("RUNCONTACTOR_tsk").priority = 7;

bios.TSK.instance("STATEMACHINE_tsk").priority = 8;

bios.TSK.instance("RUNCONTACTOR_tsk").priority = 4;

bios.MEM.instance("SRAM").space = "data";

bios.MEM.instance("SRAM").space = "code/data";

bios.MEM.instance("SRAM").space = "data";

bios.MEM.ECONSTSEG = prog.get("L47SARAM");

bios.MEM.ECONSTSEG = prog.get("SRAM");

bios.MEM.ECONSTSEG = prog.get("L47SARAM");

bios.SEM.instance("CANATXREADY_sem").count = 0;

bios.SEM.instance("CANBTXREADY_sem").count = 0;

// !GRAPHICAL_CONFIG_TOOL_SCRIPT_INSERT_POINT!

 

prog.gen();

  • Justin, What is the version of xdctools you are using? XDCtools 3.25 does not contain any DSP/BIOS support, which is needed for the conversion tool.

  • I am using 3.25.   Which version should I try to use to get this to convert?

    • Okay, I installed 3.22 and got it to get into the conversion utility.  This time, however, it's freezing and telling me my system setting is 300 MHz, when in fact I can see in the TConf utility that it is set as 150mHz.  Am I missing a setting somewhere?

  • Justin,
    if somewhere in your script you are setting bios.GBL.CPUCLOCK, that value wins. The value params.clockRate printed by the conversion tool is the default clock rate for the platform that was originally used. The purpose of bios.GBL.CPUCLOCK is that you can change the clock rate from its default value.

    I don't remember ever seeing that the conversion utility freezes. Can you post the version of XDCtools and BIOS, and also your complete TCF script?
    While I am looking at it, you can try using XDCtools 3.24. That's the newest version of XDCtools that still supports BIOS 5 and the conversion tool.

  • I don't see that being set anywhere.  Here is the script I am trying to convert.

    I just installed and tried again on XDCTools 3.24 and it resulted in the same issue, the utility starts, but it just sits there after "Clock rate: 300"

    The project was originally built with DSP/BIOS 5.41.11.382045.input.txt

  • Justin,
    I found that the switch from 150 to 300 MHz happens in our code before your script starts. I don't know what's the reason for it, and I am still trying to get more info from others in the SYS/BIOS team.

    I tried to convert your script and it worked fine. I noticed there is a wait of a couple of seconds after "Clock rate:" though. For how long were you waiting before interrupting the conversion? Is there a directory New in your workspace? Is there any content in it?

  • I tried several times just leaving the command window open at the end of the day, and it was always at the same place when I got back the next day.  There in a "New" directory. In it is: .xdcenv.mak, config.bld, package.bld, package.xdc, Platform.xdc and Platform.xs.

     

    Thare is also a "MyConfig.cfg" file, but when I try to open it in CCS, and unexpected exception is thrown. "invalid target"

  • I installed XDC 3.24, bios 6.32 and CCS 5.4 on a different computer.  I was able to get the utility to run, and produce a .cfg file, but when examining the cfg in CCS, it is only text.  None of the semaphores, SWIs, or HWIs are enabled and the only thing in the outline is two "Program" bullets.

     

    after running the utility in cmd, this is the error that was produced.  I am unsure what it means.

     

     

    C:\>xs --xp="C:\ti\bios_6_32_05_54\packages" ti.bios.conversion -c MyConfig.cfg

    --pr "C:\" --pn "./New" input.tcf

    Platform: ti.platforms.ezdsp28335

            params.clockRate:150

            params.catalogName:ti.catalog.c2800

            params.deviceName:28335

    Target: ti.targets.C28_large

    Clock Rate: 300

    js: ?C:\?\Ne\package.bld (The filename, directory name, or volume label syntax i

    s incorrect)

    org.mozilla.javascript.WrappedException: Wrapped java.io.FileNotFoundException:

    ?C:\?\Ne\package.bld (The filename, directory name, or volume label syntax is in

    correct)

            at org.mozilla.javascript.Context.throwAsScriptRuntimeEx(Context.java:17

    73)

            at org.mozilla.javascript.MemberBox.newInstance(MemberBox.java:202)

            at org.mozilla.javascript.NativeJavaClass.constructSpecific(NativeJavaCl

    ass.java:281)

            at org.mozilla.javascript.NativeJavaClass.construct(NativeJavaClass.java

    :200)

            at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:337

    7)

            at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2487)

            at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.j

    ava:164)

            at xdc.services.intern.xsr.Invoke.call(Invoke.java:130)

            at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:333

    0)

            at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2487)

            at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.j

    ava:164)

            at xdc.services.intern.xsr.Invoke.call(Invoke.java:130)

            at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:333

    0)

            at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2487)

            at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.j

    ava:164)

            at xdc.services.intern.xsr.Invoke.call(Invoke.java:130)

            at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:333

    0)

            at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2487)

            at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.j

    ava:164)

            at xdc.services.intern.xsr.Invoke.call(Invoke.java:92)

            at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:333

    0)

            at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2487)

            at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.j

    ava:164)

            at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:3

    98)

            at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:306

    8)

            at org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.j

    ava:175)

            at org.mozilla.javascript.Context.evaluateReader(Context.java:1135)

            at config.Shell.evaluateReader(Shell.java:846)

            at config.Shell.processReader(Shell.java:511)

            at config.Shell.processFile(Shell.java:570)

            at config.Shell.exec(Shell.java:780)

            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

            at java.lang.reflect.Method.invoke(Unknown Source)

            at xdc.tools.Server$1.run(Server.java:397)

            at java.lang.Thread.run(Unknown Source)

    Caused by: java.io.FileNotFoundException: ?C:\?\Ne\package.bld (The filename, di

    rectory name, or volume label syntax is incorrect)

            at java.io.FileOutputStream.open(Native Method)

            at java.io.FileOutputStream.<init>(Unknown Source)

            at java.io.FileOutputStream.<init>(Unknown Source)

            at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

     

            at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)

     

            at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou

    rce)

            at java.lang.reflect.Constructor.newInstance(Unknown Source)

            at org.mozilla.javascript.MemberBox.newInstance(MemberBox.java:194)

            ... 35 more

  • Justin,
    based on the content of the directory I have a better idea where the problem could be, but I am still unable to reproduce it. We can either try to look into the problem further, and to do that I'll have to ask you to edit some files, or I can just send you the results of the successful conversion that I ran.

    Here are the steps that you would have to make to help me debug:
    1. open the file Main.xs in the directory packages/ti/bios/conversion in your SYS/BIOS installation. The lines 311-313
    var Server = Packages.xdc.tools.Server("xdc.tools.platformWizard", "-r", $$conversion.prepo, "-x", tempXmlFile.getAbsoluteFile(), $$conversion.pname]);
    Server.start();

    should be replaced with
    var props = java.lang.System.getProperties();
    props.setProperty("xdc.traceEnable", "all");
    var Server = Packages.xdc.tools.Server("xdc.tools.platformWizard", ["-r", $$conversion.prepo, "-x", tempXmlFile.getAbsoluteFile(), $$conversion.pname], props);
    Server.start();

    var line;
    while ((line = s.read()) != null) {
        print(line);
    }

    2. Open the file Main.xs in packages/xdc/tools/platformWizard in your XDCtools installation. After the line 47
    var ret = _localExec(cmdarr);

    add a new line
    print("output: " + ret.outStream.log);

    Now, when you run the conversion tool you should get much more verbose output. Please post it here.

  • I somehow missed your last post while I was replying to an older one.
    Anyway, you said that the conversion tool exited without errors and produced a CFG script. But, then you posted a command line for the conversion tool that causes an error. If you are still having a problem with running the conversion tool, try first creating a new directory for your repository. Create the directory C:/Repo. Then, run the following command line: 

    xs --xp="C:\ti\bios_6_32_05_54\packages" ti.bios.conversion -c MyConfig.cfg --pr "C:/Repo" --pn New input.tcf

    What happens? Please post the output.

      

  • Sorry for being confusing.   I ran it several times at first and every time the command window would freeze after "Clock Rate:" 

    Then, I ran it and it produced the error I most recently posted. However it still produced a cfg file.  When I opened that file, the outline only shows two “Program” bullets, but nothing more. (identical to the image attached for the next description)

    Then I ran the command line that was just suggested, and for the first time, the conversion finished completely with no errors.  When I open that cfg file, I am still only able to see the two “Program” bullets in the outline, as pictured in this screen shot.

     

    And here is the contents of the repo

  • Justin,
    let's check first that the generated CFG script has the correct content. Then, we can try to figure out why it doesn't show up correctly in CCS. I attached the content of the CFG script that I converted from your TCF script. Please check if there are any differences.

    xdc.loadPackage('ti.bios.tconf');

    /* The following DSP/BIOS Features are enabled. */

    bios.enableRealTimeAnalysis(prog);

    bios.enableRtdx(prog);

    bios.enableTskManager(prog);

    bios.PRD.create("GLedBlink_PRD");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("GLedBlink_PRD").order = 1;

    bios.PRD.instance("GLedBlink_PRD").comment = "This periodic function is used to toggle the green LED on the Semikron board on and off";

    bios.PRD.instance("GLedBlink_PRD").period = 500;

    bios.PRD.instance("GLedBlink_PRD").fxn = "GLedBlink";

    bios.PIE.instance("PIE_INT1_4").fxn = "FAULT_ISR";

    bios.PIE.instance("PIE_INT1_4").useDispatcher = 1;

    bios.LOG.create("trace");

    bios.PIE.instance("PIE_INT5_1").fxn = "EQEP1_INT_ISR";

    bios.PIE.instance("PIE_INT5_1").useDispatcher = 1;

    bios.PRD.instance("GLedBlink_PRD").fxn = "GLedBlink_SWI";

    bios.SWI.create("RESET_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("RESET_swi").order = 1;

    bios.SWI.instance("RESET_swi").comment = "This function resets the DSP";

    bios.SWI.instance("RESET_swi").fxn = "Reset_SWI";

    bios.SWI.instance("RESET_swi").priority = 4;

    bios.MEM.STACKSIZE = 0x0800;

    bios.SWI.instance("RESET_swi").priority = 14;

    bios.MEM.STACKSIZE = 0x0500;

    bios.MEM.STACKSIZE = 0x04a0;

    bios.MEM.STACKSIZE = 0x047f;

    bios.MEM.STACKSIZE = 0x0500;

    bios.SWI.instance("RESET_swi").fxn = "Reset_ISR";

    bios.PRD.instance("GLedBlink_PRD").fxn = "GLedBlink_ISR";

    bios.SWI.instance("RESET_swi").fxn = "Reset_SWI";

    bios.PRD.instance("GLedBlink_PRD").fxn = "GLedBlink_SWI";

    bios.SWI.create("FAULT_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("FAULT_swi").order = 2;

    bios.SWI.instance("FAULT_swi").priority = 14;

    bios.SWI.instance("FAULT_swi").priority = 13;

    bios.SWI.instance("FAULT_swi").fxn = "Fault_SWI";

    bios.SWI.instance("FAULT_swi").comment = "This SWI is executed whenever the FPGA sends a fault signal to the DSP";

    bios.PIE.instance("PIE_INT1_6").fxn = "ADC_INT_ISR";

    bios.PIE.instance("PIE_INT1_6").useDispatcher = 1;

    bios.SWI.create("ADC_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ADC_swi").order = 3;

    bios.SWI.instance("ADC_swi").priority = 14;

    bios.SWI.instance("ADC_swi").priority = 12;

    bios.SWI.instance("ADC_swi").comment = "Analog to Digital Converter Interrupt Service Routine";

    bios.SWI.instance("ADC_swi").fxn = "ADC_SWI";

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("PRD_swi").order = 1;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("KNL_swi").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("RESET_swi").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("FAULT_swi").order = 4;

    bios.SWI.instance("ADC_swi").destroy();

    bios.SWI.create("ADCSEQ1_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ADCSEQ1_swi").order = 6;

    bios.SWI.instance("ADCSEQ1_swi").comment = "Analog to Digital Converter Interrupt Service Routine";

    bios.SWI.instance("ADCSEQ1_swi").fxn = "ADC_SWI";

    bios.SWI.instance("ADCSEQ1_swi").priority = 14;

    bios.SWI.instance("ADCSEQ1_swi").fxn = "ADC_SEQ1_SWI";

    bios.SWI.instance("ADCSEQ1_swi").priority = 12;

    bios.SWI.create("ADCSEQ2_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ADCSEQ2_swi").order = 7;

    bios.SWI.instance("ADCSEQ2_swi").priority = 14;

    bios.SWI.instance("ADCSEQ2_swi").priority = 11;

    bios.SWI.instance("ADCSEQ2_swi").fxn = "ADC_SEQ2_SWI";

    bios.SWI.instance("ADCSEQ2_swi").priority = 6;

    bios.MEM.LOADHWIVECSEG = prog.get("FLASH");

    bios.GBL.CALLUSERINITFXN = 1;

    bios.GBL.USERINITFXN = "UserInit";

    bios.MEM.instance("L03SARAM").space = "code";

    bios.MEM.instance("FLASH").len = 0x3fff6;

    bios.MEM.create("BEGIN_FLASH");

    bios.MEM.instance("BEGIN_FLASH").space = "code";

    bios.MEM.instance("BEGIN_FLASH").base = 0x33fff6;

    bios.MEM.instance("BEGIN_FLASH").len = 0x0002;

    bios.MEM.instance("FLASH").len = 0x3ff80;

    bios.MEM.create("CSM_RSVD");

    bios.MEM.instance("CSM_RSVD").base = 0x33ff80;

    bios.MEM.instance("CSM_RSVD").len = 0x0076;

    bios.MEM.instance("CSM_RSVD").space = "code";

    bios.MEM.create("PASSWORDS");

    bios.MEM.instance("PASSWORDS").base = 0x33fff8;

    bios.MEM.instance("PASSWORDS").len = 0x0008;

    bios.MEM.instance("PASSWORDS").space = "code";

    bios.SWI.create("CURRENTLOOPA_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("CURRENTLOOPA_swi").order = 8;

    bios.SWI.instance("CURRENTLOOPA_swi").priority = 14;

    bios.SWI.instance("CURRENTLOOPA_swi").priority = 11;

    bios.SWI.instance("CURRENTLOOPA_swi").fxn = "CurrentLoopPhaseA_SWI";

    bios.SWI.create("CURRENTLOOPB_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("CURRENTLOOPB_swi").order = 9;

    bios.SWI.instance("CURRENTLOOPB_swi").priority = 14;

    bios.SWI.instance("CURRENTLOOPB_swi").priority = 11;

    bios.SWI.instance("CURRENTLOOPB_swi").fxn = "CurrentLoopPhaseB_SWI";

    bios.SWI.create("CURRENTLOOPC_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("CURRENTLOOPC_swi").order = 10;

    bios.SWI.instance("CURRENTLOOPC_swi").priority = 14;

    bios.SWI.instance("CURRENTLOOPC_swi").priority = 11;

    bios.SWI.instance("CURRENTLOOPC_swi").fxn = "CurrentLoopPhaseC_SWI";

    bios.MEM.instance("L47SARAM").space = "data";

    bios.LCK.create("SPIBUSY_lck");

    bios.LCK.instance("SPIBUSY_lck").comment = "This lock indicates that the SPI module is busy.";

    bios.SEM.create("READTEMPS_sem");

    bios.SEM.instance("READTEMPS_sem").comment = "This semaphore tells whether it is ok to allow the Read Temperatures Task to activate";

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("TSK_idle").order = 1;

    bios.TSK.create("READTEMPS_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("READTEMPS_tsk").order = 3;

    bios.TSK.instance("READTEMPS_tsk").fxn = "CheckTemperatures_TSK";

    bios.PRD.create("TICKLEREADTEMPS_prd");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 3;

    bios.PRD.instance("TICKLEREADTEMPS_prd").fxn = "TickleReadTemps_SWI";

    bios.PRD.instance("TICKLEREADTEMPS_prd").period = 100;

    bios.PRD.instance("TICKLEREADTEMPS_prd").comment = "This periodic function causes the Read Temperatures function to activate every 100 ms";

    bios.PIE.instance("PIE_INT6_1").fxn = "SPIINTA_ISR";

    bios.PIE.instance("PIE_INT6_1").useDispatcher = 1;

    bios.SEM.create("SPIMSGRDY_sem");

    bios.SEM.instance("SPIMSGRDY_sem").comment = "A positive count on this semaphore indicates a message is ready in the SPI RX buffer";

    bios.SEM.create("CANATXREADY_sem");

    bios.SEM.instance("CANATXREADY_sem").comment = "A Positive count on this semaphore indicates that the CAN A module is ready to transmit a new mess";

    bios.SEM.instance("CANATXREADY_sem").count = 1;

    bios.SEM.create("CANBTXREADY_sem");

    bios.SEM.instance("CANBTXREADY_sem").comment = "A Positive count on this semaphore indicates that the CAN B module is ready to transmit a new mess";

    bios.SEM.instance("CANBTXREADY_sem").count = 1;

    bios.PIE.instance("PIE_INT9_5").fxn = "ECAN0INTA_ISR";

    bios.PIE.instance("PIE_INT9_5").useDispatcher = 1;

    bios.PIE.instance("PIE_INT9_6").fxn = "ECAN1INTA_ISR";

    bios.PIE.instance("PIE_INT9_6").useDispatcher = 1;

    bios.PIE.instance("PIE_INT9_7").fxn = "ECAN0INTB_ISR";

    bios.PIE.instance("PIE_INT9_7").useDispatcher = 1;

    bios.PIE.instance("PIE_INT9_8").fxn = "ECAN1INTB_ISR";

    bios.PIE.instance("PIE_INT9_8").useDispatcher = 1;

    bios.SWI.create("ECAN0INTA_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ECAN0INTA_swi").order = 11;

    bios.SWI.instance("ECAN0INTA_swi").priority = 14;

    bios.SWI.instance("ECAN0INTA_swi").priority = 4;

    bios.SWI.instance("ECAN0INTA_swi").fxn = "ECAN0INTA_SWI";

    bios.SWI.create("ECAN1INTA_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ECAN1INTA_swi").order = 12;

    bios.SWI.instance("ECAN1INTA_swi").priority = 14;

    bios.SWI.instance("ECAN1INTA_swi").priority = 2;

    bios.SWI.instance("ECAN1INTA_swi").fxn = "ECAN1INTA_SWI";

    bios.SWI.create("ECAN0INTB_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ECAN0INTB_swi").order = 13;

    bios.SWI.instance("ECAN0INTB_swi").priority = 14;

    bios.SWI.instance("ECAN0INTB_swi").priority = 4;

    bios.SWI.instance("ECAN0INTB_swi").fxn = "ECAN0INTB_SWI";

    bios.SWI.create("ECAN1INTB_swi");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.SWI.instance("ECAN1INTB_swi").order = 14;

    bios.SWI.instance("ECAN1INTB_swi").priority = 14;

    bios.SWI.instance("ECAN1INTB_swi").fxn = "ECAN1INTB_SWI";

    bios.SWI.instance("ECAN1INTB_swi").priority = 2;

    bios.TSK.create("SENDCANMSGS_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("SENDCANMSGS_tsk").order = 4;

    bios.TSK.instance("SENDCANMSGS_tsk").fxn = "SendCANMessages_TSK";

    bios.TSK.instance("READTEMPS_tsk").priority = 2;

    bios.TSK.instance("READTEMPS_tsk").priority = 1;

    bios.TSK.instance("SENDCANMSGS_tsk").priority = 2;

    bios.SEM.create("SENDCANMSGS_sem");

    bios.SEM.instance("SENDCANMSGS_sem").comment = "This semaphore tells whether it is ok to allow the SendCANMessages task to activate";

    bios.PRD.create("TICKLESENDCANMSGS_prd");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 4;

    bios.PRD.instance("TICKLESENDCANMSGS_prd").period = 100;

    bios.PRD.instance("TICKLESENDCANMSGS_prd").comment = "This periodic function calls the Send CAN Messages task to activate every 100 ms";

    bios.PRD.instance("TICKLESENDCANMSGS_prd").fxn = "TickleSendCANMessages_SWI";

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 1;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("GLedBlink_PRD").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("GLedBlink_PRD").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.CLK.instance("PRD_clock").order = 1;

    bios.SEM.create("TIMEOUT_sem");

    bios.SEM.instance("TIMEOUT_sem").comment = "This Semaphore will never be posted. Any function can pend on it for a finite amount of time in o";

    bios.TSK.create("DEBUGTASKS_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("DEBUGTASKS_tsk").order = 5;

    bios.TSK.instance("DEBUGTASKS_tsk").fxn = "DebugTasks_TSK";

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("READTEMPS_tsk").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("DEBUGTASKS_tsk").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("DEBUGTASKS_tsk").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("READTEMPS_tsk").order = 3;

    bios.PRD.instance("TICKLEREADTEMPS_prd").period = 250;

    bios.PRD.instance("TICKLEREADTEMPS_prd").comment = "This periodic function causes the Read Temperatures function to activate every 250 ms";

    bios.TSK.instance("DEBUGTASKS_tsk").priority = 15;

    bios.SEM.create("SPIBUSY_sem");

    bios.SEM.instance("SPIBUSY_sem").count = 1;

    bios.SEM.instance("SPIBUSY_sem").comment = "This semaphore will be checked out if any task is currently using the SPI module";

    bios.SEM.instance("SPIBUSY_sem").destroy();

    bios.TSK.instance("DEBUGTASKS_tsk").priority = 1;

    bios.TSK.instance("SENDCANMSGS_tsk").priority = 3;

    bios.TSK.instance("READTEMPS_tsk").priority = 2;

    bios.SEM.create("COMPLETEINIT_sem");

    bios.SEM.instance("COMPLETEINIT_sem").comment = "When this semaphore is posted, it means that the processor must complete initialization by loading";

    bios.TSK.create("COMPLETEINIT_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("COMPLETEINIT_tsk").order = 5;

    bios.TSK.instance("COMPLETEINIT_tsk").priority = 15;

    bios.TSK.instance("COMPLETEINIT_tsk").comment = "This task completes initialization steps which must occur at the task level";

    bios.TSK.instance("COMPLETEINIT_tsk").fxn = "CompleteInitialization_TSK";

    bios.PRD.create("RESETWATCHDOG_prd");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("RESETWATCHDOG_prd").order = 4;

    bios.PRD.instance("RESETWATCHDOG_prd").period = 1;

    bios.PRD.instance("RESETWATCHDOG_prd").comment = "Resets the watchdog timer";

    bios.PRD.instance("RESETWATCHDOG_prd").fxn = "ResetWatchdogTimer_SWI";

    bios.SEM.create("STATEMACHINE_sem");

    bios.SEM.instance("STATEMACHINE_sem").comment = "This semaphore tells the StateMachine_TSK() task to execute the number of times as the semaphore c";

    bios.TSK.create("STATEMACHINE_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("STATEMACHINE_tsk").order = 6;

    bios.TSK.instance("STATEMACHINE_tsk").comment = "This task runs the main state machine on the dsp.";

    bios.TSK.instance("STATEMACHINE_tsk").priority = 8;

    bios.TSK.instance("STATEMACHINE_tsk").fxn = "StateMachine_TSK";

    bios.PRD.create("TICKLESTATEMACHINE_prd");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 5;

    bios.PRD.instance("TICKLESTATEMACHINE_prd").period = 2;

    bios.PRD.instance("TICKLESTATEMACHINE_prd").fxn = "TickleStateMachine_SWI";

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("GLedBlink_PRD").order = 1;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 4;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("RESETWATCHDOG_prd").order = 5;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 4;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("RESETWATCHDOG_prd").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 4;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 5;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("RESETWATCHDOG_prd").order = 1;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESTATEMACHINE_prd").order = 2;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLESENDCANMSGS_prd").order = 3;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("TICKLEREADTEMPS_prd").order = 4;

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.PRD.instance("GLedBlink_PRD").order = 5;

    bios.PRD.instance("TICKLESTATEMACHINE_prd").comment = "This periodic function causes the primary state machine function to activate every 2 ms";

    bios.TSK.instance("DEBUGTASKS_tsk").priority = 2;

    bios.TSK.instance("SENDCANMSGS_tsk").priority = 4;

    bios.TSK.instance("READTEMPS_tsk").priority = 3;

    bios.TSK.create("SERVICEWATCHDOG_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("SERVICEWATCHDOG_tsk").order = 7;

    bios.TSK.instance("SERVICEWATCHDOG_tsk").comment = "This task resets the watchdog timer. ";

    bios.TSK.instance("SERVICEWATCHDOG_tsk").fxn = "ServiceWatchdog_TSK";

    bios.SEM.create("SERVICEWATCHDOG_sem");

    bios.SEM.instance("SERVICEWATCHDOG_sem").comment = "This semaphore tells the ServiceWatchdog_TSK() task to execute the number of times as the semaphor";

    bios.PRD.instance("TICKLESTATEMACHINE_prd").period = 1;

    bios.TSK.create("RUNCONTACTOR_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("RUNCONTACTOR_tsk").order = 8;

    bios.TSK.instance("SENDCANMSGS_tsk").priority = 5;

    bios.TSK.instance("RUNCONTACTOR_tsk").priority = 4;

    bios.TSK.instance("RUNCONTACTOR_tsk").comment = "This task, when activated, enables the precharge then run contactor.";

    bios.TSK.instance("RUNCONTACTOR_tsk").fxn = "EnableContactor_TSK";

    bios.SEM.create("ENABLECONTACTOR_sem");

    bios.SEM.instance("ENABLECONTACTOR_sem").comment = "This semaphore tells whether the run contactor must be enabled";

    bios.SEM.create("READWRITESAVEDVAR_sem");

    bios.SEM.instance("READWRITESAVEDVAR_sem").comment = "This semaphore is posted whenever a read/write saved variable command message is received. It tel";

    bios.TSK.create("READWRITESAVEDVAR_tsk");

    // WARNING: 'order' property is not supported in BIOS 6.

    bios.TSK.instance("READWRITESAVEDVAR_tsk").order = 9;

    bios.TSK.instance("READWRITESAVEDVAR_tsk").comment = "This task handles a request to read/write a saved variable in EEPROM";

    bios.TSK.instance("READWRITESAVEDVAR_tsk").fxn = "ReadWriteSavedVar_TSK";

    bios.TSK.instance("READWRITESAVEDVAR_tsk").priority = 2;

    bios.PRD.instance("GLedBlink_PRD").period = 250;

    bios.PRD.instance("TICKLESENDCANMSGS_prd").period = 250;

    bios.PRD.instance("TICKLESENDCANMSGS_prd").comment = "This periodic function calls the Send CAN Messages task to activate every 250 ms";

    bios.TSK.instance("STATEMACHINE_tsk").priority = 6;

    bios.TSK.instance("COMPLETEINIT_tsk").priority = 7;

    bios.MEM.STACKSIZE = 0x0500;

    bios.TSK.instance("COMPLETEINIT_tsk").priority = 15;

    bios.TSK.instance("STATEMACHINE_tsk").priority = 13;

    bios.TSK.instance("RUNCONTACTOR_tsk").priority = 7;

    bios.TSK.instance("STATEMACHINE_tsk").priority = 8;

    bios.TSK.instance("RUNCONTACTOR_tsk").priority = 4;

    bios.MEM.instance("SRAM").space = "data";

    bios.MEM.instance("SRAM").space = "code/data";

    bios.MEM.instance("SRAM").space = "data";

    bios.SEM.instance("CANATXREADY_sem").count = 0;

    bios.SEM.instance("CANBTXREADY_sem").count = 0;

    // !GRAPHICAL_CONFIG_TOOL_SCRIPT_INSERT_POINT!

    Program.sectMap[".text"] = new Program.SectionSpec()

    Program.sectMap[".text"].runSegment = "FLASH";

    Program.sectMap[".text"].loadSegment = "FLASH";

    Program.sectMap[".switch"] = new Program.SectionSpec()

    Program.sectMap[".switch"].runSegment = "FLASH";

    Program.sectMap[".switch"].loadSegment = "FLASH";

    Program.sectMap[".cinit"] = new Program.SectionSpec()

    Program.sectMap[".cinit"].runSegment = "FLASH";

    Program.sectMap[".cinit"].loadSegment = "FLASH";

    Program.sectMap[".pinit"] = new Program.SectionSpec()

    Program.sectMap[".pinit"].runSegment = "FLASH";

    Program.sectMap[".pinit"].loadSegment = "FLASH";

    Program.sectMap[".const"] = new Program.SectionSpec()

    Program.sectMap[".const"].runSegment = "L47SARAM";

    Program.sectMap[".const"].loadSegment = "FLASH";

    Program.sectMap[".data"] = new Program.SectionSpec()

    Program.sectMap[".data"] = "FLASH";

    Program.sectMap[".econst"] = new Program.SectionSpec()

    Program.sectMap[".econst"] = "FLASH";

    prog = xdc.module('xdc.cfg.Program');

     

  • I don't know what happened... I swore I replied to this last week.

    The text in my cfg file is, as far as I can tell, identical to what is posted.

  • Justin,
    it seems that the generated cfg script is correct. We should also verify that the generated platform is valid and that you are using the right platform in your project. If you are still using the names from one of your conversion command lines, the name of your platform is New. Please verify that you are using that platform by checking the field Platform in Project Properties->CCS General->RTSC. Then, right click on the project and select Build Project. Please post the content of the console window. If that comes out right, we can narrow the possible causes of the problems in the XGCONF view. 

  • Alright, I was able to get back to this and tried starting from scratch again.  I've gotten all the way through and tried to build, with my platform "Newer" selected.  I'm still having the same issue with the outline not showing anything other than two "Program" bullets, but I have gotten the build to progress further than it has before.  Now, the error that comes up describes not being able to locate a library. 

    Also, the device name and clock rate appear to be wrong in the sysbios platform information.

    Here is the output to the console:


    **** Build of configuration Debug for project last_chance ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron Unzip/Semikron_DCDC_v05/MyConfig.cfg'
    'Invoking: XDCtools'
    "C:/ti/CCS5.4/xdctools_3_25_00_48/xs" --xdcpath="C:/ti/CCS5.4/bios_6_35_01_29/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron Unzip/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newer -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug" "C:/Users/Admin/Desktop/Semikron Unzip/Semikron_DCDC_v05/MyConfig.cfg"
    making package.mak (because of package.bld) ...
    generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
    configuring MyConfig.x28FP from package/cfg/MyConfig_p28FP.cfg ...
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.TSK: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/TSK.xs", line 266: ti.bios.TSK.Instance#0 : 'order' not supported
    warning: ti.bios.TSK: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/TSK.xs", line 266: ti.bios.TSK.Instance#1 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#0 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#1 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#2 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#3 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#4 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#5 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#6 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#7 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#8 : 'order' not supported
    warning: ti.bios.PRD: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/PRD.xs", line 79: ti.bios.PRD.Instance#0 : 'order' not supported
    warning: ti.bios.PIE: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    js: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/support/package.xs", line 58: Error: Library not found: ti.bios.support.a28FP
    gmake.exe: *** [package/cfg/MyConfig_p28FP.xdl] Error 1
    gmake.exe: *** Deleting file `package/cfg/MyConfig_p28FP.xdl'
    gmake.exe: *** [package/cfg/MyConfig_p28FP.xdl] Deleting file `package/cfg/MyConfig_p28FP.h'
    gmake.exe: *** [package/cfg/MyConfig_p28FP.xdl] Deleting file `package/cfg/MyConfig_p28FP.c'
    js: "C:/ti/CCS5.4/xdctools_3_25_00_48/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

     

    And the cfg gui.

  • Aslo, when trying to edit the platform, CCS is not able to find it when I point the RTSCedit tool to it

    ctrl+N -> RTSC -> edit RTSC Platform.

    When pointing this tool to the platform location from the conversion tool, nothing is visible in the drop down menus. 

  • I'm not really sure what the error is referring to on the first line.  There is no reference to 's' anywhere in the code, let alone on line 91.

     

     

  • Would it be possible to send me the results of your successful conversion, so that I may try working with that to see if it will work?

     

    Thank you!

  • Reviewing my last few posts, it looks as though the first one I meant to post did not get posted.  I apologize and I'll try to start again.

     

    Trying to build the project in the state I am now results in this error in the console:


    **** Build of configuration Debug for project last_chance ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron Unzip/Semikron_DCDC_v05/MyConfig.cfg'
    'Invoking: XDCtools'
    "C:/ti/CCS5.4/xdctools_3_25_00_48/xs" --xdcpath="C:/ti/CCS5.4/bios_6_35_01_29/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron Unzip/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newer -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug" "C:/Users/Admin/Desktop/Semikron Unzip/Semikron_DCDC_v05/MyConfig.cfg"
    making package.mak (because of package.bld) ...
    generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
    configuring MyConfig.x28FP from package/cfg/MyConfig_p28FP.cfg ...
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.TSK: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/TSK.xs", line 266: ti.bios.TSK.Instance#0 : 'order' not supported
    warning: ti.bios.TSK: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/TSK.xs", line 266: ti.bios.TSK.Instance#1 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#0 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#1 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#2 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#3 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#4 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#5 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#6 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#7 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#8 : 'order' not supported
    warning: ti.bios.PRD: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/PRD.xs", line 79: ti.bios.PRD.Instance#0 : 'order' not supported
    warning: ti.bios.PIE: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    js: "C:/ti/CCS5.4/bios_6_35_01_29/packages/ti/bios/support/package.xs", line 58: Error: Library not found: ti.bios.support.a28FP
    gmake.exe: *** [package/cfg/MyConfig_p28FP.xdl] Error 1
    gmake.exe: *** Deleting file `package/cfg/MyConfig_p28FP.xdl'
    gmake.exe: *** [package/cfg/MyConfig_p28FP.xdl] Deleting file `package/cfg/MyConfig_p28FP.h'
    gmake.exe: *** [package/cfg/MyConfig_p28FP.xdl] Deleting file `package/cfg/MyConfig_p28FP.c'
    js: "C:/ti/CCS5.4/xdctools_3_25_00_48/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

     

    When looking at the cfg file, the platform information shows that 300 MHz clock rate. And when trying to edit the platform in the wizard, it does not show up. Here is a screen shot showing the cfg file and platform info.

     

     

    I made the above changes to Main.xs and the second file, and got the verbose output of the conversion utility.  here it is:

     

    C:\Users\Admin\Desktop\Semikron Unzip\Semikron_DCDC_v05>xs --xp="C:\ti\bios_6_34
    _02_18\packages" ti.bios.conversion -c MyConfig1.cfg --pr"C:\Users\Admin\Desktop
    \Semikron Unzip\Semikron_DCDC_v05" --pn Newest Semikron_DCDC_v05.tcf
    Platform: ti.platforms.ezdsp28335
            params.clockRate:150
            params.catalogName:ti.catalog.c2800
            params.deviceName:28335
    Target: ti.targets.C28_large
    Clock Rate: 300
    js: "C:/ti/bios_6_34_02_18/packages/ti/bios/conversion/Main.xs", line 91: Error:
     ti.bios.conversion: ReferenceError: "s" is not defined.
    TIME=02:26:24.673 PM -- xdc: loadPackage: xdc shell --> xdc.tools.platformWizard
     (packageLoad, all)
    TIME=02:26:24.677 PM -- xdc: loadPackage: xdc.tools.platformWizard loaded from C
    :/ti/xdctools_3_24_07_73/packages/ (packageLoad, all)
    TIME=02:26:24.682 PM -- xdc: loadPackage: xdc.tools.platformWizard --> xdc.tools
    .mkpkg (packageLoad, all)
    TIME=02:26:24.686 PM -- xdc: loadPackage: xdc.tools.mkpkg loaded from C:/ti/xdct
    ools_3_24_07_73/packages/ (packageLoad, all)
    TIME=02:26:24.690 PM -- xdc: loadPackage: xdc.tools.mkpkg --> xdc (packageLoad,
    all)
    TIME=02:26:24.693 PM -- xdc: loadPackage: xdc.tools.mkpkg --> xdc.corevers (pack
    ageLoad, all)
    TIME=02:26:24.723 PM -- xdc: loadPackage: xdc.tools.mkpkg --> xdc.services.io (n
    o dependency) (packageLoad, all)
    TIME=02:26:24.728 PM -- xdc: loadPackage: xdc.services.io loaded from C:/ti/xdct
    ools_3_24_07_73/packages/ (packageLoad, all)
    TIME=02:26:24.732 PM -- xdc: loadPackage: xdc.services.io --> xdc (packageLoad,
    all)
    TIME=02:26:24.733 PM -- xdc: loadPackage: xdc.services.io --> xdc.corevers (pack
    ageLoad, all)
    TIME=02:26:24.752 PM -- xdc: loadPackage: xdc.tools.platformWizard --> xdc (pack
    ageLoad, all)
    TIME=02:26:24.753 PM -- xdc: loadPackage: xdc.tools.platformWizard --> xdc.corev
    ers (packageLoad, all)
    TIME=02:26:24.755 PM -- xdc: loadPackage: xdc.tools.platformWizard --> xdc.tools
     (packageLoad, all)
    TIME=02:26:24.759 PM -- xdc: loadPackage: xdc.tools loaded from C:/ti/xdctools_3
    _24_07_73/packages/ (packageLoad, all)
    TIME=02:26:24.762 PM -- xdc: loadPackage: xdc.tools --> xdc (packageLoad, all)
    TIME=02:26:24.763 PM -- xdc: loadPackage: xdc.tools --> xdc.corevers (packageLoa
    d, all)
    TIME=02:26:24.795 PM -- xdc: loadPackage: xdc shell --> xdc.tools (no dependency
    ) (packageLoad, all)
    TIME=02:26:24.949 PM -- xdc: loadPackage: xdc shell --> xdc.tools.mkpkg (no depe
    ndency) (packageLoad, all)
    js: ReferenceError: "ret" is not defined.

    C:\Users\Admin\Desktop\Semikron Unzip\Semikron_DCDC_v05>

     

     

    The first error that shows up is produced on line 91, but when looking at line 91 in an editor, the error is not obvious.

     

     

     

    Sorry for any confusion.

     

  • Justin,
    I already posted the CFG script resulting from the conversion. But, I think the current problem you are having, the error that says that a library cannot be found, is a result of a bug in SYS/BIOS 6.35.01.29.

    Release notes for SYS/BIOS 6.35.02 list the following bug as fixed:
    "SDOCM00100800    ti.bios.support package is not exporting libraries for SYS/BIOS 6.35.00/01.  6.34.0x is OK."
    https://cqweb.ext.ti.com/cqweb/#/SDO-Web/SDOWP/RECORD/SDOCM00100800&recordType=IncidentReport&format=HTML&noframes=false&format=HTML&version=cqwj

    Try updating SYS/BIOS and run the configuration again. Disregard for now my post where I asked you to edit ti.bios.conversion and platformWizard code. Remove any changes you made and try with a newer version of SYS/BIOS. Let's see how far you go with that version.

  • Alright, I installed 6.34.02 and it converted just fine. using  I was able to select my created package, and added all the include locations I needed.

    When compiling, I get the "UInt16 has already been declared" error.  I found a similar post regarding this same error, and defined xdc_strict in the first file that threw the error.  This cleared the error for that file, but still left dozens remaining.  For each file I defined xdc__strict in, the error cleared.  I tried to declare it in std.h, but it had no effect.

    Here is a screenshot of the program.

     

    here is the output of the console:


    **** Build of configuration Debug for project Please ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_25_02_70/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Newerest;C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug" "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/MyConfigPlease.cfg"
    making package.mak (because of package.bld) ...
    generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
    configuring MyConfigPlease.x28FP from package/cfg/MyConfigPlease_p28FP.cfg ...
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/bios_6_34_04_22/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.SWI: "C:/ti/bios_6_34_04_22/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#0 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/bios_6_34_04_22/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#3 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/bios_6_34_04_22/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#8 : 'order' not supported
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    cl28FP package/cfg/MyConfigPlease_p28FP.c ...
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/MyConfigPlease.cfg'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/GlobalVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="GlobalVariables.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/GlobalVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/GlobalVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="HWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 48: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 99: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 104: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 125: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 142: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 160: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 175: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c", line 190: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/HWI_ISR.c".
    gmake: *** [HWI_ISR.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="SWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 337: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 417: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 496: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 1486: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 1660: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 1678: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c", line 1696: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/SWI_ISR.c".
    >> Compilation failure
    gmake: *** [SWI_ISR.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/States.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="States.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/States.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/States.c".
    gmake: *** [States.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Tasks.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 60: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 60: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 131: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 131: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 207: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 207: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 247: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 247: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 398: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 398: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 460: warning #225-D: function declared implicitly

    >> Compilation failure
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 460: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 916: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c", line 916: error #20: identifier "SYS_FOREVER" is undefined
    8 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Tasks.c".
    gmake: *** [Tasks.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="main.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/main.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/main.c".
    >> Compilation failure
    gmake: *** [main.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/ADC.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ADC.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/ADC.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/ADC.c".

    >> Compilation failure
    gmake: *** [Library/ADC.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CAN.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 219: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 410: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 410: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 416: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 416: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 979: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c", line 992: warning #225-D: function declared implicitly
    3 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CAN.c".
    gmake: *** [Library/CAN.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CodeStartBranch.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CodeStartBranch.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DSP2833x_GlobalVariableDefs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/DelayUs.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DelayUs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/DelayUs.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/DelayUs.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Flash.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Flash.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Flash.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Flash.c".
    gmake: *** [Library/Flash.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Gpio.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Gpio.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Gpio.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)

    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Gpio.c".
    >> Compilation failure
    gmake: *** [Library/Gpio.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Passwords.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Passwords.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Passwords.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Passwords.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/PieCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/PieCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/PieCtrl.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/PieCtrl.c".
    gmake: *** [Library/PieCtrl.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SPI.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 50: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 144: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 169: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 169: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 198: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 227: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 227: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 252: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 287: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 307: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c", line 318: warning #225-D: function declared implicitly
    4 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SPI.c".

    >> Compilation failure
    gmake: *** [Library/SPI.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SavedVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SavedVariables.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SavedVariables.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SavedVariables.c".

    >> Compilation failure
    gmake: *** [Library/SavedVariables.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SysCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SysCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SysCtrl.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)

    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/SysCtrl.c".
    gmake: *** [Library/SysCtrl.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Watchdog.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Watchdog.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Watchdog.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/Watchdog.c".

    >> Compilation failure
    gmake: *** [Library/Watchdog.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/XINT.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/XINT.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/XINT.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/XINT.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/ePWM.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ePWM.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/ePWM.c"
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 252: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_25_02_70/packages/xdc/std.h", line 253: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/ePWM.c".

    >> Compilation failure
    gmake: *** [Library/ePWM.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/eQEP.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/eQEP.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/eQEP.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/eQEP.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Headers" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/utilities.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c"
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c", line 51: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c", line 130: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c", line 133: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c", line 165: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/Library/utilities.c'
    ' '
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

     

  • Disregard the previous post.  As I posted it I realized I was using XDC Tools 3.25, which has no DSP/BIOS support. 

     

    I started again and used 3.24 and SYSBIOS 6.34, and this is the error that is produced, as well as a shot of the program:


    **** Build of configuration Debug for project Semikronik ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_24_07_73/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug" "C:/Users/Admin/Desktop/Semikron_Unzip_2/Semikron_DCDC_v05/MyConfigPlease.cfg"
    making package.mak (because of package.bld) ...
    generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
    configuring MyConfigPlease.x28FP from package/cfg/MyConfigPlease_p28FP.cfg ...
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/bios_6_34_04_22/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.SWI: "C:/ti/bios_6_34_04_22/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#0 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/bios_6_34_04_22/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#3 : 'order' not supported
    warning: ti.bios.SWI: "C:/ti/bios_6_34_04_22/packages/ti/bios/SWI.xs", line 113: ti.bios.SWI.Instance#8 : 'order' not supported
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    cl28FP package/cfg/MyConfigPlease_p28FP.c ...
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/mem.h", line 87: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 49: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 50: error: identifier "Arg" is undefined
    "package/cfg/MyConfigPlease_p28FP.c", line 2915: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sem.h", line 60: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sem.h", line 87: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sem.h", line 92: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/trg.h", line 117: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 54: error: identifier-list parameters may only be used in a function definition
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 54: error: duplicate parameter name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 65: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 66: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 68: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 86: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 111: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 121: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 142: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 142: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 143: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 144: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 147: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 147: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 148: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/swi.h", line 148: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/tsk.h", line 117: error: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/tsk.h", line 166: error: identifier "Uns" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/tsk.h", line 172: error: identifier "Uns" is undefined
    "package/cfg/MyConfigPlease_p28FP.c", line 2980: error: identifier "Arg" is undefined
    "package/cfg/MyConfigPlease_p28FP.c", line 2980: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 2988: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 2992: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3000: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 3004: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3012: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 3016: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3024: warning: parsing restarts here after previous syntax error

    >> Compilation failure
    "package/cfg/MyConfigPlease_p28FP.c", line 3028: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3036: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 3040: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3048: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 3052: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3060: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 3064: error: expected a "}"
    "package/cfg/MyConfigPlease_p28FP.c", line 3072: warning: parsing restarts here after previous syntax error
    "package/cfg/MyConfigPlease_p28FP.c", line 3086: error: identifier "args" is undefined
    "package/cfg/MyConfigPlease_p28FP.c", line 3119: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3119: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3122: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3122: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3125: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3125: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3128: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3128: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3131: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3131: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3134: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3134: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3137: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3137: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3140: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3140: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3143: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3143: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3146: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3146: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3149: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3149: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3152: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3152: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3155: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3155: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3158: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3158: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3161: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3161: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3164: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3164: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3167: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3167: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3170: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3170: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3173: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3173: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3176: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3176: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3179: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3179: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3182: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3182: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3185: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3185: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3188: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3188: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3191: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3191: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3194: error: too few arguments in function call
    "package/cfg/MyConfigPlease_p28FP.c", line 3194: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3209: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3212: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3215: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3218: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3221: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3224: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3227: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3230: error: expected a ")"
    "package/cfg/MyConfigPlease_p28FP.c", line 3233: error: "Arg" is not a type name
    "package/cfg/MyConfigPlease_p28FP.c", line 3236: error: expected a ")"
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/gbl.h", line 52: error: identifier "Uint16" is undefined
    Error limit reached.
    100 errors detected in the compilation of "package/cfg/MyConfigPlease_p28FP.c".
    Compilation terminated.
    gmake.exe: *** [package/cfg/MyConfigPlease_p28FP.o28FP] Error 1
    js: "C:/ti/xdctools_3_24_07_73/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

  • Justin,
    can you open the file package/cfg/MyConfigPlease_p28FP in the directory Debug/configPkg and post the lines between 2980 and 3100. That's a generated file and it shouldn't contain any references to these types. Even then, at the top of the file should be an include statement that brings in <xdc/std.h>, which should resolve references to these types. Can you verify that <xdc/std.h> is included first.

  • Yes, the first lline is the <xdc/std.h> include.

     

    Here is the content of those lines:

    __FAR__ TSK_Glue TSK_staticGlueTab[] = {
         {
            (Fxn)CheckTemperatures_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)SendCANMessages_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)DebugTasks_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)CompleteInitialization_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)StateMachine_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)ServiceWatchdog_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)EnableContactor_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
         {
            (Fxn)ReadWriteSavedVar_TSK,   /* fxn */
            { (Arg)0,     /* arg0 */
              (Arg)0,     /* arg1 */
              (Arg)0,     /* arg2 */
              (Arg)0,     /* arg3 */
              (Arg)0,     /* arg4 */
              (Arg)0,     /* arg5 */
              (Arg)0,     /* arg6 */
              (Arg)0      /* arg7 */
            }, 0    /* errno */
         },
    };

    /*
     *  ======== _TSK_staticGlue ========
     *  used to create statically defined tasks
     */
    /* ARGSUSED */
    Void _TSK_staticGlue(UArg arg0, UArg arg1)
    {
        Int         index = (Int)arg0;
        TSK_Glue    *glue = &TSK_staticGlueTab[index];
        Fxn         fxn = glue->fxn;
        Arg         *args = glue->args;
        ti_sysbios_knl_Task_Handle tsk;

        /*
         * Replace TSK_staticGlue with real task function.
         */
        tsk = ti_sysbios_knl_Task_self();
        tsk->fxn = (ti_sysbios_knl_Task_FuncPtr)fxn;

        /*
         * Replace index with pointer to glue structure for use by
         * TSK_get/seterror() and legacy elements not supported by Task.
         */
        ti_sysbios_knl_Task_setArg0(tsk, (UArg)glue);

        /*
         * Encode arg1 with the fxn for ROV to use prior to task running
         */
        ti_sysbios_knl_Task_setArg1(tsk, (UArg)fxn);

        fxn(args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7]);
    }

  • Justin,
    having <xdc/std.h> at the top of the generated file is usually enough to have Uns and Arg types defined. I still can't tell why it's failing for you. To help me debug further, please go to Project Properties->CCS Build->XDCtools->Advanced Options->Additional compiler options. The content of that text field is usually "-g --optimize_with_debug". Change it to "-g --optimize_with_debug -ppo -ppl". Clean and rebuild the project. It will fail again, but now you'll have the file MyConfigPlease_p28FP.pp in configPkg/package/cfg directory.
    Please attach this file to this thread. The file is large so you probably don't want just to paste it in your post.
    If you can't attach it and you have to paste it in your post, post only first 1000 lines.

    Also, go to  Project Properties->CCS Build->XDCtools->Advanced Options->Show details during build, and turn that option on. It will display the complete command lines in the console window. Please also post the complete command line that builds package/cfg/MyConfigPlease_p28FP.c

  • 8345.MyConfigPlease_p28FP.txt

    Okay, here is the progress so far:

    In the previous build I reconverted the project and started from scratch. I got it to the point where I recieved the previous mentioned errors and supplied all the data and results.  Then I attempted to edit the RTSC platform in the wizard.  I selected the package I am using, and changed the clock speed on page 2 from 300 to 150.  After doing this, I was not able to select the package again in the project settings. When adding the repository, which had already been added and selected from prior to running the wizard, the package name does not populate the drop down menu.  Since this was happening, I was not able to make the requested changes to the project I was working with.

    So i reconverted and started from scratch again.  I got to the point where it gave the errors and mentioned previously, and made the changes to the compiler options.

     (the post that I just deleted was built with bios 6.35, so I changed it and tried again)

    The console now gives different errors than the ones previously:


    **** Build of configuration Debug for project Semikronn2 ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_24_07_73/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug -ppo -ppl" -v "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg"
    #
    # making package.mak (because of package.bld) ...
    C:/ti/xdctools_3_24_07_73/xs  -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   -f C:/ti/xdctools_3_24_07_73/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_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/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 MyConfigPlease.x28FP from package/cfg/MyConfigPlease_p28FP.cfg ...
    C:/ti/xdctools_3_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   xdc.cfg MyConfigPlease.x28FP package/cfg/MyConfigPlease_p28FP.cfg package/cfg/MyConfigPlease_p28FP
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/bios_6_34_04_22/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    C:/ti/xdctools_3_24_07_73/bin/sed 's"^\"\(package/cfg/MyConfigPlease_p28FPcfg.cmd\)\""\"C:/Users/Admin/Desktop/Semikron99/Semikronn2/Debug/configPkg/\1\""' package/cfg/MyConfigPlease_p28FP.xdl > linker.cmd
    C:/ti/xdctools_3_24_07_73/bin/rm -f package/cfg/MyConfigPlease_p28FP.o28FP
    #
    # cl28FP package/cfg/MyConfigPlease_p28FP.c ...
    C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000 -c  -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg -fc package/cfg/MyConfigPlease_p28FP.c
    C:/ti/xdctools_3_24_07_73/bin/mkdep -a package/cfg/MyConfigPlease_p28FP.o28FP.dep -p package/cfg -s o28FP package/cfg/MyConfigPlease_p28FP.c -C   -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="GlobalVariables.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="HWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 48: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 99: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 104: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 125: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 142: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 160: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 175: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 190: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="SWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 337: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 417: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 496: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1486: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1660: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1678: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1696: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="States.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Tasks.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 60: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 60: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 131: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 131: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 207: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 207: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 247: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 247: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 398: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 398: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 417: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 417: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 435: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 435: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 460: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 460: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 916: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 916: error #20: identifier "SYS_FOREVER" is undefined
    11 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c".

    >> Compilation failure
    gmake: *** [Tasks.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="main.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ADC.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CAN.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 219: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 410: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 410: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 416: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 416: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 979: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 992: warning #225-D: function declared implicitly
    2 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c".

    >> Compilation failure
    gmake: *** [Library/CAN.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CodeStartBranch.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DSP2833x_GlobalVariableDefs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DelayUs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Flash.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Gpio.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Passwords.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/PieCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SPI.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 50: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 144: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 169: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 169: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 198: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 227: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 227: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 252: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: error #18: expected a ")"
    9 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c".

    >> Compilation failure
    gmake: *** [Library/SPI.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SavedVariables.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SysCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Watchdog.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/XINT.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ePWM.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/eQEP.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/utilities.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 129: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 132: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 164: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    ' '
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

  • Justin,
    the errors are coming now from your source files, so the .pp file I asked for in the previous post is not relevant anymore. It's strange that you are getting all these different outcomes from a basically same set of steps. But I'll ignore that problem for now and see if we can get you to build successfully at least once.

    The errors and warnings are now appearing in your source files. One possible reason is that you haven't specified a path to DSP/BIOS include files. To do that, please open the Bios Legacy User's Guide in the directory docs of your SYS/BIOS installation. BTW, you should have at least skimmed through that file already because it documents all required steps for the BIOS 5 to BIOS 6 conversion. Look for Section 3.3 Updating the Project's Compiler Search Path, and follow the steps in there. Let me know if that helps.

  • You are correct.  I did forget to add that one include as referenced in the guide.  I fixed that issue and added the indicated path as shown here:

    However, the same issues are still present:


    **** Build of configuration Debug for project Semikronn2 ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_24_07_73/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug -ppo -ppl" -v "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg"
    #
    # making package.mak (because of package.bld) ...
    C:/ti/xdctools_3_24_07_73/xs  -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   -f C:/ti/xdctools_3_24_07_73/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_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/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 MyConfigPlease.x28FP from package/cfg/MyConfigPlease_p28FP.cfg ...
    C:/ti/xdctools_3_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   xdc.cfg MyConfigPlease.x28FP package/cfg/MyConfigPlease_p28FP.cfg package/cfg/MyConfigPlease_p28FP
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/bios_6_34_04_22/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    C:/ti/xdctools_3_24_07_73/bin/sed 's"^\"\(package/cfg/MyConfigPlease_p28FPcfg.cmd\)\""\"C:/Users/Admin/Desktop/Semikron99/Semikronn2/Debug/configPkg/\1\""' package/cfg/MyConfigPlease_p28FP.xdl > linker.cmd
    C:/ti/xdctools_3_24_07_73/bin/rm -f package/cfg/MyConfigPlease_p28FP.o28FP
    #
    # cl28FP package/cfg/MyConfigPlease_p28FP.c ...
    C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000 -c  -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg -fc package/cfg/MyConfigPlease_p28FP.c
    C:/ti/xdctools_3_24_07_73/bin/mkdep -a package/cfg/MyConfigPlease_p28FP.o28FP.dep -p package/cfg -s o28FP package/cfg/MyConfigPlease_p28FP.c -C   -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="GlobalVariables.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="HWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 48: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 99: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 104: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 125: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 142: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 160: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 175: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 190: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="SWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 337: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 417: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 496: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1486: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1660: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1678: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1696: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="States.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Tasks.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 60: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 60: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 131: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 131: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 207: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 207: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 247: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 247: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 398: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 398: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 417: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 417: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 435: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 435: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 460: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 460: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 916: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 916: error #20: identifier "SYS_FOREVER" is undefined
    11 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c".
    gmake: *** [Tasks.obj] Error 1

    >> Compilation failure
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="main.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ADC.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CAN.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 219: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 410: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 410: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 416: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 416: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 979: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 992: warning #225-D: function declared implicitly
    2 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c".

    >> Compilation failure
    gmake: *** [Library/CAN.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CodeStartBranch.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DSP2833x_GlobalVariableDefs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DelayUs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Flash.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Gpio.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Passwords.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/PieCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SPI.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 50: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 144: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 169: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 169: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 198: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 227: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 227: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 252: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: error #18: expected a ")"
    9 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c".

    >> Compilation failure
    gmake: *** [Library/SPI.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SavedVariables.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SysCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Watchdog.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/XINT.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ePWM.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/eQEP.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/utilities.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 129: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 132: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 164: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    ' '
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

  • Be sure to clean the project first. Then, verify that you are including <std.h> and other BIOS header files. For example Tasks.c references SYS macros, so you have to include <sys.h>.

    If you still have errors, you'll need to generate a list of macros. Right click on Tasks.c, click on Properties->CCS Build->C2000 Compiler->Advanced Options->Parser Preprocessing Options. Select "manual" for Mode, and then in the field for -ppm option enter Tasks.pp, and enable -ppa option. Please post the generated .pp file and the console output. 

  • After adding a couple of those includes, I am presented with a new set of errors:


    **** Build of configuration Debug for project Semikronn2 ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_24_07_73/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug -ppo -ppl" -v "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg"
    #
    # making package.mak (because of package.bld) ...
    C:/ti/xdctools_3_24_07_73/xs  -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   -f C:/ti/xdctools_3_24_07_73/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_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/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 MyConfigPlease.x28FP from package/cfg/MyConfigPlease_p28FP.cfg ...
    C:/ti/xdctools_3_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   xdc.cfg MyConfigPlease.x28FP package/cfg/MyConfigPlease_p28FP.cfg package/cfg/MyConfigPlease_p28FP
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/bios_6_34_04_22/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    C:/ti/xdctools_3_24_07_73/bin/sed 's"^\"\(package/cfg/MyConfigPlease_p28FPcfg.cmd\)\""\"C:/Users/Admin/Desktop/Semikron99/Semikronn2/Debug/configPkg/\1\""' package/cfg/MyConfigPlease_p28FP.xdl > linker.cmd
    C:/ti/xdctools_3_24_07_73/bin/rm -f package/cfg/MyConfigPlease_p28FP.o28FP
    #
    # cl28FP package/cfg/MyConfigPlease_p28FP.c ...
    C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000 -c  -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg -fc package/cfg/MyConfigPlease_p28FP.c
    C:/ti/xdctools_3_24_07_73/bin/mkdep -a package/cfg/MyConfigPlease_p28FP.o28FP.dep -p package/cfg -s o28FP package/cfg/MyConfigPlease_p28FP.c -C   -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="GlobalVariables.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="HWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 48: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 99: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 104: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 125: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 142: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 160: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 175: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 190: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="SWI_ISR.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 337: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 417: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 496: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1486: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1660: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1678: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1696: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="States.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="Tasks.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c"
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 48: error #20: identifier "Fxn" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 49: error #20: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 50: error #20: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 55: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 72: error #20: identifier "__FAR__" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 72: error #66: expected a ";"
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 74: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 74: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 75: error #20: identifier "Bool" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 75: error #20: identifier "Fxn" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 76: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 76: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 76: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 77: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 77: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 78: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 78: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 79: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 79: error #20: identifier "Char" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 80: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 80: error #20: identifier "Char" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 80: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 81: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 81: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 82: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 82: error #20: identifier "Char" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 82: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 84: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 85: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 86: error #20: identifier "Void" is undefined
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 231: error #102: "String" has already been declared in the current scope
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 63: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 63: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 134: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 134: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 210: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 210: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 250: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 250: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 401: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 401: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 420: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 438: error #18: expected a ")"

    >> Compilation failure
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 463: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 463: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 919: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 919: error #20: identifier "Uns" is undefined
    40 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c".
    gmake: *** [Tasks.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="main.pp" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c"
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 48: error #20: identifier "Fxn" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 49: error #20: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 50: error #20: identifier "Arg" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/fxn.h", line 55: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 72: error #20: identifier "__FAR__" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 72: error #66: expected a ";"
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 74: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 74: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 75: error #20: identifier "Bool" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 75: error #20: identifier "Fxn" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 76: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 76: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 76: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 77: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 77: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 78: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 78: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 79: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 79: error #20: identifier "Char" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 80: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 80: error #20: identifier "Char" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 80: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 81: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 81: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 82: error #20: identifier "Void" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 82: error #20: identifier "Char" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 82: error #760: variable "String" is not a type name
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 84: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 85: error #20: identifier "Int" is undefined
    "C:/ti/bios_6_34_04_22/packages/ti/bios/include/sys.h", line 86: error #20: identifier "Void" is undefined
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 231: error #102: "String" has already been declared in the current scope
    31 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c".

    >> Compilation failure
    gmake: *** [main.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ADC.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CAN.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 218: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 409: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 409: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 415: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 415: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 978: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 991: warning #225-D: function declared implicitly
    2 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c".

    >> Compilation failure
    gmake: *** [Library/CAN.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/CodeStartBranch.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DSP2833x_GlobalVariableDefs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/DelayUs.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Flash.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Gpio.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Passwords.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/PieCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SPI.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 50: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 144: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 169: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 169: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 198: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 227: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 227: error #20: identifier "SYS_FOREVER" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 252: warning #225-D: function declared implicitly

    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: warning #225-D: function declared implicitly
    >> Compilation failure
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 287: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 307: error #18: expected a ")"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: error #20: identifier "Uns" is undefined
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 318: error #18: expected a ")"
    9 errors detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c".
    gmake: *** [Library/SPI.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SavedVariables.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/SysCtrl.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/Watchdog.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/XINT.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/ePWM.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/eQEP.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="Library/utilities.pp" --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c"
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 50: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 129: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 132: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 164: warning #225-D: function declared implicitly
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    ' '
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

     

    7318.Tasks.txt

  • Justin,
    there are some things in the attached file that look suspicious.
    First, in your file Tasks.c, it seems that you are including sys.h before std.h. The header file std.h always comes first.
    Second, I just noticed in one of your previous posts that you are defining xdc__strict to avoid some type clashes between XDCtools header files and Control Suites header files. However, by doing that you are also hiding the type 'Uns'. Either you replace Uns everywhere with UInt16 for example, or define your own macro for Uns.
    Third, your C:/ti/xdctools_3_24_07_73/packages/xdc/std.h seem to be edited. Some definitions that should be there are missing. If you edited that file, please revert it to its original state because you may have deleted some lines from it and the errors you are getting are caused by such changes.

  • I have made those changes, and have reverted std.h back to what was shipped with the software.  I have defenitely reduced the umber of errors I have, but I am still getting the "UInt16 has already been declared."

    Here is GlobalVariables.pp, which I assume is what you might like to see based on the first errors, and also the console output.

    2185.GlobalVariables.txt


    **** Build of configuration Debug for project Semikronn2 ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_24_07_73/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r release -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug -ppo -ppl" -v "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg"
    #
    # making package.mak (because of package.bld) ...
    C:/ti/xdctools_3_24_07_73/xs  -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   -f C:/ti/xdctools_3_24_07_73/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_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/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 MyConfigPlease.x28FP from package/cfg/MyConfigPlease_p28FP.cfg ...
    C:/ti/xdctools_3_24_07_73/xs -Dxdc.path="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;.." -Dxdc.root=C:/ti/xdctools_3_24_07_73 -Dxdc.hostOS=Windows -Dconfig.importPath=".;C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05;C:/ti/CCS5.4/ccsv5/ccs_base;C:/ti/xdctools_3_24_07_73/packages;..;C:/ti/xdctools_3_24_07_73;C:/ti/xdctools_3_24_07_73/etc" -Dxdc.bld.targets="" -DTOOLS=   xdc.cfg MyConfigPlease.x28FP package/cfg/MyConfigPlease_p28FP.cfg package/cfg/MyConfigPlease_p28FP
    bios.enableRealTimeAnalysis is not supported
    bios.enableRtdx is not supported
    warning: ti.bios.MEM: "C:/ti/bios_6_34_04_22/packages/ti/bios/MEM.xs", line 312: ti.bios.MEM : bios.MEM.LOADHWIVECSEG is not supported.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
    warning: ti.bios.PIE: "C:/ti/bios_6_34_04_22/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
    C:/ti/xdctools_3_24_07_73/bin/sed 's"^\"\(package/cfg/MyConfigPlease_p28FPcfg.cmd\)\""\"C:/Users/Admin/Desktop/Semikron99/Semikronn2/Debug/configPkg/\1\""' package/cfg/MyConfigPlease_p28FP.xdl > linker.cmd
    C:/ti/xdctools_3_24_07_73/bin/rm -f package/cfg/MyConfigPlease_p28FP.o28FP
    #
    # cl28FP package/cfg/MyConfigPlease_p28FP.c ...
    C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000 -c  -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg -fc package/cfg/MyConfigPlease_p28FP.c
    C:/ti/xdctools_3_24_07_73/bin/mkdep -a package/cfg/MyConfigPlease_p28FP.o28FP.dep -p package/cfg -s o28FP package/cfg/MyConfigPlease_p28FP.c -C   -g --optimize_with_debug -ppo -ppl -qq -pdsw225 -Dfar=  -mo -v28 -DLARGE_MODEL=1 -ml --float_support=fpu32 -eo.o28FP -ea.s28FP  --embed_inline_assembly  -Dxdc_cfg__header__='configPkg/package/cfg/MyConfigPlease_p28FP.h'  -Dxdc_target_name__=C28_float -Dxdc_target_types__=ti/targets/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_6_1_3 -O2  -I. -IC:/ti/bios_6_34_04_22/packages -IC:/ti/CCS5.4/uia_1_03_01_08/packages -IC:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05 -IC:/ti/CCS5.4/ccsv5/ccs_base -IC:/ti/xdctools_3_24_07_73/packages -I.. -IC:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include -fs=./package/cfg -fr=./package/cfg
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/GlobalVariables.c".

    >> Compilation failure
    gmake: *** [GlobalVariables.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c"
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 247: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 248: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 48: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 99: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 104: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 125: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 142: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 160: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 175: warning #225-D: function declared implicitly

    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c", line 190: warning #225-D: function declared implicitly
    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/HWI_ISR.c".
    gmake: *** [HWI_ISR.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c"
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 247: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 248: warning #303-D: typedef name has already been declared (with same type)
    >> Compilation failure
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 337: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 417: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 496: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1486: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1660: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1678: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c", line 1696: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/SWI_ISR.c".
    gmake: *** [SWI_ISR.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c"
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 247: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/xdctools_3_24_07_73/packages/xdc/std.h", line 248: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/States.c".
    gmake: *** [States.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="Tasks.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 64: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 135: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 211: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 251: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 402: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 464: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c", line 920: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Tasks.c".

    >> Compilation failure
    gmake: *** [Tasks.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/main.c".

    >> Compilation failure
    gmake: *** [main.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ADC.c".
    gmake: *** [Library/ADC.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 220: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 411: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 417: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 980: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c", line 993: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CAN.c".
    gmake: *** [Library/CAN.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/CodeStartBranch.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DSP2833x_GlobalVariableDefs.c'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/DelayUs.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Flash.c".

    >> Compilation failure
    gmake: *** [Library/Flash.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    >> Compilation failure
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Gpio.c".
    gmake: *** [Library/Gpio.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm"
    'Finished building: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Passwords.asm'
    ' '
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/PieCtrl.c".

    >> Compilation failure
    gmake: *** [Library/PieCtrl.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 51: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 145: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 170: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 199: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 228: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 253: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 288: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 308: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c", line 319: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SPI.c".

    >> Compilation failure
    gmake: *** [Library/SPI.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SavedVariables.c".
    gmake: *** [Library/SavedVariables.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/SysCtrl.c".
    gmake: *** [Library/SysCtrl.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/Watchdog.c".
    gmake: *** [Library/Watchdog.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)

    >> Compilation failure
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/XINT.c".
    gmake: *** [Library/XINT.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/ePWM.c".

    >> Compilation failure
    gmake: *** [Library/ePWM.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/eQEP.c".

    >> Compilation failure
    gmake: *** [Library/eQEP.obj] Error 1
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c'
    'Invoking: C2000 Compiler'
    "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/bios_6_34_04_22/packages/ti/bios/include" --include_path="C:/ti/bios_6_34_04_22/packages/ti/sysbios" --include_path="C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3/include" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Headers" --include_path="C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_common/include" --include_path="C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include" --preproc_macros="GlobalVariables.pp" --preproc_with_compile --diag_warning=225 --display_error_number --diag_wrap=off --obj_directory="Library" --cmd_file="./configPkg/compiler.opt"  "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c"
    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 91: error #102: "Uint16" has already been declared in the current scope

    "C:/ti/controlSUITE/device_support/f2833x/v133/DSP2833x_headers/include/DSP2833x_Device.h", line 92: warning #303-D: typedef name has already been declared (with same type)
    >> Compilation failure
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 52: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 131: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 134: warning #225-D: function declared implicitly
    "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c", line 166: warning #225-D: function declared implicitly
    1 error detected in the compilation of "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c".
    gmake: *** [Library/utilities.obj] Error 1
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

  • Some more info:

    Since I am unsure of what to do, I've been trying different things here and there.  Removing the predefined definition for xdc__strict got rid of the "Uns" and "Arg" errors, as I posted in the last posting. But if I define xdc__strict at the top of certain files, it fixes the errors for some files.  For example, adding it to the top of GlobalVariables.c has removed all the errors that were coming up from that.

    However, adding it to certain other files causes the "Uns" and "Arg" errors for that file, ie. Tasks.c

    I am now left with only the '"Uint16" has already been declared error' for a few of the files.  The first of these to fail is Tasks.c.  I have included the console output and Tasks.pp.

    6862.console output.txt

    8228.Tasks (2).txt

     

  • Justin,

    You're getting some conflicts with the ControlSuite headers and what is already defined by XDCtools. I'd suggest to add a compiler option "-DDSP28_DATA_TYPES" so that it won't try to redefine the types that are defined by XDCtools.

  • Tom,

    thanks for your responsde.  This sounds like just the thing. Could you explain a little bit on how to implement this?  The couple of methods I've tried weren't correct, and I'm having trouble finding any documentation on it.

     

    Thanks

  • Actually, I think I correctly implemented it, however, now when compiles, the error is that Int16 is not defined in the  DSP2833x_Device.h file, just as if I were to manually comment out the defines in the header file itself.   

  • Justin,

    I just realized on what Sasha meant with is last post.

    You have more than one typedef for a few types (in particular due to Uint16):

    <xdctools_install_dir>\packages\xdc\std.h:

    /* DEPRECATED Aliases */
    #ifndef xdc__strict
    #define _TI_STD_TYPES

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

    typedef xdc_UInt8       Uint8;
    typedef xdc_UInt16      Uint16;
    typedef xdc_UInt32      Uint32;
    typedef xdc_UInt        Uns;
    #endif

    and

    C:\TI\controlSUITE\device_support\f2833x\v133\DSP2833x_headers\include\DSP2833x_Device.h:

    #ifndef DSP28_DATA_TYPES
    #define DSP28_DATA_TYPES
    typedef int                int16;
    typedef long               int32;
    typedef long long          int64;
    typedef unsigned int       Uint16;
    typedef unsigned long      Uint32;
    typedef unsigned long long Uint64;
    typedef float              float32;
    typedef long double        float64;
    #endif

    You need to choose one.

    I'd undo the "-DDSP28_DATA_TYPES" and in your C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/Library/utilities.c you can add "#undef Uint16" before you #include "DSP2833x_Device.h", or just don't #include "DSP2833x_Device.h" it at all if you can.

  • The #undef command has no effect on the Uint16 assignment, regardless of where I put it.  I've tried immediately before the _Device.h include, and also in the _Device.h header file, at the top and the line above where it is being redifened; all of these resulted in the same error still being produced. 

    I copied the std.h file to a different location and modified the two typedefs in there and that error did not come up again.  I did, however get several memory related errors. many programs either wwill not fit or do not have a valid placement.  This led me to look into the platform info again.  For some reason, I am not able to modify my created platform in the wizard. 

    Once I open the umodified platform in the edit view, I am given the optin to change the CPU freq and where the memory sections are. With the one I created, there is an error that the data memory needs a section.

    Once I select a section and finish, I go to the project properties and try to select the platform again, however it no longer populates on the available platforms list.

    I tried creating my own platform from scratch and placed it on the desktop. It creates just fine, and leaves the files on the desktop;

    But again, when tying to select it as the platform in the project properties, it does not show up.

     

  • Justin,
    it seems you got through the compilation without errors, and now you get a linker error. Please post the console output with errors in your post, whenever there is an error.

    As for the platform problems, what is the platform that do not have defined a memory segment for data? Is that also your platform?

    When you created your platform on the desktop, did you get a message saying that the platform was built successfully?

  • My apologies, here is the output I am getting now.

    4035.console error.txt

    When I converted the project, I got a package called "Newerest" which was placed in the folder I converted the tcf file in.  If I do nothing in the wizard with this platform, I am able to select it in the project properties.  That is what I am doing when the above console output is given.

    If I open the Platform Wizard and navigate to that package, the second page shows the CPU freq of 300 MHz and no segment is defined for data.  If I change anything on this page, such as change the freq to 150, or associate any of the memory sections to data, it confirms that it builds. 

    Then I go back to the project properties and ensure the repo is still added in the include paths, and click the dropdown to select the platform, exactly as I did before, and it is no longer on the list.

    Going a step further, I created a new platform in the wizard and called it "MyBoard". I create all the memory sections found in "Newerest" and click finish. I get a confirmation that it was built correctly, the package repo is where I told it to go (on the desktop for now) and again go back to the project properties.  I ensure the desktop location is included in the search path and click the dropdown box and "MyBoard" is not on the list.

  • Let's leave platform issue aside for a moment. The first cause of your linking errors is that the config C file generated by XDCtools is not compiled at all. You still have -ppo and -ppl options in Project Properties->CCS Build->XDCtools->Advanced Options->Additional compiler options. Remove -ppo and -ppl and clean and rebuild. Please post the output.

    After you rebuilt Newerest correctly, try just typing "Newerest" in the platform field, and use it for the build. There is a bug in the code that selects the platforms for that drop-down list, but if you type in the platform, XDCtools should be able to find it.
    BTW, the bug is fixed in XDCtools 3.25, but let's not change XDCtools right now, until there is a successful build.

  • That resolved some f the previous errors, however now I'm back to UInt16 and etc. only this time, it is in the cfg file.

    5025.Console.txt

     

    Also, I tried just typing the name into the field, after deselecting the path the working one is located, and only selecting the desktop, where the 'broken' one is located, and it was not able to locate it.


    **** Build of configuration Debug for project Semikronn2 ****

    "C:\\ti\\CCS5.4\\ccsv5\\utils\\bin\\gmake" -k all
    'Building file: C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg'
    'Invoking: XDCtools'
    "C:/ti/xdctools_3_24_07_73/xs" --xdcpath="C:/ti/bios_6_34_04_22/packages;C:/ti/CCS5.4/uia_1_03_01_08/packages;C:/Users/Admin/Desktop;" xdc.tools.configuro -o configPkg -t ti.targets.C28_float -p Newerest -r debug -c "C:/ti/CCS5.4/ccsv5/tools/compiler/c2000_6.1.3" --compileOptions "-g --optimize_with_debug" -v "C:/Users/Admin/Desktop/Semikron99/Semikron_DCDC_v05/MyConfigPlease.cfg"
    js: "C:/ti/xdctools_3_24_07_73/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: InternalError: Newerest: can't resolve name xdc.platform.IPlatform.peripherals
    gmake: Target `all' not remade because of errors.

    **** Build Finished ****

  • I don't know which version of xdc/std.h you are using now, and what's in it. But normally the type UInt32, which is undefined when compiling the config C file, is defined in xdc/std.h. Search for UInt32 in xdc/std.h and ensure that it's defined there, and that the definition is not guarded by some other macro that you defined.

    When using the platform "Newerest", which is the platform that I think you should be using, you have to add to the xdc path the directory that you initially used, something with 'Semikron' on the path. The directory C:/Users/Admin/Desktop shouldn't be on the path because that's where you defined the platform myBoard, and you are not using that platform currently.

  • I should say this: When I created the package in the original repo, I copied the contents of the package to the desktop.  I ensured that they both worked the same as they did when I converted it, then I made changes to the one on the desktop.   If I made changes to the other one, I would not have been able to use it anymore.

    Commenting out the to defines in std.h was the only way I've found that stops the "UInt16 has already been declared" error in the .c files.

    When I uncomment out those lines, I am left with my previous problem, and using #undef has no effect.

    2158.Console.txt

  • I have made some progress:

    I reconverted my project from scratch again, and modified the package that was creeated to have a data memory section. I #defined xdc__strict, and instantiated a macro that defines Arg and Uns and got the project to compile. 

    Now I am faced with a linker issue. it claims ebss:taskStackSection is 0x1903 in size, but there is only 0x300 of memory available in MSARAM.  I am a little confised on where I could fit this if that is really it's size.

    5822.Console - linker error.txt

  • Here is the .map file from the DSP version of the code.  I am unsure if this will assist in resolving my issue.

    1184.Semikron_DCDC_v05.txt

  • Justin,
    one option is to use unused space in L03SARAM for data. You would have to go back to the Platfom Wizard and edit your platform, so that you have L01SARAM for code that would start at 0x8000 and have the size 0x2000. Then, you would have L27SARAM, which would start at 0xa000, and have the size 0x6000.

    Then, in your CFG script, you would have to replace all references to L03SARAM with L01SARAM, and all references to L47SARAM with L27SARAM. Finally, you would add this to your script:
    Program.sectMap[".ebss:.taskStackSection"] = new Program.SectionSpec();
    Program.sectMap[".ebss:.taskStackSection"] .loadSegment = "L27SARAM";

    There are probably other options that you can figure out from your map file. If you see some other place where you would like to keep the stack for static tasks, let me know and I'll be able to tell you how to accomplish that through the CFG script and the platform files.

  • That did the trick for that error.  I fixed another error relating to ".ti_catalog_c2800_init_begin" in the same manner, and have reduced my errors to a series of undefined symbols.

    1667.Console - Symbols.txt

     

  • Please verify that you are including sem.h and swi.h in the sources that invoke SEM and SWI functions. The missing symbols are inlined functions that the compiler should resolve. Also, you have many warnings about undefined functions. You should try and figure out why, and clear up these warnings.

    For other missing symbols I'll need to look further, I am not sure under which conditions we generate them.

  • At what point should this program transition from the SYS/BIOS 6 Legacy Modules to the Recommended SYS/BIOS 6 Modules?  In document SPRAAS7G, Migrating a DSP/BIOS 5 Application to SYS/BIOS 6, Section 4 details Module Mappings from DSP/BIOS 5 to SYS/BIOS 6.

    Should the Include Options path be ti/bios or ti/sysbios or both?  This relates to your recent post concerning #include <swi.h> and #include <sem.h>.  The DSP/BIOS 5 Legacy Modules are in SWI and SEM, respectively, while the SYS/BIOS 6 Legacy Modules are in ti.bios.SWI and ti.bios.SEM, respectively, and finally the Recommended SYS/BIOS 6 Modules are in ti.sysbios.knl.Swi and ti.sysbios.knl.Semaphore, respectively.  If the goal is to ensure that the code is fully compatable with SYS/BIOS, should the extra effort be put into rewriting the c-code to ensure it only calls out the Recommended SYS/BIOS 6 Modules and their appropriate calls (such as SEM_post vs Semaphore_post)?