main_control.h

来自「基于BF533的视频采集及显示」· C头文件 代码 · 共 34 行

H
34
字号
/*****************************************************************************************/
//
// Name: 	BF533 Object Tracking
//
/*****************************************************************************************

File Name:				Main_ConTrol.h

Special Connections:  	Connect a CVBS video source to the right bottom video jack "AVIN1"
                        change switch #6 of SW3 to on of the ADSP-BF533 EZ-KIT Lite.
					
Purpose:				After reset the ADV7183 is configured to output digital
						video data in ITU656 mode 8bits wide. Additionally, The DSP is 
						configured to receive video data in ITU-656 format via the PPI Interface.
						The DMA channel 0 is dedicated to transfer the data to the 
						external SDRAM immediately (Address 0x0). 

******************************************************************************************/


#define SCLK		0x0010		// PF4
#define SDATA		0x0020		// PF5

#define pVideoSourceV1  	((unsigned char *)0x00000000)  //存放25帧的起始地址

#define pVideoTempF1		((unsigned char *)0x00A00000)  //存放处理数据的起始地址
#define pVideoTempF2		((unsigned char *)0x00A20000)
#define pVideoTempF3		((unsigned char *)0x00A40000)
#define pVideoResult		((unsigned char *)0x00A60000)

#define pVideoFeature		((int *)          0x00A80000)  //存放区域几何特征的起始地址


⌨️ 快捷键说明

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