Can't deploy code to Ti C2000
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mehmet Tugberk Turkoglu
el 3 de Feb. de 2025
Editada: Mehmet Tugberk Turkoglu
el 29 de Abr. de 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 comentarios
Respuesta aceptada
Vinay
el 1 de Abr. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Texas Instruments C2000 F28M3x Concerto Processors en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!