代码搜索:LCD调试
找到约 10,000 项符合「LCD调试」的源代码
代码结果 10,000
www.eeworm.com/read/117570/14914564
h lcd.h
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/117570/14915134
h lcd.h
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/218394/14922360
o lcd.o
www.eeworm.com/read/218394/14922512
err lcd.err
"lcd.c", line 79: Warning: C2917W: no side effect in void context: 'unary *'
"lcd.c", line 95: Warning: C2917W: no side effect in void context: 'unary *'
"lcd.c", line 743: Warning: C291
www.eeworm.com/read/218394/14922672
c lcd.c
#include
#include "2410addr.h"
#include "2410lib.h"
#include "def.h"
#include "lcdlib.h"
#include "glib.h"
#include "lcd.h"
#include ".\bmp\DEMO256.h"
void Lcd_Port_Init(void);
www.eeworm.com/read/218394/14922694
h lcd.h
#ifndef __LCD_H__
#define __LCD_H__
void Test_Lcd_Stn_1Bit(void);
void Test_Lcd_Stn_2Bit(void);
void Test_Lcd_Stn_4Bit(void);
void Test_Lcd_Cstn_8Bit(void);
void Test_Lcd_Cstn_12Bit(void);
vo
www.eeworm.com/read/218243/14930189
sch lcd.sch
www.eeworm.com/read/117020/14944383
c lcd.c
//OCMJ4X8C驱动程序
//作者: 孙新虎
//日期: 20041211
#include "include.h"
void delay(uint8_t i) //短时间延时
{
while(--i);
}
void lcd_power_on(void) //打开LCD电源
{
PORTB &= ~(_BV(LCD_E) | _BV(LCD_RS) |
www.eeworm.com/read/117020/14944384
h lcd.h
#ifndef __lcd_h__
#define __lcd_h__
#define LCD_RS PB1
#define LCD_RW PB2
#define LCD_E PB3
#define LCD_RST PB4
#define LCD_POWER_OFF() DDRB &= ~_BV(PB0)
#define LCD_POWER_ON() DDRB |=
www.eeworm.com/read/217841/14950211