📄 appboard.tci
字号:
/*
* Copyright 2003 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.
*
*/
/* "@(#) ReferenceFrameworks 2.10.00.11 04-30-03 (swat-d15)" */
/*
* ======== appBoard.tci ========
*
* Platform-specific portion of the configuration database script
*/
/*
* Define hardware specific parameters that may be needed for various
* calculations
*/
APPSAMPLESIZE = 2; /* sample size in 8-bit bytes (octets) */
APPRTDXAVAILABLE = false; /* Define/set RTDX application variable */
APPUSEDEVICEPARAMS = true; /* Define/set variable to over-ride default
* IOM driver parameters */
/*
* Link in the DSP/BIOS instrumented kernel
*/
bios.enableRealTimeAnalysis(prog);
/*
* Link in RTDX only if board supports it.
*/
if(APPRTDXAVAILABLE) {
bios.enableRtdx(prog);
}
/*
* Import the board specific MEM creation, setup and placement
*/
utils.importFile(platformName + "_mem.tci");
/*
* Import the board specific IOM driver configuration
*/
utils.importFile(platformName + "_udevCodec.tci");
/*
* Override the default params values for IOM UdevCodec
*/
if (APPUSEDEVICEPARAMS) {
udevCodec.params = prog.extern(platformName.toUpperCase() + "_DEVPARAMS");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -