Tool/software: Code Composer Studio
Hi all,
I try to initiate and load all the TDA3 cores via the scripting console in CCS 7.0.0.00042. (I use the XDS560v2 STM). When I start loading the targets by calling loadTargets_IPU_0(), the script stops with an error:
...
Cortex_M4_IPU1_C0: GEL Output: --->>> TDA3xx End All Pad Configuration for RGMII usage on EVM Platform <<<---
Cortex_M4_IPU1_C0: GEL Output: --->>> TDA3xx End All Pad Configuration for Vision Platform <<<---
Cortex_M4_IPU1_C0: GEL Output: --->>> TDA3xx Target Connect Sequence DONE !!!!! <<<---
Cortex_M4_IPU1_C0: GEL Output: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Cortex_M4_IPU1_C0: GEL Output: For STM based tracing on TI EVMs,
Cortex_M4_IPU1_C0: GEL Output: run 'TDA3x EVM I2C EXPANDER CONTROL -> Enable_Trace_Pins()' function from Scripts menu on M4/CS_DAP_DebugSS
Cortex_M4_IPU1_C0: GEL Output: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Cortex_M4_IPU1_C0: GEL: Unable to open file: D:\ti\ccsv7\eclipse\C:\SDK\bin\tda3xx-evm\vision_sdk_ipu1_0_debug.xem4
The abstract of the script:
importPackage(Packages.com.ti.debug.engine.scripting) importPackage(Packages.com.ti.ccstudio.scripting.environment) importPackage(Packages.java.lang) importPackage(java.io); importPackage(java.lang); ...
function updateScriptVars() { baseDir = "C:\\SDK\\bin\\tda3xx-evm\\"; IPU_0_en = 1; IPU_0_exe = "vision_sdk_ipu1_0_debug.xem4" dsIPU_0 = debugServer.openSession( ".*Cortex_M4_IPU1_C0" ); } function loadTargets_IPU_0() { updateScriptVars(); dsIPU_0.target.connect(); if(IPU_0_en) dsIPU_0.memory.loadProgram( baseDir + IPU_0_exe ); }
It's no big deal but I don't know where the script assembles the path variable and adds the eclipse default path at the beginning of the baseDir variable.
I hope you have enough information to give me a hint!
Thanks in advance!
Best regards,
Sebastian
