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

📄 88_test.c

📁 使用embest IDE开发工具开发的基于LPC2294 的触摸屏开发
💻 C
字号:

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

       Embest Info&Tech Co., Ltd.  All rights reserved.
                     www.embedinfo.com

file     : 88_test
author   : embest 
establish: 2006.
modify	 :
notes    :
***********************************************************************/

/*-------------------------------------------------------------------*/
/*                       compiler condition                          */
/*---------------------------------------------------------------- --*/



/*-------------------------------------------------------------------*/
/*                       include files                               */
/*---------------------------------------------------------------- --*/
#include    "..\..\com\lpc_lib_88\lpc_lib_88.h"




/*-------------------------------------------------------------------*/
/*                       local function declare                      */
/*-------------------------------------------------------------------*/
void disp_88_test(void);



/*-------------------------------------------------------------------*/
/*              extern function/variable declare                     */
/*-------------------------------------------------------------------*/
//extern void irq_timer0(void);

//extern void  time_dly(INT32U dly);
/*-------------------------------------------------------------------*/
/*                      global variable define                       */
/*-------------------------------------------------------------------*/



/*-------------------------------------------------------------------*/
/*                       function code                               */
/*-------------------------------------------------------------------*/


/***********************function descption****************************/

void Main()
{
	lpc_init_pll_manual();
	disp_88_test();
}

void disp_88_test(void)
{

	INT32U i;
	display_88_init();
//	i=TIMER0_IR;
//	while((i&=0x01)!=1);

	
	for(i=0;i<99999999;i++)
	{
		display_88(i);
		 time_dly(50);
	}


}




⌨️ 快捷键说明

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