Can't deploy code to Ti C2000
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mehmet Tugberk Turkoglu
le 3 Fév 2025
Modifié(e) : Mehmet Tugberk Turkoglu
le 29 Avr 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 commentaires
Réponse acceptée
Vinay
le 1 Avr 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Texas Instruments C2000 F28M3x Concerto Processors dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!