当前位置:首页 > 单片机 > 单片机
[导读]ili9320.h1 #ifndef __ILI9320_H__2 #define __ILI9320_H__3 #include "reg52.h"45 #define u8 unsigned char6 #define u16 unsigned int7 #define uchar unsigned char8 #define uint unsigned int910 //#define LC

ili9320.h

1 #ifndef __ILI9320_H__

2 #define __ILI9320_H__

3 #include "reg52.h"

4

5 #define u8 unsigned char

6 #define u16 unsigned int

7 #define uchar unsigned char

8 #define uint unsigned int

9

10 //#define LCD_COLORS_NUM 65536

11 #define LCD_SIZE_X 240

12 #define LCD_SIZE_Y 320

13

14

15

16 //-------------------------------------------------------

17 //-----------------------端口定义------------------------

18

19 #define LCD_DataH P0//高8位数据

20 #define LCD_DataL P1//低8位数据

21

22 sbit LCD_RST= P2^0 ;//复位

23 sbit LCD_CS =P2^1;//使能端

24

25 sbit LCD_RS= P3^5; //数据|指令

26 sbit LCD_WR= P3^6; //写

27 sbit LCD_RD =P3^7; //读

28

29 //---------------------------------------------------------

30 //-------------------函数声明------------------------------

31

32 //////RGB转换,888->565/////

33 u16 LCD_RGB(u8 R,u8 G,u8 B);

34

35 /////////延时//////////

36 void LCD_Delay(uint t);

37

38 ///////写索引寄存器////////

39 void LCD_WriteIndex(u8 index);

40

41 ///////写数据////////

42 void LCD_WriteData(u16 Data);

43

44 ///////写寄存器//////////

45 void LCD_WriteCOM(u8 index,u16 Data);

46

47 /////读芯片ID,0x9320/////

48 u16 LCD_ReadID(void);

49

50 //////读像素////////

51 u16 LCD_ReadPixel(u16 x,u16 y);

52

53 //////设置像素////////

54 void LCD_SetPixel(u16 color);

55

56 //////设置显示窗口/////

57 void LCD_SetWindow(uint x1,uint y1,uint x2,uint y2);

58

59 ///////设置光标//////

60 //void LCD_SetCursor(uint x,uint y);

61

62 ///////LCD初始化///////

63 void LCD_Init(void);

64

65 #endif


ili9320.c

1 #include "reg52.h"

2 #include "ili9320.h"

3

4

5 //-----------------------------------------------------

6 //读取芯片型号,型号:0X9320

7

8 u16 LCD_ReadID(void)

9 {

10 u16 t;

11 LCD_WriteIndex(0x00);

12 LCD_DataH=0xff;

13 LCD_DataL=0xff;

14 LCD_RS=1;

15 LCD_RD=1;

16 LCD_RD=0; //RD不需要变换两次

17 t=(LCD_DataH<<8)|LCD_DataL ;

18 return t;

19 }

20

21

22 //-----------------------------------------------------

23 //在65536色彩下,读取像素点

24

25 u16 LCD_ReadPixel(u16 x,u16 y)

26 {

27 u16 t;

28 LCD_WriteCOM(0x20,x);

29 LCD_WriteCOM(0x21,y);

30 LCD_WriteIndex(0x22);

31

32 LCD_DataH=0xff;

33 LCD_DataL=0xff;

34 LCD_RS=1;

35 LCD_RD=1;

36 LCD_RD=0;

37 LCD_RD=1;

38 LCD_RD=0; //RD需要变换两次

39 t=(LCD_DataH<<8)|LCD_DataL ;

40 return t;

41 }

42

43 //------------------------------------------------------

44 //设置显示窗口

45

46 void LCD_SetWindow(uint x1,uint y1,uint x2,uint y2)

47 {

48 LCD_WriteCOM(0x20,x1);

49 LCD_WriteCOM(0x21,y1);

50 LCD_WriteCOM(0x50,x1);

51 LCD_WriteCOM(0x52,y1);

52 LCD_WriteCOM(0x51,x2);

53 LCD_WriteCOM(0x53,y2);

54 LCD_WriteIndex(0x22);

55 }

56

57 //-------------------------------------------------------

58 //设置光标

59 void LCD_SetCursor(uint x,uint y)

60 {

61 LCD_WriteCOM(0x20,x);

62 LCD_WriteCOM(0x21,y);

63 LCD_WriteIndex(0x22);

64 }

65

66

67

68

69 //----------------------------------------------------------

70 //在65536色彩下,将18位颜色数据转化为16位

71 u16 LCD_RGB(u8 R,u8 G,u8 B)

72 {

73 u16 tRGB;

74 tRGB=0x00;

75 tRGB=tRGB|R;

76 tRGB=tRGB<<6;

77 tRGB=tRGB|G;

78 tRGB=tRGB<<5;

79 tRGB=tRGB|B;

80 return tRGB;

81 }

82

83 //---------------------------------------------------------

84 //延时函数

85 void LCD_Delay(uint t)

86 {

87 for(;t>0;t--);

88 }

89

90 //----------------------------------------------------------

91 //写入索引寄存器

92 void LCD_WriteIndex(u8 index)

93 {

94 LCD_RS=0;

95 LCD_RD=1;

96 LCD_WR=0;

97 LCD_DataH=0x00;

98 LCD_DataL=index;

99 LCD_WR=1;

100 }

101

102 //-----------------------------------------

103 //写入数据

104

105 void LCD_WriteData(u16 Data)

106 {

107 LCD_RS=1;

108 LCD_WR=0;

109 LCD_DataH=Data>>8;

110 LCD_DataL=Data;

111 LCD_WR=1;

112

113 }

114

115 //-----------------------------------------

116 //写寄存器

117

118 void LCD_WriteCOM(u8 index,u16 Data)

119 {

120 LCD_WriteIndex(index);

121 LCD_WriteData(Data);

122 }

123

124

125

126 //-----------------------------------------------

127 //LCD初始化函数

128

129 void LCD_Init(void)

130 {

131 //************* Reset LCD Driver ****************//

132 LCD_CS=0;

133 LCD_RST=1;

134 LCD_RD=1;

135 LCD_Delay(10);

136 LCD_RST=0;

137 LCD_Delay(100);

138 LCD_RST=1;

139 LCD_Delay(10);

140 //************* Start Initial Sequence **********//

141 LCD_WriteCOM(0x00, 0x0001); // 开始内部振荡

142 LCD_WriteCOM(0x01, 0x0100); // set SS and SM bit

143 LCD_WriteCOM(0x02, 0x0400); // set 1 line inversion

144 LCD_WriteCOM(0x03, 0x1030);

145 LCD_WriteCOM(0x04, 0x0000); // Resize register

146 LCD_WriteCOM(0x08, 0x0202); // set the back porch and front porch

147 LCD_WriteCOM(0x09, 0x0000); // set non-display area refresh cycle ISC[3:0]

148 LCD_WriteCOM(0x0A, 0x0000); // FMARK function

149 LCD_WriteCOM(0x0C, 0x0000); // RGB interface setting

150 LCD_WriteCOM(0x0D, 0x0000); // Frame marker Position

151 LCD_WriteCOM(0x0F, 0x0000); // RGB interface polarity

152

153 LCD_WriteCOM(0x07, 0x0101); // Display Control 1

154 LCD_Delay(500);

155

156 //*************Power On sequence ****************// LCD_WriteCOM(0x51, 0x00, 0xEF);

157

158 LCD_WriteCOM(0x10, 0x16b0);

159 LCD_WriteCOM(0x11, 0x0007); // DC1[2:0], DC0[2:0], VC[2:0]

160 LCD_WriteCOM(0x12, 0x0138);

161 LCD_WriteCOM(0x13, 0x0b00);

162 LCD_WriteCOM(0x2B, 0x2008);

163 // ---------- Gamma Control ---------- //

164 LCD_WriteCOM(0x30, 0x0000);

165 LCD_WriteCOM(0x31, 0x0306);

166 LCD_WriteCOM(0x32, 0x0200);

167 LCD_WriteCOM(0x35, 0x0107);

168 LCD_WriteCOM(0x36, 0x0404);

169 LCD_WriteCOM(0x37, 0x0606);

170 LCD_WriteCOM(0x38, 0x0105);

171 LCD_WriteCOM(0x39, 0x0707);

172 LCD_WriteCOM(0x3C, 0x0600);

173 LCD_WriteCOM(0x3D, 0x0807);

174 // ---------- Window Address Area ---------- //

175 LCD_WriteCOM(0x50, 0x0000); // Horizontal GRAM Start Address-----HSA[7:0]

176 LCD_WriteCOM(0x51, 0x00EF); // Horizontal GRAM End Address-----HEA[7:0]

177 LCD_WriteCOM(0x52, 0x0000); // Vertical GRAM Start Address-----VSA[8:0]

178 LCD_WriteCOM(0x53, 0x013F); // Vertical GRAM Start Address-----VEA[8:0]

179 // ---------- Gate Scan Control ---------- //

180 LCD_WriteCOM(0x60, 0x2700); // GS, NL[5:0], SCN[5:0]

181 LCD_WriteCOM(0x61, 0x0001); // NDL,VLE, REV

182 LCD_WriteCOM(0x6A, 0x0000); // VL[8:0]

183 // ---------- Partial Display Control ---------- //

184 LCD_WriteCOM(0x80, 0x0000); // Partial Image 1 Display Position-----PTDP0[8:0]

185 LCD_WriteCOM(0x81, 0x0000); // Partial Image 1 Start Address-----PTSA0[8:0]

186 LCD_WriteCOM(0x82, 0x0000); // Partial Image 1 End Address-----PTEA0[8:0]

187 LCD_WriteCOM(0x83, 0x0000); // Partial Image 2 Display Position-----PTDP1[8:0]

188 LCD_WriteCOM(0x84, 0x0000); // Partial Image 2 Start Address-----PTSA1[8:0]

189 LCD_WriteCOM(0x85, 0x0000); // Partial Image 2 Start Address-----PTEA1[8:0]

190 // ---------- Panel Interface Control ---------- //

191 LCD_WriteCOM(0x90, 0x0013); // Panel Interface Control 1-----DIVI[1:0], RTNI[4:0]

192 LCD_WriteCOM(0x92, 0x0000); // Panel Interface Control 2-----NOWI[2:0]

193

194 LCD_WriteCOM(0x93, 0x0001); //Panel Interface Control 3-----MCPI[2:0]

195

196 LCD_WriteCOM(0x95, 0x0110); // Panel Interface Control 4-----DIVE[1:0], RTNE[5:0]

197 LCD_WriteCOM(0x97, 0x0000); // Panel Interface Control 5-----NOWE[3:0]

198 LCD_WriteCOM(0x98, 0x0000); // Panel Interface Control 6-----MCPE[2:0]

199

200 LCD_WriteCOM(0x07, 0x0173); // Display Control 1----- display ON

201 LCD_Delay(500);

202

203 }





本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

9月2日消息,不造车的华为或将催生出更大的独角兽公司,随着阿维塔和赛力斯的入局,华为引望愈发显得引人瞩目。

关键字: 阿维塔 塞力斯 华为

加利福尼亚州圣克拉拉县2024年8月30日 /美通社/ -- 数字化转型技术解决方案公司Trianz今天宣布,该公司与Amazon Web Services (AWS)签订了...

关键字: AWS AN BSP 数字化

伦敦2024年8月29日 /美通社/ -- 英国汽车技术公司SODA.Auto推出其旗舰产品SODA V,这是全球首款涵盖汽车工程师从创意到认证的所有需求的工具,可用于创建软件定义汽车。 SODA V工具的开发耗时1.5...

关键字: 汽车 人工智能 智能驱动 BSP

北京2024年8月28日 /美通社/ -- 越来越多用户希望企业业务能7×24不间断运行,同时企业却面临越来越多业务中断的风险,如企业系统复杂性的增加,频繁的功能更新和发布等。如何确保业务连续性,提升韧性,成...

关键字: 亚马逊 解密 控制平面 BSP

8月30日消息,据媒体报道,腾讯和网易近期正在缩减他们对日本游戏市场的投资。

关键字: 腾讯 编码器 CPU

8月28日消息,今天上午,2024中国国际大数据产业博览会开幕式在贵阳举行,华为董事、质量流程IT总裁陶景文发表了演讲。

关键字: 华为 12nm EDA 半导体

8月28日消息,在2024中国国际大数据产业博览会上,华为常务董事、华为云CEO张平安发表演讲称,数字世界的话语权最终是由生态的繁荣决定的。

关键字: 华为 12nm 手机 卫星通信

要点: 有效应对环境变化,经营业绩稳中有升 落实提质增效举措,毛利润率延续升势 战略布局成效显著,战新业务引领增长 以科技创新为引领,提升企业核心竞争力 坚持高质量发展策略,塑强核心竞争优势...

关键字: 通信 BSP 电信运营商 数字经济

北京2024年8月27日 /美通社/ -- 8月21日,由中央广播电视总台与中国电影电视技术学会联合牵头组建的NVI技术创新联盟在BIRTV2024超高清全产业链发展研讨会上宣布正式成立。 活动现场 NVI技术创新联...

关键字: VI 传输协议 音频 BSP

北京2024年8月27日 /美通社/ -- 在8月23日举办的2024年长三角生态绿色一体化发展示范区联合招商会上,软通动力信息技术(集团)股份有限公司(以下简称"软通动力")与长三角投资(上海)有限...

关键字: BSP 信息技术
关闭
关闭