This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS3.3 GEL文件的作用



正在使用CCS3.3 对C6747进行开发,使用仿真器进行程序在线下载仿真时,在connect操作时调用了GEL文件“evmc6747_dsp.gel”。

里面主要是以下几个功能函数:

Setup_Data_Cache(); // Setup L1D to 32 KB cache

Setup_System_Config( ); // Setup Pin Mux and other system module registers

Setup_PLL(); // Setup PLL0 (300MHz DSP, 133MHz EMIFs)

Setup_Psc_All_On( ); // Setup All Power Domains

Setup_EMIFA(); // Async EMIF

Setup_EMIFB(); // Setup SDRAM

如果后续将上述GEL文件内的初始化操作全部用C语言实现,并且在main函数内调用,使用仿真器进行程序下载与调试仿真时是否就可以不再使用GEL文件对芯片进行初始化操作了?