CCS 5.1 integration: when and how

조회 수: 53 (최근 30일)
Martin Dendaluce
Martin Dendaluce 2012년 1월 6일
댓글: sana mouslim 2021년 11월 25일
Hello,
Since it was announced that Mathworks wouldn’t provide the same integration functionalities for TI’s Code Composer Studio v4 as it does for CCSv3.3 and it would skip to the next version, I’ve been waiting for CCSv5 to finally appear, which took longer than expected.
Now that this is out for a while, I couldn’t find any references to when this will be implemented and in which version it will occur. Does anyone have any clue about this? I’d really prefer not having to downgrade to the outdated V3.3, but a part of my project has been in standby for too long already.
Thanks!
Martin

채택된 답변

Antonin
Antonin 2012년 1월 12일
Martin,
You can use CCS v5.1 today with Matlab via the xmakeilesetup infrastructure provided for CCSv4.
To do so, follow these instructions:
  • Type xmakefilesetup at the Matlab command prompt. A GUI opens.
  • Keep the "Template" as "gmake", uncheck "Display operational conifgurations only", then select "ti_c000_ccsv4" for the Configuration.
  • Click Apply on the XMakefile GUI, if you haven't used this tool before, a GUI will ask to browse to you CCS v4 installation folder. Use this tool to point to your CCS v5.1 installation folder (i.e.: C:\TI\ccsv5).
  • If you have previously used this tool with CCSv4 a "Tool Directories" tab should be present below, select that tab and copy your CCS v5.1 installation paths in the edit boxes, i.e:
  1. CCS Installation: C:\TI\ccsv5
  2. Code geeneration Tools: C:\TI\ccsv5\tools\compiler\c2000
  3. Code geeneration Tools: C:\TI\bios_6_32_05_54
  • Click "Apply" on the GUI (don't close it).
  • Click on the "New" button next to "Configurations", the tool will offer to chose a name like "ticcs_c2000_ccsv4_clone", let's rename it "ticcs_c2000_ccsv5_based_on_v4", click "OK".
  • All tabs are now editable, you have to update "Compiler", "Linker" and "Archiver". Make sure that the paths are pointing to your CCS v5.1 installation folders, i.e.:
  1. Under Compiler, the compiler section should poiint to something like : C:\TI\ccsv5\tools\compiler\c2000\bin\cl2000
  2. Under Compiler, the arguments section should poiint to something like : -I"C:\TI\ccsv5\tools\compiler\C2000\include" -fr"[|||MW_XMK_DERIVED_PATH_REF|||]"
  3. Under Linker, the Linker section should poiint to something like : C:\TI\ccsv5\tools\compiler\C2000\bin\cl2000
  4. Under Archiver, the Archiver section should poiint to something like : C:\TI\ccsv5\tools\compiler\C2000\bin\ar2000
  • Click "OK" on the GUI to save your changes and close it.
You can now use the models you have created for CCSv3.3.
  • On your model or on a c2000 demo, double click on the "Target Preferences" block.
  • On the "IDE/Tool Chain" drop down, select "Texas Instruments Code Composer Studio v4 (makefile generation only)". Make sure that you save your target settings first as this will erase the existing configuration.
  • Select the apropiate board and processor. Restore your settings.
You are now ready to generate code using CCS v5.1. This approach will use a makefile based approach to compile and link the code using the CCS v5.1 command like tools. Once these steps are completed you can grab the generated *.out file in the code generation folder and download it on the target using CCS v5.1.
Even though this workaround is based on the CCS v4 support, you don't need to have it installed on your machine. This has been succesfully tested with Matlab R2011b and the pre-release of Matlab R2012a. It should also work with earlier versions of the xmakefilesetup tool.
I hope it helps,
Good luck,
Antonin.
  댓글 수: 9
satwant singh
satwant singh 2017년 1월 17일
Sir i have to use same procedure for CCSv6?
sana mouslim
sana mouslim 2021년 11월 25일
is that can work please with matlab 2017b with the same version of code composer v5.?

댓글을 달려면 로그인하십시오.

추가 답변 (9개)

Martin Dendaluce
Martin Dendaluce 2012년 1월 14일
Thanks a lot for you complete and precise answer! I had planned to try such an aproach after making work v4 first, but with your steps I managed to directly configure it for v5. It seems to generate code succesfully, so I assume this part of the configuration is fine now, although I still didn't manage (neither had the chance to spend enough time with it) to make the CCS part work and execute the code on target, but that's another issue.
Anyway: sadly this is only a part of the integration possible with v3.3 where full debug integration is provided. Any clue if we will be able to enjoy this in v2012a??

Recep
Recep 2012년 6월 22일
I applied these steps and configured matlab for ccs v5, that explanation was very brief and thanks for it but unfortunately I couldn't make it work, when I try a command like ticcs, checkenvsetup or ccsboardinfo, I'm getting following error message, do you have a suggestion for it?
??? Cannot start CCS application (COM error code: 0x80040154). Verify that your CCS software is installed and configured properly.
  댓글 수: 1
Antonin
Antonin 2012년 7월 16일
The commands ticcs, ccsboardinfo will only work with ccs V3.3 You can run checkenvsetup but make sure you mention ccsv4.
i.e. checkEnvSetup('ccsv4','f28335','check')

댓글을 달려면 로그인하십시오.


Srikanth
Srikanth 2012년 11월 17일
This is a very good workaround! However, though the compilation happens flawlessly, the makefile does not get built due to a fatal error whcih reads:
[MW_c6xxx_bsl.c] ".\MW_c6xxx_csl.h", line 3: fatal error: could not open source file "csl_edma.h"
I tried to dig through the literature and found that this error appears because of the unavailability of CSL (Chipset Libraries) which were discontinued in ccsv4 and v5. I hence downloaded the CSL library files from TI website and pointed the CSL Library section in xmakefilesetup utility (Step-3 in the above) to the appropriate directory. This doesnt solve the problem. Apparently one needs to add the appropriate CSL Library (in my case c6713.lib) during the link stage of the Build process. I dont know at which stage does MATLAB link the CSL library and the way in which I can direct it to do the same. I'm pretty sure that I need to work around with some settings in Xmakefile GUI but I don't know which ones. Pls. take note of the problem and let me know the solution if possible. Very Urgent!
PS:I am using MATLAB r2012a and CCSv5.2.1
  댓글 수: 3
Srikanth
Srikanth 2012년 12월 8일
Thanks Antonion. I figured it out and this error seems to be evaded now. However, I am facing a new issue now. The build process goes just fine until the makefile is created. When, MATLAB starts building the makefile, it stops with a weird error-
".\MW_c6xxx_csl.h", line 22: fatal error: could not open source file "untitledcfg.h"
I tried everything I could, right from installing older versions of Code Generation tools, DSP/BIOS from TI supported by MATLAB to setting appropriate environmental variables. Yet, I get the same error at the same stage. There is a similar post related to CCSv3.3 in
but I dont seem to comprehend the solution posted there. I highly appreciate your help with this issue.
Regards,
Srikanth.

댓글을 달려면 로그인하십시오.


Gurudev
Gurudev 2012년 12월 10일
I had a hard time getting Matlab and Simulink to work with CCS and to understand the difference in support between v3.3 and v4/v5. There is one good video that helped me start. I found it a bit long but it has all the steps needed, from installation to generating code for a simple Simulink model: It works for CCSv3.3 which is older but has automatic download and run from Matlab
The same video exists for CCSv4/5: http://youtu.be/7ed1NLD817s
Just adding my 2 cents to the story, I hope it helps.
  댓글 수: 2
Srikanth
Srikanth 2012년 12월 12일
I guess this video is by Antonion (provider of this answer) himself!
Antonin
Antonin 2013년 1월 15일
New and better quality links to these videos:

댓글을 달려면 로그인하십시오.


Martin Dendaluce
Martin Dendaluce 2013년 2월 16일
Sadly I just saw most of the answers and the videos, which seem quite interesting... thanks!
Luckily I got to work the .out loading some time ago and it seems to be a good solution.
Still, I'll have a llok at your videos, I'm sure I'll learn something with them :-)
Regards!
Martin

Tausif
Tausif 2013년 3월 27일
Hey am running through with the same problem. I can generate the .out file and load and run it in CCSV5 but I want now loop it back to another input pin and observe it in simulink scope. Run it in like PIL. How do I do this?
  댓글 수: 1
ashish ahir
ashish ahir 2015년 8월 12일
same problem. please someone answer this.

댓글을 달려면 로그인하십시오.


Gaurav Pipersaniya
Gaurav Pipersaniya 2013년 5월 17일
hey i am using matlab 2012 so which ccs version should i download for code generation from simulink which making any changes.plz help

Kalpesh
Kalpesh 2013년 10월 18일
편집: Walter Roberson 2015년 5월 8일
  • _ Please help us about this error. I am generating code for OMAPL138 using Simulink8.1 for CCSV5 using this method. _ *
The call to idelink_ert_make_rtw_hook, during the exit hook generated the following error:
Error while building the project.
The build process will terminate as a result.
Caused by:
Error while building the project.
The build failed with the following message: "C:/ti/ccsv5/tools/compiler/c6000_7.4.2/bin/cl6x" -I"C:/Program Files/MATLAB/R2013a/toolbox/idelink/extensions/ticcs/inc" -I"C:/Users/user8/Documents/MATLAB/untitled_ticcs" -I"C:/Users/user8/Documents/MATLAB" -I"C:/Program Files/MATLAB/R2013a/extern/include" -I"C:/Program Files/MATLAB/R2013a/simulink/include" -I"C:/Program Files/MATLAB/R2013a/rtw/c/src" -I"C:/Program Files/MATLAB/R2013a/rtw/c/src/ext_mode/common" -I"C:/Program Files/MATLAB/R2013a/rtw/c/ert" -D"CHIP_OMAPL138" -D"__TICCSC__" -D"RT" -D"USE_RTMODEL" -mv6400+ -D"MODEL=untitled" -D"NUMST=1" -D"NCSTATES=0" -D"HAVESTDIO=" -D"ONESTEPFCN=1" -D"TERMFCN=1" -D"MAT_FILE=0" -D"MULTI_INSTANCE_CODE=0" -D"INTEGER_CODE=0" -D"MT=0" -D"CLASSIC_INTERFACE=0" -D"TID01EQ=0" -I"C:/ti/ccsv5/tools/compiler/c6000_7.4.2/include" -I"C:/ti/bios_6_35_01_29/include" -fr"./derived/" ./MW_c6xxx_csl.c ./untitled.c ./untitled_data.c ./untitled_main.c
[MW_c6xxx_csl.c]
".\MW_c6xxx_csl.h", line 20: fatal error: could not open source file "untitledcfg.h"
1 fatal error detected in the compilation of "./MW_c6xxx_csl.c".
Compilation terminated.
>> Compilation failure
gmake: *** [derived/MW_c6xxx_csl.obj] Error 1

Shishir Patel
Shishir Patel 2015년 5월 7일
편집: Walter Roberson 2015년 5월 8일
Has anyone figured out this error for C2000 support package of TI F28335. I have tried re-installing everything but its persistent. All the environment configuration is also verified but it shows same error when i build the model. Whatever changes I made to the configuration pane or directory folders, it results to the same error.
### Starting build procedure for model: untitled
Code Generation
Elapsed: 6 sec
### Generating code into build folder: C:\Users\Lenoveo\Documents\MATLAB\untitled_ert_rtw
### Invoking Target Language Compiler on untitled.rtw
### Using System Target File: C:\Program Files\MATLAB\R2014a\rtw\c\ert\ert.tlc
### Loading TLC function libraries
Warning: The data type "int8" uses a word size that is not available on the intended target.
Fixed-point signals using this data type will be put inside a larger word or multi words. When used,
extra software will be generated to force this larger word or multi words to emulate a smaller
word. This emulation is helpful when your prototype target and your final
production target are not the same. If the smaller word size does NOT exist
on the final production target, then consider increasing the word size to
one that is supported.
Warning: The data type "uint8" uses a word size that is not available on the intended target.
Warning: The data type "boolean" uses a word size that is not available on the intended target.
### Initial pass through model to cache user defined code
### Caching model source code
### Writing header file untitled.h
### Writing header file untitled_types.h
### Writing header file rtwtypes.h
### Writing source file untitled.c
### Writing header file untitled_private.h
### Writing source file untitled_data.c
### Writing source file ert_main.c
### TLC code generation complete.
### Evaluating PostCodeGenCommand specified in the model
### Using toolchain: Texas Instruments C2000 Code Generation Tools v5.2.12 | gmake (64-bit Windows)
### 'C:\Users\Lenoveo\Documents\MATLAB\untitled_ert_rtw\untitled.mk' is up to date
### Building 'untitled': C:\PROGRA~1\MATLAB\R2014a\bin\win64\gmake -B -f untitled.mk all
C:\Users\Lenoveo\Documents\MATLAB\untitled_ert_rtw>cd .
C:\Users\Lenoveo\Documents\MATLAB\untitled_ert_rtw>if "" == "" (C:\PROGRA~1\MATLAB\R2014a\bin\win64\gmake -B -f untitled.mk all ) else (C:\PROGRA~1\MATLAB\R2014a\bin\win64\gmake -B -f untitled.mk )
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="MW_c28xx_board.obj" "MW_c28xx_board.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="MW_c28xx_csl.obj" "MW_c28xx_csl.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="untitled.obj" "untitled.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="untitled_data.obj" "untitled_data.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="c2833xBoard_Realtime_Support.obj" "c2833xBoard_Realtime_Support.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_MemCopy.obj" "DSP2833x_MemCopy.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_CpuTimers.obj" "DSP2833x_CpuTimers.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_DefaultIsr.obj" "DSP2833x_DefaultIsr.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_GlobalVariableDefs.obj" "DSP2833x_GlobalVariableDefs.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_PieCtrl.obj" "DSP2833x_PieCtrl.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_PieVect.obj" "DSP2833x_PieVect.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_SysCtrl.obj" "DSP2833x_SysCtrl.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 -s -v28 -ml --float_support=fpu32 "DSP2833x_usDelay.asm"
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 -s -v28 -ml --float_support=fpu32 "DSP2833x_CodeStartBranch.asm"
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 -s -v28 -ml --float_support=fpu32 "DSP2833x_ADC_cal.asm"
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="DSP2833x_DMA.obj" "DSP2833x_DMA.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="c2833xSchedulerTimer0.obj" "c2833xSchedulerTimer0.c"
>> ERROR: no source files, nothing to do
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 --compile_only --large_memory_model --cla_support=cla0 --silicon_version=28 --define="LARGE_MODEL" -i"/~SupportFiles/DSP280x_headers" -i"/~SupportFiles/DSP280x_headers/include" -i"C:/ti/ccsv5/tools/compiler/C2000_~1.0/include" -v28 --float_support=fpu32 -ml -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DRT -DSTACK_SIZE=64 -DONESTEPFCN=1 -DTERMFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTID01EQ=0 -DMODEL=untitled -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -IC:/Users/Lenoveo/Documents/MATLAB/untitled_ert_rtw -IC:/Users/Lenoveo/Documents/MATLAB -IC:/PROGRA~1/MATLAB/R2014a/extern/include -IC:/PROGRA~1/MATLAB/R2014a/simulink/include -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/src/ext_mode/common -IC:/PROGRA~1/MATLAB/R2014a/rtw/c/ert -IC:/MATLAB/SupportPackages/R2014a/tic2000/inc -IC:/PROGRA~1/MATLAB/R2014a/toolbox/shared/can/src/scanutil -IC:/MATLAB/SupportPackages/R2014a/tic2000/src -IC:/PROGRA~1/MATLAB/R2014a/toolbox/target/extensions/processor/tic2000/include -IC:/PROGRA~1/MATLAB/R2014a/toolbox/rtw/targets/common/can/blocks/tlc_c --output_file="ert_main.obj" "ert_main.c"
>> ERROR: no source files, nothing to do
### Creating standalone executable ../untitled.out ...
C:/ti/ccsv5/tools/compiler/C2000_~1.0/bin/cl2000 -z -IC:/ti/ccsv5/tools/compiler/C2000_~1.0/lib --stack_size=64 --warn_sections --reread_libs --rom_model -m"untitled.map" -l"rts2800_fpu32.lib" --define PWM_DMAACCESS=0 --define BOOT_FROM_FLASH=1 --output_file=../untitled.out MW_c28xx_board.obj MW_c28xx_csl.obj untitled.obj untitled_data.obj c2833xBoard_Realtime_Support.obj DSP2833x_MemCopy.obj DSP2833x_CpuTimers.obj DSP2833x_DefaultIsr.obj DSP2833x_GlobalVariableDefs.obj DSP2833x_PieCtrl.obj DSP2833x_PieVect.obj DSP2833x_SysCtrl.obj DSP2833x_usDelay.obj DSP2833x_CodeStartBranch.obj DSP2833x_ADC_cal.obj DSP2833x_DMA.obj c2833xSchedulerTimer0.obj ert_main.obj C:/MATLAB/SupportPackages/R2014a/tic2000/src/c28335.cmd C:/MATLAB/SupportPackages/R2014a/tic2000/rtlib/IQmath_fpu32.lib C:/PROGRA~1/MATLAB/R2014a/toolbox/idelink/extensions/ticcs/c2000/c2833xPeripherals.cmd
<Linking>
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 9: error: cannot find file
"PWM_DMAACCESS=0"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 12: error: cannot find file
"MW_c28xx_board.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 13: error: cannot find file
"MW_c28xx_csl.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 14: error: cannot find file
"untitled.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 15: error: cannot find file
"untitled_data.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 16: error: cannot find file
"c2833xBoard_Realtime_Support.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 17: error: cannot find file
"DSP2833x_MemCopy.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 18: error: cannot find file
"DSP2833x_CpuTimers.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 19: error: cannot find file
"DSP2833x_DefaultIsr.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 20: error: cannot find file
"DSP2833x_GlobalVariableDefs.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 21: error: cannot find file
"DSP2833x_PieCtrl.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 22: error: cannot find file
"DSP2833x_PieVect.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 23: error: cannot find file
"DSP2833x_SysCtrl.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 27: error: cannot find file
"DSP2833x_DMA.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 28: error: cannot find file
"c2833xSchedulerTimer0.obj"
"C:/Users/Lenoveo/AppData/Local/Temp\\064883", line 29: error: cannot find file
"ert_main.obj"
undefined first referenced
symbol in file
--------- ----------------
_main C:\ti\ccsv5\tools\compiler\C2000_~1.0\lib\rts2800_fpu32.lib<args_main.obj>
*error: unresolved symbols remain
error: errors encountered during linking; "../untitled.out" not built*
>> Compilation failure
gmake: *** [../untitled.out] Error 1
C:\Users\Lenoveo\Documents\MATLAB\untitled_ert_rtw>echo The make command returned an error of 2
The make command returned an error of 2
C:\Users\Lenoveo\Documents\MATLAB\untitled_ert_rtw>An_error_occurred_during_the_call_to_make
'An_error_occurred_during_the_call_to_make' is not recognized as an internal or external command,
operable program or batch file.
Error(s) encountered while building model "untitled":
*### Failed to generate all binary outputs.*
Component: Simulink | Category: Model error
I have even checked with the different versions of CCS and MATLAB but its still there.
  댓글 수: 5
Shishir Patel
Shishir Patel 2015년 5월 10일
I believe this is the correct one that you are looking for. Though, its name is different than untitled.mk. I appreciate for your time.
Yuriy
Yuriy 2015년 8월 12일
The same problem in MATLAB R2015A. At the same time all works properly in MATLAB R2014A.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Execution Speed에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by