?? noncopytcptester.tci
字號:
/*
* ============================================================
* (c) Copyright 2007 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
* granted through contract.
* ============================================================
* Automated Revision Information
* Changed: $Date: 2007-10-15 15:13:14 -0700 (Mon, 15 Oct 2007) $
* Revision: $Revision: 4244 $
*/
/*
* ======== nonCopyTCPTester.tci ========
*
* Non-copy TCP tester common configuration script
*/
utils.importFile('ndk.tci');
/* The following DSP/BIOS Features are enabled. */
bios.enableMemoryHeaps(prog);
bios.enableRealTimeAnalysis(prog);
bios.enableRtdx(prog);
bios.enableTskManager(prog);
bios.tskNdkStackTest = bios.TSK.create("tskNdkStackTest");
bios.tskNdkStackTest.fxn = prog.extern("StackTest");
bios.tskNdkStackTest.stackSize = 0x1000;
bios.tskNdkStackTest.priority = 0x5;
// LOG object to display CPU load & other key data
var logTrace = bios.LOG.create( "logTrace" );
logTrace.comment = "default LOG object for application messages";
logTrace.logType = "circular";
logTrace.bufLen = 1024;
// Check that stack size is big enough for the application
if (bios.MEM.STACKSIZE < 0x1000) {
bios.MEM.STACKSIZE += 0x1000;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -