?? post.tcf
字號:
/*
* ======== post.tcf ========
*
*! Revision History
*! ================
*! 03-Jul-2002 mw Created.
*
* To create post.cdb, run Dosrun.bat in your Code Composer install directory
* then go to the example directory and type the following at the command line:
* tconf -Dconfig.importPath="%TI_DIR%\c5500\dsk5510\include"
* -Dconfig.tiRoot="%TI_DIR%" post.tcf
*
*/
/* Load 5510 DSK platform */
utils.loadPlatform("Dsk5510");
/* Get program objects */
utils.getProgObjs(prog);
/* Enable all heaps, RTDX, Real Time Analysis, and the Task Mangager */
bios.enableFullBios(prog);
/* Set memory model to large mode */
GBL.MEMORYMODEL = "LARGE";
/* Disable Task Manager */
TSK.ENABLETSK = 0;
/* Import AIC23 module definitions */
utils.importFile("dsk5510_aic23.tci");
/* Import POST specific module definitions */
utils.importFile("post.tci");
/* Disable RTDX, no host when POST is running */
GBL.ENABLEINST = false;
GBL.ENABLEALLTRC = false;
/* Insert timer ISR */
HWI_INT22.fxn = prog.extern("sleepIsr");
HWI_INT22.useDispatcher = 1;
/* Generate .cdb file */
prog.gen("post");
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -