📄 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.20.00.08 07-18-03 (swat-f02)" */
/*
* ======== appBoard.tci ========
*
* Platform-specific portion of the configuration database script
*/
APPMONOCODEC = false; /* AIC23 is a stereo codec; real stereo/N-ch. */
APPSAMPLESIZE = 2; /* sample size in 8-bit bytes (octets) */
APPINOUTPIPALIGN = 32; /* data DMA-ed to a pipe must be 128-bytes (32-words)
* aligned if the pipe is placed in external memory */
APPINOUTPIPBUFSEG = tibios.IRAM; /* memory segment where the in and out
* pipes are placed */
APPRTDXAVAILABLE = true; /* Define/set RTDX application variable */
APPUSEDEVICEPARAMS = true; /* Define/set variable to over-ride default
* IOM driver parameters */
/*
* Links in the DSP/BIOS instrumented kernal
*/
bios.enableRealTimeAnalysis(prog);
/*
* Links 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 + -