Part Number: TMS320F280049
Tool/software: Code Composer Studio
Hi all:
One of my customer met with some problems in using CLB module.
He found that when debugging the CLB function of 280049, you need to configure the command line of build - > steps - > post build steps as show below:
mkdir "${BuildDirectory}\simulation"
${CLB_SIM_COMPILER}\g++ -c -DCLB_SIM -I${SYSTEMC_INSTALL}\src -I${C2000WARE_ROOT}\utilities\clb_tool\clb_syscfg\systemc\include -I${PROJECT_ROOT} -I${CLB_SIM_COMPILER}\include -Og -g -gdwarf-3 -gstrict-dwarf -Wall -MMD -MP -MF${BuildDirectory}\simulation\clb_sim.d -MT${BuildDirectory}\simulation\clb_sim.o -I${BuildDirectory}\syscfg -fno-threadsafe-statics -o${BuildDirectory}\simulation\clb_sim.o ${BuildDirectory}\syscfg\clb_sim.cpp
${CLB_SIM_COMPILER}\g++ -DCLB_SIM -Og -g -gdwarf-3 -gstrict-dwarf -Wall -Wl,-Map,${BuildDirectory}\simulation\simulation_output.map -L${SYSTEMC_INSTALL}\build\src -o${BuildDirectory}\simulation\simulation_output.exe ${BuildDirectory}\simulation\clb_sim.o ${C2000WARE_ROOT}\utilities\clb_tool\clb_syscfg\systemc\src\CLB_FSM_SC_model.o ${C2000WARE_ROOT}\utilities\clb_tool\clb_syscfg\systemc\src\CLB_HLC_SC_model.o ${C2000WARE_ROOT}\utilities\clb_tool\clb_syscfg\systemc\src\CLB_LUT4_SC_model.o ${C2000WARE_ROOT}\utilities\clb_tool\clb_syscfg\systemc\src\CLB_OutputLUT_SC_model.o ${C2000WARE_ROOT}\utilities\clb_tool\clb_syscfg\systemc\src\CLB_counter_SC_model.o -Wl,--start-group -lsystemc -Wl,--end-group
.\simulation\simulation_output.exe
${NODE_TOOL} "${CLB_SYSCFG_ROOT}/dot_file_libraries/clbDotUtility.js" "${CLB_SYSCFG_ROOT}" "${BuildDirectory}/syscfg" "${BuildDirectory}/syscfg/clb.dot"
He would like to know if there are any materials or tutorials on the syntax of these command lines.He wants to change the path of CLB tool.
Regards