Can't deploy code to Ti C2000
3 views (last 30 days)
Show older comments
Mehmet Tugberk Turkoglu
on 3 Feb 2025
Edited: Mehmet Tugberk Turkoglu
on 29 Apr 2025
Matlab can generate code to hardware. However, it can not deploy code to control board. So I can not debug the code by Matlab/Simulink. How can I fix?
0 Comments
Accepted Answer
Vinay
on 1 Apr 2025
I understand that you are facing issue in deploying the code to the c2000 board.
The warning message "Unable to remove spaces from file path" indicates that spaces in the path (such as in "Program Files") might be causing the build process to fail.
To address this issue, consider the following workaround:
1.If you're using the toolchain approach to build generated code, check if 8dot3 name creation is enabled for the volume "D".
To do this, run the Windows Command Prompt as an administrator and enter the following command
codefsutil 8dot3name query
If the command returns 0, 8dot3 name creation is enabled.
2. If it returns a non-zero value, you can enable it by running this command:
codefsutil 8dot3name set D: 0
3.Specify a short name for the file path by running the following command
fsutil file setshortname <longname> <8.3name>
% Example to provide short name for path "C:\Program Files" as PR0G
fsutil file setshortname "C:\Program Files" PROG
For more information on the above mentioned commands, refer to the following documentation:
I hope this helps!
0 Comments
More Answers (0)
See Also
Categories
Find more on Texas Instruments C2000 F28M3x Concerto Processors in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!