AVR驅(qū)動3.2英寸tft LCD(ssd1289)
D0 | PA0 | D5 | PA5 | D10 | PD2 | D15 | PD7 |
D1 | PA1 | D6 | PA6 | D11 | PD3 | CS | PB0 |
D2 | PA2 | D7 | PA7 | D12 | PD4 | RS | PB1 |
D3 | PA3 | D8 | PD0 | D13 | PD5 | WR | PB2 |
D4 | PA4 | D9 | PD1 | D14 | PD6 | RD | PB3 |
RESET | PB4 |
#include <LCD.h>
#include
#include
#define Setbit(val,bitn) (val|=(1<<(bitn)))
#define Clcbit(val,bitn) (val&=~(1<<(bitn)))
void delay_Nms(int n)
{
}
void LCD_WR_DATA(char VH,char VL)
{
}
void LCD_WR_ADDR(char addr)
{
}
void LCD_WR_CMD(char addr,char cmdH,char cmdL)
{
}
void LCD_SetCursor(short Xpos,short Ypos)
{
}
void LCD_DrawPoint(short Xpos,short Ypos,short POINT_COLOR)
{
}
void LCD_Init(void)
{
}
void DispOneColor(unsigned int Color)
{
}
void DrawLine(short x0,short y0,short x1,short y1,short color)
{
}
void main(void)
{
}
評論