Can't deploy code to Ti C2000
조회 수: 3 (최근 30일)
이전 댓글 표시
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
채택된 답변
Vinay
2025년 4월 1일
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
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!