代码搜索结果

找到约 10,000 项符合 LCD 的代码

lcd.lnk

# LINK COMMAND FILE FOR TEST PROGRAM # +seg .text -b 0x8000 -n .text # program start address +seg .const -a .text # constants follow code +seg .bsct -b 0x40 # zero page start address 0x40 +seg

lcd.bat

@echo off PATH c:\cxeval cx6808 -evl +debug +nowiden crts.s lcd.c KEY.C vector.c if errorlevel 1 goto bad :clink echo. echo Linking ... clnk -o lcd.h08 lcd.lnk if errorlevel 1 goto bad :chexa

lcd.c

//深圳瑞特TR12864M(控制器ST7920A) //串行连接方式,PTC0-CS,PTC1-SID,PTC2-SCLK #include "gp32.h" #define cli() _asm("cli\n") /*开中断*/ #define sei() _asm("sei\n") /*关中断*/ typedef unsigned int Uint; typedef unsign

lcd.lnk

# LINK COMMAND FILE FOR TEST PROGRAM # +seg .text -b 0x8000 -n .text # program start address +seg .const -a .text # constants follow code +seg .bsct -b 0x40 # zero page start address 0x40 +seg

lcd.bat

@echo off PATH c:\cxeval cx6808 -evl +debug +nowiden crts.s lcd.c KEY.C vector.c if errorlevel 1 goto bad :clink echo. echo Linking ... clnk -o lcd.h08 lcd.lnk if errorlevel 1 goto bad :chexa

lcd显示.txt

--文件名:lcd_driver.vhd。 --功能:FGAD驱动LCD显示中文字符“年”。 --最后修改日期:2004.3.24。 library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity lcd_driver is

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);

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