⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sine.h

📁 基于DSP2000的例程
💻 H
字号:
/*
 *  Copyright (c) 2001-2002, Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
*/

/*
 *  Description: This application uses ProbePoints to obtain input
 *  (a sine wave). It then takes this signal, and applies a gain
 *  factor to it.
*/

// define boolean TRUE
#ifndef TRUE
#define TRUE 1
#endif

// buffer constants 
#define BUFFSIZE 0x64
#define INITIALGAIN 5

// IO buffer structure
typedef struct IOBuffer {				
	int input[BUFFSIZE]; 			
	int output[BUFFSIZE];	
} BufferContents;

                  	

⌨️ 快捷键说明

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