Select one of the symbols to view example projects that use it.
 
Outline
#include "st7789h2.h"
ST7789H2_Rgb888
ST7789H2_drv
WindowsXstart
WindowsYstart
WindowsXend
WindowsYend
ST7789H2_Init()
ST7789H2_SetOrientation(uint32_t)
ST7789H2_DisplayOn()
ST7789H2_DisplayOff()
ST7789H2_GetLcdPixelWidth()
ST7789H2_GetLcdPixelHeight()
ST7789H2_ReadID()
ST7789H2_SetCursor(uint16_t, uint16_t)
ST7789H2_WritePixel(uint16_t, uint16_t, uint16_t)
ST7789H2_ReadPixel(uint16_t, uint16_t)
ST7789H2_WriteReg(uint8_t, uint8_t *, uint8_t)
ST7789H2_ReadReg(uint8_t)
ST7789H2_SetDisplayWindow(uint16_t, uint16_t, uint16_t, uint16_t)
ST7789H2_DrawHLine(uint16_t, uint16_t, uint16_t, uint16_t)
ST7789H2_DrawVLine(uint16_t, uint16_t, uint16_t, uint16_t)
ST7789H2_DrawBitmap(uint16_t, uint16_t, uint8_t *)
ST7789H2_DrawRGBImage(uint16_t, uint16_t, uint16_t, uint16_t, uint8_t *)
ST7789H2_ReadPixel_rgb888(uint16_t, uint16_t)
ST7789H2_DrawRGBHLine(uint16_t, uint16_t, uint16_t, uint8_t *)
Files
loading...
SourceVuSTM32 Libraries and Samplesst7789h2st7789h2.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file st7789h2.c * @author MCD Application Team * @brief This file includes the LCD driver for st7789h2 LCD. ****************************************************************************** * @attention * * Copyright (c) 2016 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Includes ------------------------------------------------------------------*/ #include "st7789h2.h" /** @addtogroup BSP * @{ *//* ... */ /** @addtogroup Components * @{ *//* ... */ /** @defgroup ST7789H2 * @brief This file provides a set of functions needed to drive the * FRIDA FRD154BP2901 LCD. * @{ *//* ... */ /** @defgroup ST7789H2_Private_TypesDefinitions ST7789H2 Private TypesDefinitions * @{ *//* ... */ typedef struct { uint8_t red; uint8_t green; uint8_t blue; ...} ST7789H2_Rgb888; /** * @} *//* ... */ /** @defgroup ST7789H2_Private_Defines ST7789H2 Private Defines * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup ST7789H2_Private_Macros ST7789H2 Private Macros * @{ *//* ... */ /** * @} *//* ... */ /** @defgroup ST7789H2_Private_Variables ST7789H2 Private Variables * @{ *//* ... */ LCD_DrvTypeDef ST7789H2_drv = { ST7789H2_Init, ST7789H2_ReadID, ST7789H2_DisplayOn, ST7789H2_DisplayOff, ST7789H2_SetCursor, ST7789H2_WritePixel, ST7789H2_ReadPixel, ST7789H2_SetDisplayWindow, ST7789H2_DrawHLine, ST7789H2_DrawVLine, ST7789H2_GetLcdPixelWidth, ST7789H2_GetLcdPixelHeight, ST7789H2_DrawBitmap, ST7789H2_DrawRGBImage, ...}; static uint16_t WindowsXstart = 0; static uint16_t WindowsYstart = 0; static uint16_t WindowsXend = ST7789H2_LCD_PIXEL_WIDTH-1; static uint16_t WindowsYend = ST7789H2_LCD_PIXEL_HEIGHT-1; /** * @} *//* ... */ /** @defgroup ST7789H2_Private_FunctionPrototypes ST7789H2 Private FunctionPrototypes * @{ *//* ... */ static ST7789H2_Rgb888 ST7789H2_ReadPixel_rgb888(uint16_t Xpos, uint16_t Ypos); static void ST7789H2_DrawRGBHLine(uint16_t Xpos, uint16_t Ypos, uint16_t Xsize, uint8_t *pdata); /** * @} *//* ... */ /** @defgroup ST7789H2_Private_Functions ST7789H2 Private Functions * @{ *//* ... */ /** * @brief Initialize the st7789h2 LCD Component. * @param None * @retval None *//* ... */ void ST7789H2_Init(void) { uint8_t parameter[14]; /* Initialize st7789h2 low level bus layer ----------------------------------*/ LCD_IO_Init(); /* Sleep In Command */ ST7789H2_WriteReg(ST7789H2_SLEEP_IN, (uint8_t*)NULL, 0); /* Wait for 10ms */ LCD_IO_Delay(10); /* SW Reset Command */ ST7789H2_WriteReg(0x01, (uint8_t*)NULL, 0); /* Wait for 200ms */ LCD_IO_Delay(200); /* Sleep Out Command */ ST7789H2_WriteReg(ST7789H2_SLEEP_OUT, (uint8_t*)NULL, 0); /* Wait for 120ms */ LCD_IO_Delay(120); /* Normal display for Driver Down side */ parameter[0] = 0x00; ST7789H2_WriteReg(ST7789H2_NORMAL_DISPLAY, parameter, 1); /* Color mode 16bits/pixel */ parameter[0] = 0x05; ST7789H2_WriteReg(ST7789H2_COLOR_MODE, parameter, 1); /* Display inversion On */ ST7789H2_WriteReg(ST7789H2_DISPLAY_INVERSION, (uint8_t*)NULL, 0); /* Set Column address CASET */ parameter[0] = 0x00; parameter[1] = 0x00; parameter[2] = 0x00; parameter[3] = 0xEF; ST7789H2_WriteReg(ST7789H2_CASET, parameter, 4); /* Set Row address RASET */ parameter[0] = 0x00; parameter[1] = 0x00; parameter[2] = 0x00; parameter[3] = 0xEF; ST7789H2_WriteReg(ST7789H2_RASET, parameter, 4); Initialize st7789h2 low level bus layer /*--------------- ST7789H2 Frame rate setting -------------------------------*/ /* PORCH control setting */ parameter[0] = 0x0C; parameter[1] = 0x0C; parameter[2] = 0x00; parameter[3] = 0x33; parameter[4] = 0x33; ST7789H2_WriteReg(ST7789H2_PORCH_CTRL, parameter, 5); /* GATE control setting */ parameter[0] = 0x35; ST7789H2_WriteReg(ST7789H2_GATE_CTRL, parameter, 1); --------------- ST7789H2 Frame rate setting /*--------------- ST7789H2 Power setting ------------------------------------*/ /* VCOM setting */ parameter[0] = 0x1F; ST7789H2_WriteReg(ST7789H2_VCOM_SET, parameter, 1); /* LCM Control setting */ parameter[0] = 0x2C; ST7789H2_WriteReg(ST7789H2_LCM_CTRL, parameter, 1); /* VDV and VRH Command Enable */ parameter[0] = 0x01; parameter[1] = 0xC3; ST7789H2_WriteReg(ST7789H2_VDV_VRH_EN, parameter, 2); /* VDV Set */ parameter[0] = 0x20; ST7789H2_WriteReg(ST7789H2_VDV_SET, parameter, 1); /* Frame Rate Control in normal mode */ parameter[0] = 0x0F; ST7789H2_WriteReg(ST7789H2_FR_CTRL, parameter, 1); /* Power Control */ parameter[0] = 0xA4; parameter[1] = 0xA1; ST7789H2_WriteReg(ST7789H2_POWER_CTRL, parameter, 2); --------------- ST7789H2 Power setting /*--------------- ST7789H2 Gamma setting ------------------------------------*/ /* Positive Voltage Gamma Control */ parameter[0] = 0xD0; parameter[1] = 0x08; parameter[2] = 0x11; parameter[3] = 0x08; parameter[4] = 0x0C; parameter[5] = 0x15; parameter[6] = 0x39; parameter[7] = 0x33; parameter[8] = 0x50; parameter[9] = 0x36; parameter[10] = 0x13; parameter[11] = 0x14; parameter[12] = 0x29; parameter[13] = 0x2D; ST7789H2_WriteReg(ST7789H2_PV_GAMMA_CTRL, parameter, 14); /* Negative Voltage Gamma Control */ parameter[0] = 0xD0; parameter[1] = 0x08; parameter[2] = 0x10; parameter[3] = 0x08; parameter[4] = 0x06; parameter[5] = 0x06; parameter[6] = 0x39; parameter[7] = 0x44; parameter[8] = 0x51; parameter[9] = 0x0B; parameter[10] = 0x16; parameter[11] = 0x14; parameter[12] = 0x2F; parameter[13] = 0x31; ST7789H2_WriteReg(ST7789H2_NV_GAMMA_CTRL, parameter, 14); /* Display ON command */ ST7789H2_DisplayOn(); /* Tearing Effect Line On: Option (00h:VSYNC Interface OFF, 01h:VSYNC Interface ON) */ parameter[0] = 0x00; ST7789H2_WriteReg(ST7789H2_TEARING_EFFECT, parameter, 1); }{ ... } /** * @brief Set the Display Orientation. * @param orientation: ST7789H2_ORIENTATION_PORTRAIT, ST7789H2_ORIENTATION_LANDSCAPE * or ST7789H2_ORIENTATION_LANDSCAPE_ROT180 * @retval None *//* ... */ void ST7789H2_SetOrientation(uint32_t orientation) { uint8_t parameter[6]; if(orientation == ST7789H2_ORIENTATION_LANDSCAPE) { parameter[0] = 0x00; }if (orientation == ST7789H2_ORIENTATION_LANDSCAPE) { ... } else if(orientation == ST7789H2_ORIENTATION_LANDSCAPE_ROT180) { /* Vertical Scrolling Definition */ /* TFA describes the Top Fixed Area */ parameter[0] = 0x00; parameter[1] = 0x00; /* VSA describes the height of the Vertical Scrolling Area */ parameter[2] = 0x01; parameter[3] = 0xF0; /* BFA describes the Bottom Fixed Area */ parameter[4] = 0x00; parameter[5] = 0x00; ST7789H2_WriteReg(ST7789H2_VSCRDEF, parameter, 6); /* Vertical Scroll Start Address of RAM */ /* GRAM row nbr (320) - Display row nbr (240) = 80 = 0x50 */ parameter[0] = 0x00; parameter[1] = 0x50; ST7789H2_WriteReg(ST7789H2_VSCSAD, parameter, 2); parameter[0] = 0xC0; }else if (orientation == ST7789H2_ORIENTATION_LANDSCAPE_ROT180) { ... } else { parameter[0] = 0x60; }else { ... } ST7789H2_WriteReg(ST7789H2_NORMAL_DISPLAY, parameter, 1); }{ ... } /** * @brief Enables the Display. * @param None * @retval None *//* ... */ void ST7789H2_DisplayOn(void) { /* Display ON command */ ST7789H2_WriteReg(ST7789H2_DISPLAY_ON, (uint8_t*)NULL, 0); /* Sleep Out command */ ST7789H2_WriteReg(ST7789H2_SLEEP_OUT, (uint8_t*)NULL, 0); }{ ... } /** * @brief Disables the Display. * @param None * @retval None *//* ... */ void ST7789H2_DisplayOff(void) { uint8_t parameter[1]; parameter[0] = 0xFE; /* Display OFF command */ ST7789H2_WriteReg(ST7789H2_DISPLAY_OFF, parameter, 1); /* Sleep In Command */ ST7789H2_WriteReg(ST7789H2_SLEEP_IN, (uint8_t*)NULL, 0); /* Wait for 10ms */ LCD_IO_Delay(10); }{ ... } /** * @brief Get the LCD pixel Width. * @param None * @retval The Lcd Pixel Width *//* ... */ uint16_t ST7789H2_GetLcdPixelWidth(void) { return (uint16_t)ST7789H2_LCD_PIXEL_WIDTH; }{ ... } /** * @brief Get the LCD pixel Height. * @param None * @retval The Lcd Pixel Height *//* ... */ uint16_t ST7789H2_GetLcdPixelHeight(void) { return (uint16_t)ST7789H2_LCD_PIXEL_HEIGHT; }{ ... } /** * @brief Get the st7789h2 ID. * @param None * @retval The st7789h2 ID *//* ... */ uint16_t ST7789H2_ReadID(void) { LCD_IO_Init(); return ST7789H2_ReadReg(ST7789H2_LCD_ID); }{ ... } /** * @brief Set Cursor position. * @param Xpos: specifies the X position. * @param Ypos: specifies the Y position. * @retval None *//* ... */ void ST7789H2_SetCursor(uint16_t Xpos, uint16_t Ypos) { uint8_t parameter[4]; /* CASET: Comumn Addrses Set */ parameter[0] = 0x00; parameter[1] = 0x00 + Xpos; parameter[2] = 0x00; parameter[3] = 0xEF + Xpos; ST7789H2_WriteReg(ST7789H2_CASET, parameter, 4); /* RASET: Row Addrses Set */ parameter[0] = 0x00; parameter[1] = 0x00 + Ypos; parameter[2] = 0x00; parameter[3] = 0xEF + Ypos; ST7789H2_WriteReg(ST7789H2_RASET, parameter, 4); }{ ... } /** * @brief Write pixel. * @param Xpos: specifies the X position. * @param Ypos: specifies the Y position. * @param RGBCode: the RGB pixel color in RGB565 format * @retval None *//* ... */ void ST7789H2_WritePixel(uint16_t Xpos, uint16_t Ypos, uint16_t RGBCode) { /* Set Cursor */ ST7789H2_SetCursor(Xpos, Ypos); /* Prepare to write to LCD RAM */ ST7789H2_WriteReg(ST7789H2_WRITE_RAM, (uint8_t*)NULL, 0); /* RAM write data command */ /* Write RAM data */ LCD_IO_WriteData(RGBCode); }{ ... } /** * @brief Read pixel. * @param Xpos: specifies the X position. * @param Ypos: specifies the Y position. * @retval The RGB pixel color in RGB565 format *//* ... */ uint16_t ST7789H2_ReadPixel(uint16_t Xpos, uint16_t Ypos) { ST7789H2_Rgb888 rgb888; uint8_t r, g, b; uint16_t rgb565; /* Set Cursor */ ST7789H2_SetCursor(Xpos, Ypos); /* Read RGB888 data from LCD RAM */ rgb888 = ST7789H2_ReadPixel_rgb888(Xpos, Ypos); /* Convert RGB888 to RGB565 */ r = ((rgb888.red & 0xF8) >> 3); /* Extract the red component 5 most significant bits */ g = ((rgb888.green & 0xFC) >> 2); /* Extract the green component 6 most significant bits */ b = ((rgb888.blue & 0xF8) >> 3); /* Extract the blue component 5 most significant bits */ rgb565 = ((uint16_t)(r) << 11) + ((uint16_t)(g) << 5) + ((uint16_t)(b) << 0); return (rgb565); }{ ... } /** * @brief Writes to the selected LCD register. * @param Command: command value (or register address as named in st7789h2 doc). * @param Parameters: pointer on parameters value (if command uses one or several parameters). * @param NbParameters: number of command parameters (0 if no parameter) * @retval None *//* ... */ void ST7789H2_WriteReg(uint8_t Command, uint8_t *Parameters, uint8_t NbParameters) { uint8_t i; /* Send command */ LCD_IO_WriteReg(Command); /* Send command's parameters if any */ for (i=0; i<NbParameters; i++) { LCD_IO_WriteData(Parameters[i]); }for (i=0; i }{ ... } /** * @brief Reads the selected LCD Register. * @param Command: command value (or register address as named in st7789h2 doc). * @retval Register Value. *//* ... */ uint8_t ST7789H2_ReadReg(uint8_t Command) { /* Send command */ LCD_IO_WriteReg(Command); /* Read dummy data */ LCD_IO_ReadData(); /* Read register value */ return (LCD_IO_ReadData()); }{ ... } /** * @brief Sets a display window * @param Xpos: specifies the X bottom left position. * @param Ypos: specifies the Y bottom left position. * @param Height: display window height. * @param Width: display window width. * @retval None *//* ... */ void ST7789H2_SetDisplayWindow(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height) { if (Xpos < ST7789H2_LCD_PIXEL_WIDTH) { WindowsXstart = Xpos; }if (Xpos < ST7789H2_LCD_PIXEL_WIDTH) { ... } else { WindowsXstart = 0; }else { ... } if (Ypos < ST7789H2_LCD_PIXEL_HEIGHT) { WindowsYstart = Ypos; }if (Ypos < ST7789H2_LCD_PIXEL_HEIGHT) { ... } else { WindowsYstart = 0; }else { ... } if (Width + Xpos <= ST7789H2_LCD_PIXEL_WIDTH) { WindowsXend = Width + Xpos - 1; }if (Width + Xpos <= ST7789H2_LCD_PIXEL_WIDTH) { ... } else { WindowsXend = ST7789H2_LCD_PIXEL_WIDTH - 1; }else { ... } if (Height + Ypos <= ST7789H2_LCD_PIXEL_HEIGHT) { WindowsYend = Height + Ypos - 1; }if (Height + Ypos <= ST7789H2_LCD_PIXEL_HEIGHT) { ... } else { WindowsYend = ST7789H2_LCD_PIXEL_HEIGHT-1; }else { ... } }{ ... } /** * @brief Draw vertical line. * @param RGBCode: Specifies the RGB color in RGB565 format * @param Xpos: specifies the X position. * @param Ypos: specifies the Y position. * @param Length: specifies the Line length. * @retval None *//* ... */ void ST7789H2_DrawHLine(uint16_t RGBCode, uint16_t Xpos, uint16_t Ypos, uint16_t Length) { uint16_t counter; /* Set Cursor */ ST7789H2_SetCursor(Xpos, Ypos); /* Prepare to write to LCD RAM */ ST7789H2_WriteReg(ST7789H2_WRITE_RAM, (uint8_t*)NULL, 0); /* RAM write data command */ /* Sent a complete line */ for(counter = 0; counter < Length; counter++) { LCD_IO_WriteData(RGBCode); }for (counter = 0; counter < Length; counter++) { ... } }{ ... } /** * @brief Draw vertical line. * @param RGBCode: Specifies the RGB color * @param Xpos: specifies the X position. * @param Ypos: specifies the Y position. * @param Length: specifies the Line length. * @retval None *//* ... */ void ST7789H2_DrawVLine(uint16_t RGBCode, uint16_t Xpos, uint16_t Ypos, uint16_t Length) { uint16_t counter; /* Set Cursor */ ST7789H2_SetCursor(Xpos, Ypos); /* Prepare to write to LCD RAM */ ST7789H2_WriteReg(ST7789H2_WRITE_RAM, (uint8_t*)NULL, 0); /* RAM write data command */ /* Fill a complete vertical line */ for(counter = 0; counter < Length; counter++) { ST7789H2_WritePixel(Xpos, Ypos + counter, RGBCode); }for (counter = 0; counter < Length; counter++) { ... } }{ ... } /** * @brief Displays a bitmap picture. * @param BmpAddress: Bmp picture address. * @param Xpos: Bmp X position in the LCD * @param Ypos: Bmp Y position in the LCD * @retval None *//* ... */ void ST7789H2_DrawBitmap(uint16_t Xpos, uint16_t Ypos, uint8_t *pbmp) { uint32_t index = 0, size = 0; uint32_t posY; uint32_t nb_line = 0; uint16_t Xsize = WindowsXend - WindowsXstart + 1; uint16_t Ysize = WindowsYend - WindowsYstart + 1; /* Read bitmap size */ size = *(volatile uint16_t *) (pbmp + 2); size |= (*(volatile uint16_t *) (pbmp + 4)) << 16; /* Get bitmap data address offset */ index = *(volatile uint16_t *) (pbmp + 10); index |= (*(volatile uint16_t *) (pbmp + 12)) << 16; size = (size - index)/2; pbmp += index; for (posY = (Ypos + Ysize); posY > Ypos; posY--) /* In BMP files the line order is inverted */ { /* Set Cursor */ ST7789H2_SetCursor(Xpos, posY - 1); /* Draw one line of the picture */ ST7789H2_DrawRGBHLine(Xpos, posY - 1, Xsize, (pbmp + (nb_line * Xsize * 2))); nb_line++; ...} }{ ... } /** * @brief Displays picture. * @param pdata: picture address. * @param Xpos: Image X position in the LCD * @param Ypos: Image Y position in the LCD * @param Xsize: Image X size in the LCD * @param Ysize: Image Y size in the LCD * @retval None *//* ... */ void ST7789H2_DrawRGBImage(uint16_t Xpos, uint16_t Ypos, uint16_t Xsize, uint16_t Ysize, uint8_t *pdata) { uint32_t posY; uint32_t nb_line = 0; for (posY = Ypos; posY < (Ypos + Ysize); posY ++) { /* Set Cursor */ ST7789H2_SetCursor(Xpos, posY); /* Draw one line of the picture */ ST7789H2_DrawRGBHLine(Xpos, posY, Xsize, (pdata + (nb_line * Xsize * 2))); nb_line++; }for (posY = Ypos; posY < (Ypos + Ysize); posY ++) { ... } }{ ... } /****************************************************************************** Static Functions *******************************************************************************//* ... */ /** * @brief Read pixel from LCD RAM in RGB888 format * @param Xpos: specifies the X position. * @param Ypos: specifies the Y position. * @retval Each RGB pixel color components in a structure *//* ... */ static ST7789H2_Rgb888 ST7789H2_ReadPixel_rgb888(uint16_t Xpos, uint16_t Ypos) { ST7789H2_Rgb888 rgb888; uint16_t rgb888_part1, rgb888_part2; /* In LCD RAM, pixels are 24 bits packed and read with 16 bits access * Here is the pixels components arrangement in memory : * bits: 15 14 13 12 11 10 09 08 | 07 06 05 04 03 02 01 00 * address 0 : red pixel 0 X X | green pixel 0 X X * address 1 : blue pixel 0 X X | red pixel 1 X X * address 2 : green pixel 1 X X | blue pixel 1 X X *//* ... */ /* Set Cursor */ ST7789H2_SetCursor(Xpos, Ypos); /* Prepare to read LCD RAM */ ST7789H2_WriteReg(ST7789H2_READ_RAM, (uint8_t*)NULL, 0); /* RAM read data command */ /* Dummy read */ LCD_IO_ReadData(); /* Read first part of the RGB888 data */ rgb888_part1 = LCD_IO_ReadData(); /* Read first part of the RGB888 data */ rgb888_part2 = LCD_IO_ReadData(); /* red component */ rgb888.red = (rgb888_part1 & 0xFC00) >> 8; /* green component */ rgb888.green = (rgb888_part1 & 0x00FC) >> 0; /* blue component */ rgb888.blue = (rgb888_part2 & 0xFC00) >> 8; return rgb888; }{ ... } /** * @brief Displays a single picture line. * @param pdata: picture address. * @param Xpos: Image X position in the LCD * @param Ypos: Image Y position in the LCD * @param Xsize: Image X size in the LCD * @retval None *//* ... */ static void ST7789H2_DrawRGBHLine(uint16_t Xpos, uint16_t Ypos, uint16_t Xsize, uint8_t *pdata) { uint32_t i = 0; uint32_t posX; uint16_t *rgb565 = (uint16_t*)pdata; /* Prepare to write to LCD RAM */ ST7789H2_WriteReg(ST7789H2_WRITE_RAM, (uint8_t*)NULL, 0); /* RAM write data command */ for (posX = Xpos; posX < (Xsize + Xpos); posX++) { if ((posX >= WindowsXstart) && (Ypos >= WindowsYstart) && /* Check we are in the defined window */ (posX <= WindowsXend) && (Ypos <= WindowsYend)) { if (posX != (Xsize + Xpos)) /* When writing last pixel when size is odd, the third part is not written */ { LCD_IO_WriteData(rgb565[i]); ...} i++; }if ((posX >= WindowsXstart) && (Ypos >= WindowsYstart) && /* Check we are in the defined window */ (posX <= WindowsXend) && (Ypos <= WindowsYend)) { ... } }for (posX = Xpos; posX < (Xsize + Xpos); posX++) { ... } }{ ... } /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */ /** * @} *//* ... */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.