rtdx_buf.c

来自「matlab连接ccs的例子」· C语言 代码 · 共 28 行

C
28
字号
/***********************************************************************
* FILENAME: $RCSfile: rtdx_buf.c,v $
* VERSION : $Revision: 1.2 $
* DATE    : $Date: 2002/01/07 21:52:14 $
* Copyright (c) 1997 Texas Instruments Incorporated
*
* Declares the buffers used in the buffer layer.
*
************************************************************************/
#ifndef BUFRSZ
#define BUFRSZ 600
#endif

/*
 * The buffer used by RTDX is defined by 2 symbols: RTDX_Buffer_Start
 * and RTDX_Buffer_End.  We use the following declarations in order to
 * export these names
*/
#if _LARGE_MODEL
#pragma DATA_SECTION(RTDX_Buffer_Start,".rtdx_data")
#pragma DATA_SECTION(RTDX_Buffer_End,".rtdx_data")
int RTDX_Buffer_Start[BUFRSZ];
int RTDX_Buffer_End;
#else
int far RTDX_Buffer_Start[BUFRSZ];
int far RTDX_Buffer_End;
#endif

⌨️ 快捷键说明

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