dss.h

来自「DSP 基于 TMS320C6711 DSK 的功能演示程序」· C头文件 代码 · 共 45 行

H
45
字号
/*
 *  Copyright 2001 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.
 *  U.S. Patent Nos. 5,283,900  5,392,448
 */
/* "@(#) XDAS 2.12 05-21-01 (__imports)" */
/*
 *  ======== dss.h ========
 */

#ifndef DSS_
#define DSS_

#include <pip.h>

#ifdef _62_
#define Far     far
#else
#define Far
#endif

extern void DSS_rxPrime(void);
extern void DSS_txPrime(void);

extern Int      DSS_error;      /* error mask */

/*
 * these two pipe *must be* defined in your configuration
 */
extern Far PIP_Obj  DSS_rxPipe;
extern Far PIP_Obj  DSS_txPipe;

/*
 * the following are defined in dss.c
 */
extern Int      *DSS_rxPtr;
extern Int      *DSS_txPtr;

extern Int      DSS_rxCnt;
extern Int      DSS_txCnt;

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?