代码搜索结果
找到约 10,000 项符合
LCD 的代码
lcd.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\VC5509AeS80\Lab0403-Lcd\"
ProjectType=Executable
CPUFamily=TMS320C55XX
Tool="Comp
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.c
#include "LCD.h"
unsigned int str1[80]=
{ //教学实验箱
0x910,0x914,0x4894,0x88D4,0x7eBF,0x594,0x449C,0x4414,
0x2050,0x20F8,0x130F,0xC08,0x3388,0xC078,0x4008,0x00,
0x40,0x230,0x210,0x212,0x25C,0x2
lcd.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\VC5509AeS61\Lab0403-LCD\"
ProjectType=Executable
CPUFamily=TMS320C55XX
Tool="Comp
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();