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

📄 buxx_adrt.h

📁 bu1566dsp芯片用来处理ov7660或其他30万摄像模组的图像预览.图像拍照(jpeg压缩)
💻 H
字号:
/* ************************************************************************ */
/*                                                                          */
/* ROHM BU15xx demo firmware on MD2306                                      */
/*     Client   : ROHM Co., Ltd.丂丂丂丂丂丂                                 */
/*     End User :                                                           */
/*                                                                          */
/*     Processor: ARM-7TDMI(THUMB Mode)                                     */
/*     Dev.Env. : ARM-SDTv2.51                                              */
/*                                                                          */
/*     API:LCD DIRECT control Routines Header                               */
/*                                                                          */
/*     file     : BUxx_aDRT.h                                               */
/*     Auther   : J.SATO(NTC)丂                                             */
/*     Date     : 2004/Jul./1	                                            */
/*                                                                          */
/*     Copyright (c) 2002-04 Naritagiken Co., Ltd. All rights reserved.     */
/* ************************************************************************ */
/* History:								    */
/* 2004/Jul./1 Rev 1.00 create		                                    */
/*                                                                          */
/* ************************************************************************ */

#if !defined BUXX_ADRT_H_INCLUDED
#define	BUXX_ADRT_H_INCLUDED
/* ************************************************** */
/*		     INCLUDE FILES		      */
/* ************************************************** */
#include <stdarg.h>
#include <string.h>
#include "BUxx_setuptable.h"
#include "BUxx_aDSC.h"

/* ************************************************** */
/*		        TYPEDEF		    	      */
/* ************************************************** */

/* ************************************************** */
/*		        DEFINES			      */
/* ************************************************** */
#if defined DEBUG
#define DEBUG_WRITE(arg)	debug_write arg
#else
#define DEBUG_WRITE(arg)
#endif

/* ************************************************** */
/*		    GLOBAL VARIABLE		      */
/* ************************************************** */

/* ************************************************** */
/*		    GLOBAL FUNCTIONS		      */
/* ************************************************** */

/* ***** lcd direct ***** */

void aDRT_clear(const UINT16 st_x, const UINT16 st_y, const UINT16 xsize,
                const UINT16 ysize, const UINT32 back_color);
void aDRT_write_rgb565(const UINT16 * rgb_data, const UINT16 st_x,
                       const UINT16 st_y);
void aDRT_transparent_write_rgb565(const UINT16 * rgb_data,
                                   const UINT16 st_x, const UINT16 st_y,
                                   const UINT16 c_mask);
void aDRT_write_string(const char *string, const int space,
                       const UINT16 st_x, const UINT16 st_y);
void debug_write(const UINT16 st_x, const UINT16 st_y, const char *format,
                 ...);

extern const UINT16 *const fonttable[];


#endif                          /* BUXX_ADRT_H_INCLUDED */

⌨️ 快捷键说明

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