代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.c
#include
#include
#include "Define.h"
#include "Set.h"
sbit dc=P0^6; /*P2.0 LCD 的RS 21*/
sbit rw=P0^7; /*P2.1 LCD 的R/W 22*/
sbit cs=P1^4; /*P2.4 LCD 的E 25*/
sfr lcdb
lcd.lst
C51 COMPILER V7.50 LCD 03/28/2007 11:36:58 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE LCD
OBJECT MODULE PLACED IN LCD
lcd.h
#ifndef __lcd_h
#define __lcd_h
#define req asm("sbi 0x03,6")
#define cl_req asm("cbi 0x03,6")
#define dat asm("sbi 0x18,0")
#define cl_dat asm("cbi 0x18,0")
#define cl_reset asm("cbi 0x15,3")
lcd.c
//====================================================================
// File Name : lcd.c
// Function : S3C2412 LCD test code
// Date : Apr. 21, 2006
// Version : S3C2412
//============
lcd.h
#ifndef __LCD_H__
#define __LCD_H__
#ifdef __cplusplus
extern "C" {
#endif
void Test_Lcd_Tft_8Bit_240320(void);
void Test_Lcd_Tft_8Bit_240320_On(void);
void Test_Lcd_Tft_16Bit_240320(void
lcd.c
/************************************************/
/*** this program depends on the LM044L ********/
/*** make by:liaowenbing ********/
/*** make date:2006-12-22 ***
lcd.c
/* LCD.C */
#include
#include
#include
#define lcd_com XBYTE[0xf000]
#define lcd_data XBYTE[0xf001]
extern char mess[];
extern void delay(int);
void write_com(
lcd.c
/* Functions to drive the Dragon12 LCD module
* V1.0 March 9, 2004
* Louis Bertrand
* Keith Baldwin
* Justin Ryan
lcd.h
/* LCD header file (to go with lcd.c) - fw02-05 */
#ifndef _LCD_H_
#define _LCD_H_
/* declare public functions */
void LCD_init(void);
void writeLine(char *string, int line);
void LCD_blan