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

📄 imagedef.h

📁 samsung 2410 demo源代码
💻 H
字号:
/*****************************************
  NAME: Imagedef.h
  DESC: header file for Imagetest test codes 
  HISTORY:  2002.03.13:draft ver 0.0
 *****************************************/

#ifndef __IMAGEDEF_H__
#define __IMAGEDEF_H__

#ifdef __cplusplus
extern "C"{
#endif

#include "def.h"

//Image Size
#define MEGA1_XSIZE			(1152)
#define MEGA1_YSIZE			(864)
#define MEGA2_XSIZE			(2000)
#define MEGA2_YSIZE			(864)
#define XGA_XSIZE			(1024)
#define XGA_YSIZE			(768)
#define SVGA_XSIZE			(800)
#define SVGA_YSIZE			(600)
#define VGA_XSIZE			(640)
#define VGA_YSIZE			(480)
#define QVGA_XSIZE			(320)
#define QVGA_YSIZE			(240)
#define PQVGA_XSIZE			(240)
#define PQVGA_YSIZE			(320)
#define CIF_XSIZE			(352)
#define CIF_YSIZE			(288)
#define QCIF_XSIZE			(176)
#define QCIF_YSIZE			(144)

#define CAMCLK48000000		(0)
#define CAMCLK24000000		(1)
#define CAMCLK16000000		(2)
#define CAMCLK12000000		(3)
#define CAMCLK9600000		(4)
#define CAMCLK8000000		(5)

#define C16_BLUE 	(0x1f<<0)
#define C16_GREEN 	(0x3f<<5)
#define C16_RED 		(0x1f<<11)
#define C16_BLACK 	(0x0)
#define C16_WHITE 	(0xffff)

#define C18_BLUE	(0xfc)
#define C18_GREEN	(0xfc00)
#define C18_RED 		(0xfc0000)
#define C18_BLACK	(0x0)
#define C18_WHITE	(0xfcfcfc)



#ifdef __cplusplus
}
#endif

#endif /*__IMAGEDEF_H__*/

⌨️ 快捷键说明

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