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

📄 probepoint.c

📁 CHAPTER 1- real-Time Digital Signal Processing: Implementations and Applications, Second Edition by
💻 C
字号:
// 
//  Project: Experiment 1.6.3 Probe Point - Chapter 1
//  File name: probePoint.c   
//
//  Description: This function is for experiment 1.6.3 probePoint
//
//  For the book "Real Time Digital Signal Processing: 
//                Implementation and Application, 2nd Ed"
//                By Sen M. Kuo, Bob H. Lee, and Wenshun Tian
//                Publisher: John Wiley and Sons, Ltd
//
//  Tools used: CCS v.2.12.07
//              TMS320VC5510 DSK Rev-C
//

#include "probePoint.h"

#pragma DATA_SECTION(outBuffer, "expdata0");
#pragma DATA_SECTION(inBuffer,  "expdata1");
short inBuffer[DATALENGTH]; 	
short outBuffer[DATALENGTH]; 
	    
void main()
{ 
  short i; 
    
  for (i=0; i<DATALENGTH; i++) // <- probe point read 
  {                    
    outBuffer[i] = i+inBuffer[i];  
  }    
}                              // <- probe point write


⌨️ 快捷键说明

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