代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.h
/*
液晶显示能力:128(列)x64(行)
屏幕坐标原点:左下角(0,0)
X轴坐标范围:0-127
Y轴坐标范围:0-63
编程说明:
0.程序中包含<mark>LCD</mark>.H头文件;cmd文件中加一行:-L<mark>LCD</mark>Driver.obj
1.程序中开设屏幕缓冲区,类型为unsigned int,长度为1024
2.首先在程序中调用函数<mark>LCD</mark>SetScreenBuffer将屏幕缓冲区地址指针作 ...
lcd.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ICETEK\VC5509AS60\VC5509AS60\Lab0403-LCD\"
ProjectType=Executable
CPUFamily=TMS320
lcd.cmd
-w
-stack 500h
-heap 500h
-l rts55x.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> P
lcd.c
#define LCDDELAY 1
#include "myapp.h"
#include "ICETEK-VC5509-EDU.h"
#include "scancode.h"
main()
{
int i,nCount=0,nBW=0;
PLL_Init(20);
SDRAM_init();
InitCTR();
TurnOnLCD();
lcd.c
#include "spce061.h"
#include "global.h"
#include "LCD.h"
/////////////////lcd control/////////////////
#define lcd_busy 0x2000
#define setb_req 0x4000
#define reset 0x7fff
uint re;
con
lcd.h
void write_data(uint date); //write a data
void clrscreen();
void displayscreen(uint *p,uint type);
void draw_pic(uint *p,uint type);
void initLCD();
void dispnumber(uint xaddr,uint yaddr,ui
lcd.c
/**********************************
标题:12864液晶串行通讯常用子函数
文件名:lcd.c
编译:WinAVR-20080411
硬件环境:
时钟:外部6MHz
***********************************/
#include
#include
lcd.c
/**********************************
标题:12864液晶串行通讯常用子函数
文件名:lcd.c
编译:WinAVR-20080411
硬件环境:
时钟:外部6MHz
***********************************/
#include
#include
lcd.c
/**********************************
标题:12864液晶串行通讯常用子函数
文件名:lcd.c
编译:WinAVR-20080411
硬件环境:
时钟:外部6MHz
***********************************/
#include
#include