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

📄 lcdtest.c

📁 深圳优龙科技LPC2468开发板
💻 C
字号:
/*****************************************************************************
 *   lcdtest.c:  main C entry file for NXP LPC24xx Family Microprocessors
 *
 *   Copyright(C) 2006, NXP Semiconductor
 *   All rights reserved.
 *
 *   History
 *   2006.07.13  ver 1.00    Prelimnary version, first Release
 *
******************************************************************************/
#include "LPC24xx.H"                        /* LPC24xx definitions */
#include "type.h"
#include "irq.h"
#include "target.h"
#include "portlcd.h"

BYTE lcd_text[2][16+1] = {"   uCdragon    ",      /* Buffer for LCD text      */
                          "  LCD IS OK!    " };

/*****************************************************************************
**   Main Function  main()
******************************************************************************/
int main (void)
{	
    TargetResetInit();
    
    /* LCD Module.2x16 init */
    LCD_init();
    LCD_cur_off();

	/* Update LCD Module display text. */
	LCD_cls();
	LCD_puts( lcd_text[0] );
	LCD_gotoxy (1,2);
	LCD_puts( lcd_text[1] );		
    return 0;
}

/******************************************************************************
**                            End Of File
******************************************************************************/

⌨️ 快捷键说明

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