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
53
54
55
63
66
67
70
71
74
75
78
79
82
83
86
87
88
89
90
91
92
93
96
97
100
101
102
105
106
109
110
111
112
113
114
115
116
119
120
123
124
125
126
129
130
131
134
135
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
170
174
175
180
184
185
190
194
195
200
204
205
210
214
215
220
224
225
230
234
235
240
244
245
250
251
252
253
254
255
256
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
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
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
376
377
384
391
392
399
415
416
423
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
464
469
470
471
475
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
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
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
576
581
582
583
584
585
591
592
593
594
595
599
600
601
602
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
640
641
642
643
644
645
652
653
654
655
656
657
658
659
660
661
662
663
664
665
669
670
671
672
676
677
678
679
680
681
682
683
684
685
686
687
696
697
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
724
725
730
734
739
740
741
742
743
744
745
746
752
753
754
755
756
757
758
759
760
761
762
763
767
771
772
773
777
781
782
783
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
841
842
843
844
845
846
851
855
856
861
865
866
869
870
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
907
908
912
913
917
918
919
920
921
922
923
928
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
966
971
972
973
977
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1034
1035
1038
1039
1042
1043
1046
1047
1050
/* ... */
/* ... */
/* ... */
#include "stm32_adafruit_lcd.h"
#include "../../../Utilities/Fonts/fonts.h"
#include "../../../Utilities/Fonts/font24.c"
#include "../../../Utilities/Fonts/font20.c"
#include "../../../Utilities/Fonts/font16.c"
#include "../../../Utilities/Fonts/font12.c"
#include "../../../Utilities/Fonts/font8.c"
7 includes
/* ... */
/* ... */
/* ... */
/* ... */
/* ... */
/* ... */
#define POLY_X(Z) ((int32_t)((Points + (Z))->X))
#define POLY_Y(Z) ((int32_t)((Points + (Z))->Y))
#define NULL (void *)0
#define MAX_HEIGHT_FONT 17
#define MAX_WIDTH_FONT 24
#define OFFSET_BITMAP 54
/* ... */
/* ... */
#define ABS(X) ((X) > 0 ? (X) : -(X))
7 defines
/* ... */
/* ... */
LCD_DrawPropTypeDef DrawProp;
static LCD_DrvTypeDef *lcd_drv;
static uint8_t bitmap[MAX_HEIGHT_FONT*MAX_WIDTH_FONT*2+OFFSET_BITMAP] = {0};
/* ... */
/* ... */
static void DrawChar(uint16_t Xpos, uint16_t Ypos, const uint8_t *c);
static void FillTriangle(uint16_t x1, uint16_t x2, uint16_t x3, uint16_t y1, uint16_t y2, uint16_t y3);
static void SetDisplayWindow(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height);
/* ... */
/* ... */
/* ... */
uint8_t BSP_LCD_Init(void)
{
uint8_t ret = LCD_ERROR;
DrawProp.BackColor = 0xFFFF;
DrawProp.pFont = &Font24;
DrawProp.TextColor = 0x0000;
lcd_drv = &st7735_drv;
lcd_drv->Init();
BSP_LCD_Clear(LCD_COLOR_WHITE);
BSP_LCD_SetFont(&LCD_DEFAULT_FONT);
ret = LCD_OK;
return ret;
}{ ... }
/* ... */
uint32_t BSP_LCD_GetXSize(void)
{
return(lcd_drv->GetLcdPixelWidth());
}{ ... }
/* ... */
uint32_t BSP_LCD_GetYSize(void)
{
return(lcd_drv->GetLcdPixelHeight());
}{ ... }
/* ... */
uint16_t BSP_LCD_GetTextColor(void)
{
return DrawProp.TextColor;
}{ ... }
/* ... */
uint16_t BSP_LCD_GetBackColor(void)
{
return DrawProp.BackColor;
}{ ... }
/* ... */
void BSP_LCD_SetTextColor(uint16_t Color)
{
DrawProp.TextColor = Color;
}{ ... }
/* ... */
void BSP_LCD_SetBackColor(uint16_t Color)
{
DrawProp.BackColor = Color;
}{ ... }
/* ... */
void BSP_LCD_SetFont(sFONT *pFonts)
{
DrawProp.pFont = pFonts;
}{ ... }
/* ... */
sFONT *BSP_LCD_GetFont(void)
{
return DrawProp.pFont;
}{ ... }
/* ... */
void BSP_LCD_Clear(uint16_t Color)
{
uint32_t counter = 0;
uint32_t color_backup = DrawProp.TextColor;
DrawProp.TextColor = Color;
for(counter = 0; counter < BSP_LCD_GetYSize(); counter++)
{
BSP_LCD_DrawHLine(0, counter, BSP_LCD_GetXSize());
}for (counter = 0; counter < BSP_LCD_GetYSize(); counter++) { ... }
DrawProp.TextColor = color_backup;
BSP_LCD_SetTextColor(DrawProp.TextColor);
}{ ... }
/* ... */
void BSP_LCD_ClearStringLine(uint16_t Line)
{
uint32_t color_backup = DrawProp.TextColor;
DrawProp.TextColor = DrawProp.BackColor;;
BSP_LCD_FillRect(0, (Line * DrawProp.pFont->Height), BSP_LCD_GetXSize(), DrawProp.pFont->Height);
DrawProp.TextColor = color_backup;
BSP_LCD_SetTextColor(DrawProp.TextColor);
}{ ... }
/* ... */
void BSP_LCD_DisplayChar(uint16_t Xpos, uint16_t Ypos, uint8_t Ascii)
{
DrawChar(Xpos, Ypos, &DrawProp.pFont->table[(Ascii-' ') *\
DrawProp.pFont->Height * ((DrawProp.pFont->Width + 7) / 8)]);
}{ ... }
/* ... */
void BSP_LCD_DisplayStringAt(uint16_t Xpos, uint16_t Ypos, uint8_t *Text, Line_ModeTypdef Mode)
{
uint16_t refcolumn = 1, i = 0;
uint32_t size = 0, xsize = 0;
uint8_t *ptr = Text;
while (*ptr++) size ++ ;
xsize = (BSP_LCD_GetXSize()/DrawProp.pFont->Width);
switch (Mode)
{
case CENTER_MODE:
{
refcolumn = Xpos + ((xsize - size)* DrawProp.pFont->Width) / 2;
break;
...}case CENTER_MODE:
case LEFT_MODE:
{
refcolumn = Xpos;
break;
...}case LEFT_MODE:
case RIGHT_MODE:
{
refcolumn = - Xpos + ((xsize - size)*DrawProp.pFont->Width);
break;
...}case RIGHT_MODE:
default:
{
refcolumn = Xpos;
break;
...}default
}switch (Mode) { ... }
while ((*Text != 0) && (((BSP_LCD_GetXSize() - (i*DrawProp.pFont->Width)) & 0xFFFF) >= DrawProp.pFont->Width))
{
BSP_LCD_DisplayChar(refcolumn, Ypos, *Text);
refcolumn += DrawProp.pFont->Width;
Text++;
i++;
}while ((*Text != 0) && (((BSP_LCD_GetXSize() - (i*DrawProp.pFont->Width)) & 0xFFFF) >= DrawProp.pFont->Width)) { ... }
}{ ... }
/* ... */
void BSP_LCD_DisplayStringAtLine(uint16_t Line, uint8_t *ptr)
{
BSP_LCD_DisplayStringAt(0, LINE(Line), ptr, LEFT_MODE);
}{ ... }
/* ... */
void BSP_LCD_DrawPixel(uint16_t Xpos, uint16_t Ypos, uint16_t RGB_Code)
{
if(lcd_drv->WritePixel != NULL)
{
lcd_drv->WritePixel(Xpos, Ypos, RGB_Code);
}if (lcd_drv->WritePixel != NULL) { ... }
}{ ... }
/* ... */
void BSP_LCD_DrawHLine(uint16_t Xpos, uint16_t Ypos, uint16_t Length)
{
uint32_t index = 0;
if(lcd_drv->DrawHLine != NULL)
{
lcd_drv->DrawHLine(DrawProp.TextColor, Xpos, Ypos, Length);
}if (lcd_drv->DrawHLine != NULL) { ... }
else
{
for(index = 0; index < Length; index++)
{
BSP_LCD_DrawPixel((Xpos + index), Ypos, DrawProp.TextColor);
}for (index = 0; index < Length; index++) { ... }
}else { ... }
}{ ... }
/* ... */
void BSP_LCD_DrawVLine(uint16_t Xpos, uint16_t Ypos, uint16_t Length)
{
uint32_t index = 0;
if(lcd_drv->DrawVLine != NULL)
{
lcd_drv->DrawVLine(DrawProp.TextColor, Xpos, Ypos, Length);
}if (lcd_drv->DrawVLine != NULL) { ... }
else
{
for(index = 0; index < Length; index++)
{
BSP_LCD_DrawPixel(Xpos, Ypos + index, DrawProp.TextColor);
}for (index = 0; index < Length; index++) { ... }
}else { ... }
}{ ... }
/* ... */
void BSP_LCD_DrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2)
{
int16_t deltax = 0, deltay = 0, x = 0, y = 0, xinc1 = 0, xinc2 = 0,
yinc1 = 0, yinc2 = 0, den = 0, num = 0, numadd = 0, numpixels = 0,
curpixel = 0;
deltax = ABS(x2 - x1);
deltay = ABS(y2 - y1);
x = x1;
y = y1;
if (x2 >= x1)
{
xinc1 = 1;
xinc2 = 1;
...}
else
{
xinc1 = -1;
xinc2 = -1;
}else { ... }
if (y2 >= y1)
{
yinc1 = 1;
yinc2 = 1;
...}
else
{
yinc1 = -1;
yinc2 = -1;
}else { ... }
if (deltax >= deltay)
{
xinc1 = 0;
yinc2 = 0;
den = deltax;
num = deltax / 2;
numadd = deltay;
numpixels = deltax;
...}
else
{
xinc2 = 0;
yinc1 = 0;
den = deltay;
num = deltay / 2;
numadd = deltax;
numpixels = deltay;
}else { ... }
for (curpixel = 0; curpixel <= numpixels; curpixel++)
{
BSP_LCD_DrawPixel(x, y, DrawProp.TextColor);
num += numadd;
if (num >= den)
{
num -= den;
x += xinc1;
y += yinc1;
...}
x += xinc2;
y += yinc2;
}for (curpixel = 0; curpixel <= numpixels; curpixel++) { ... }
}{ ... }
/* ... */
void BSP_LCD_DrawRect(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height)
{
BSP_LCD_DrawHLine(Xpos, Ypos, Width);
BSP_LCD_DrawHLine(Xpos, (Ypos+ Height), Width);
BSP_LCD_DrawVLine(Xpos, Ypos, Height);
BSP_LCD_DrawVLine((Xpos + Width), Ypos, Height);
}{ ... }
/* ... */
void BSP_LCD_DrawCircle(uint16_t Xpos, uint16_t Ypos, uint16_t Radius)
{
int32_t D;
uint32_t CurX;
uint32_t CurY;
D = 3 - (Radius << 1);
CurX = 0;
CurY = Radius;
while (CurX <= CurY)
{
BSP_LCD_DrawPixel((Xpos + CurX), (Ypos - CurY), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos - CurX), (Ypos - CurY), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos + CurY), (Ypos - CurX), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos - CurY), (Ypos - CurX), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos + CurX), (Ypos + CurY), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos - CurX), (Ypos + CurY), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos + CurY), (Ypos + CurX), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos - CurY), (Ypos + CurX), DrawProp.TextColor);
BSP_LCD_SetFont(&LCD_DEFAULT_FONT);
if (D < 0)
{
D += (CurX << 2) + 6;
}if (D < 0) { ... }
else
{
D += ((CurX - CurY) << 2) + 10;
CurY--;
}else { ... }
CurX++;
}while (CurX <= CurY) { ... }
}{ ... }
/* ... */
void BSP_LCD_DrawPolygon(pPoint Points, uint16_t PointCount)
{
int16_t X = 0, Y = 0;
if(PointCount < 2)
{
return;
}if (PointCount < 2) { ... }
BSP_LCD_DrawLine(Points->X, Points->Y, (Points+PointCount-1)->X, (Points+PointCount-1)->Y);
while(--PointCount)
{
X = Points->X;
Y = Points->Y;
Points++;
BSP_LCD_DrawLine(X, Y, Points->X, Points->Y);
}while (--PointCount) { ... }
}{ ... }
/* ... */
void BSP_LCD_DrawEllipse(int Xpos, int Ypos, int XRadius, int YRadius)
{
int x = 0, y = -YRadius, err = 2-2*XRadius, e2;
float K = 0, rad1 = 0, rad2 = 0;
rad1 = XRadius;
rad2 = YRadius;
K = (float)(rad2/rad1);
do {
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/K)), (Ypos+y), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/K)), (Ypos+y), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos+(uint16_t)(x/K)), (Ypos-y), DrawProp.TextColor);
BSP_LCD_DrawPixel((Xpos-(uint16_t)(x/K)), (Ypos-y), DrawProp.TextColor);
e2 = err;
if (e2 <= x) {
err += ++x*2+1;
if (-y == x && e2 <= y) e2 = 0;
}if (e2 <= x) { ... }
if (e2 > y) err += ++y*2+1;
...}
while (y <= 0);
}{ ... }
/* ... */
void BSP_LCD_DrawBitmap(uint16_t Xpos, uint16_t Ypos, uint8_t *pBmp)
{
uint32_t height = 0;
uint32_t width = 0;
width = pBmp[18] + (pBmp[19] << 8) + (pBmp[20] << 16) + (pBmp[21] << 24);
height = pBmp[22] + (pBmp[23] << 8) + (pBmp[24] << 16) + (pBmp[25] << 24);
if(lcd_drv == &st7735_drv)
{
Ypos = BSP_LCD_GetYSize() - Ypos - height;
}if (lcd_drv == &st7735_drv) { ... }
SetDisplayWindow(Xpos, Ypos, width, height);
if(lcd_drv->DrawBitmap != NULL)
{
lcd_drv->DrawBitmap(Xpos, Ypos, pBmp);
}if (lcd_drv->DrawBitmap != NULL) { ... }
SetDisplayWindow(0, 0, BSP_LCD_GetXSize(), BSP_LCD_GetYSize());
}{ ... }
/* ... */
void BSP_LCD_FillRect(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height)
{
BSP_LCD_SetTextColor(DrawProp.TextColor);
do
{
BSP_LCD_DrawHLine(Xpos, Ypos++, Width);
...}
while(Height--);
}{ ... }
/* ... */
void BSP_LCD_FillCircle(uint16_t Xpos, uint16_t Ypos, uint16_t Radius)
{
int32_t D;
uint32_t CurX;
uint32_t CurY;
D = 3 - (Radius << 1);
CurX = 0;
CurY = Radius;
BSP_LCD_SetTextColor(DrawProp.TextColor);
while (CurX <= CurY)
{
if(CurY > 0)
{
BSP_LCD_DrawHLine(Xpos - CurY, Ypos + CurX, 2*CurY);
BSP_LCD_DrawHLine(Xpos - CurY, Ypos - CurX, 2*CurY);
}if (CurY > 0) { ... }
if(CurX > 0)
{
BSP_LCD_DrawHLine(Xpos - CurX, Ypos - CurY, 2*CurX);
BSP_LCD_DrawHLine(Xpos - CurX, Ypos + CurY, 2*CurX);
}if (CurX > 0) { ... }
if (D < 0)
{
D += (CurX << 2) + 6;
}if (D < 0) { ... }
else
{
D += ((CurX - CurY) << 2) + 10;
CurY--;
}else { ... }
CurX++;
}while (CurX <= CurY) { ... }
BSP_LCD_SetTextColor(DrawProp.TextColor);
BSP_LCD_DrawCircle(Xpos, Ypos, Radius);
}{ ... }
/* ... */
void BSP_LCD_FillPolygon(pPoint Points, uint16_t PointCount)
{
int16_t X = 0, Y = 0, X2 = 0, Y2 = 0, X_center = 0, Y_center = 0, X_first = 0, Y_first = 0, pixelX = 0, pixelY = 0, counter = 0;
uint16_t IMAGE_LEFT = 0, IMAGE_RIGHT = 0, IMAGE_TOP = 0, IMAGE_BOTTOM = 0;
IMAGE_LEFT = IMAGE_RIGHT = Points->X;
IMAGE_TOP= IMAGE_BOTTOM = Points->Y;
for(counter = 1; counter < PointCount; counter++)
{
pixelX = POLY_X(counter);
if(pixelX < IMAGE_LEFT)
{
IMAGE_LEFT = pixelX;
}if (pixelX < IMAGE_LEFT) { ... }
if(pixelX > IMAGE_RIGHT)
{
IMAGE_RIGHT = pixelX;
}if (pixelX > IMAGE_RIGHT) { ... }
pixelY = POLY_Y(counter);
if(pixelY < IMAGE_TOP)
{
IMAGE_TOP = pixelY;
}if (pixelY < IMAGE_TOP) { ... }
if(pixelY > IMAGE_BOTTOM)
{
IMAGE_BOTTOM = pixelY;
}if (pixelY > IMAGE_BOTTOM) { ... }
}for (counter = 1; counter < PointCount; counter++) { ... }
if(PointCount < 2)
{
return;
}if (PointCount < 2) { ... }
X_center = (IMAGE_LEFT + IMAGE_RIGHT)/2;
Y_center = (IMAGE_BOTTOM + IMAGE_TOP)/2;
X_first = Points->X;
Y_first = Points->Y;
while(--PointCount)
{
X = Points->X;
Y = Points->Y;
Points++;
X2 = Points->X;
Y2 = Points->Y;
FillTriangle(X, X2, X_center, Y, Y2, Y_center);
FillTriangle(X, X_center, X2, Y, Y_center, Y2);
FillTriangle(X_center, X2, X, Y_center, Y2, Y);
}while (--PointCount) { ... }
FillTriangle(X_first, X2, X_center, Y_first, Y2, Y_center);
FillTriangle(X_first, X_center, X2, Y_first, Y_center, Y2);
FillTriangle(X_center, X2, X_first, Y_center, Y2, Y_first);
}{ ... }
/* ... */
void BSP_LCD_FillEllipse(int Xpos, int Ypos, int XRadius, int YRadius)
{
int x = 0, y = -YRadius, err = 2-2*XRadius, e2;
float K = 0, rad1 = 0, rad2 = 0;
rad1 = XRadius;
rad2 = YRadius;
K = (float)(rad2/rad1);
do
{
BSP_LCD_DrawHLine((Xpos-(uint16_t)(x/K)), (Ypos+y), (2*(uint16_t)(x/K) + 1));
BSP_LCD_DrawHLine((Xpos-(uint16_t)(x/K)), (Ypos-y), (2*(uint16_t)(x/K) + 1));
e2 = err;
if (e2 <= x)
{
err += ++x*2+1;
if (-y == x && e2 <= y) e2 = 0;
}if (e2 <= x) { ... }
if (e2 > y) err += ++y*2+1;
...}
while (y <= 0);
}{ ... }
/* ... */
void BSP_LCD_DisplayOn(void)
{
lcd_drv->DisplayOn();
}{ ... }
/* ... */
void BSP_LCD_DisplayOff(void)
{
lcd_drv->DisplayOff();
}{ ... }
/* ... */
/* ... */
static void DrawChar(uint16_t Xpos, uint16_t Ypos, const uint8_t *pChar)
{
uint32_t counterh = 0, counterw = 0, index = 0;
uint16_t height = 0, width = 0;
uint8_t offset = 0;
uint8_t *pchar = NULL;
uint32_t line = 0;
height = DrawProp.pFont->Height;
width = DrawProp.pFont->Width;
*(uint16_t *) (bitmap + 2) = (uint16_t)(height*width*2+OFFSET_BITMAP);
*(uint16_t *) (bitmap + 4) = (uint16_t)((height*width*2+OFFSET_BITMAP)>>16);
*(uint16_t *) (bitmap + 10) = OFFSET_BITMAP;
*(uint16_t *) (bitmap + 18) = (uint16_t)(width);
*(uint16_t *) (bitmap + 20) = (uint16_t)((width)>>16);
*(uint16_t *) (bitmap + 22) = (uint16_t)(height);
*(uint16_t *) (bitmap + 24) = (uint16_t)((height)>>16);
offset = 8 *((width + 7)/8) - width ;
for(counterh = 0; counterh < height; counterh++)
{
pchar = ((uint8_t *)pChar + (width + 7)/8 * counterh);
if(((width + 7)/8) == 3)
{
line = (pchar[0]<< 16) | (pchar[1]<< 8) | pchar[2];
}if (((width + 7)/8) == 3) { ... }
if(((width + 7)/8) == 2)
{
line = (pchar[0]<< 8) | pchar[1];
}if (((width + 7)/8) == 2) { ... }
if(((width + 7)/8) == 1)
{
line = pchar[0];
}if (((width + 7)/8) == 1) { ... }
for (counterw = 0; counterw < width; counterw++)
{
index = (((height-counterh-1)*width)+(counterw))*2+OFFSET_BITMAP;
if((line & (1 << (width- counterw + offset- 1))) != 0)
{
bitmap[index] = (uint8_t)DrawProp.TextColor;
bitmap[index+1] = (uint8_t)(DrawProp.TextColor >> 8);
}if ((line & (1 << (width- counterw + offset- 1))) != 0) { ... }
else
{
bitmap[index] = (uint8_t)DrawProp.BackColor;
bitmap[index+1] = (uint8_t)(DrawProp.BackColor >> 8);
}else { ... }
}for (counterw = 0; counterw < width; counterw++) { ... }
}for (counterh = 0; counterh < height; counterh++) { ... }
BSP_LCD_DrawBitmap(Xpos, Ypos, bitmap);
}{ ... }
/* ... */
static void FillTriangle(uint16_t x1, uint16_t x2, uint16_t x3, uint16_t y1, uint16_t y2, uint16_t y3)
{
int16_t deltax = 0, deltay = 0, x = 0, y = 0, xinc1 = 0, xinc2 = 0,
yinc1 = 0, yinc2 = 0, den = 0, num = 0, numadd = 0, numpixels = 0,
curpixel = 0;
deltax = ABS(x2 - x1);
deltay = ABS(y2 - y1);
x = x1;
y = y1;
if (x2 >= x1)
{
xinc1 = 1;
xinc2 = 1;
...}
else
{
xinc1 = -1;
xinc2 = -1;
}else { ... }
if (y2 >= y1)
{
yinc1 = 1;
yinc2 = 1;
...}
else
{
yinc1 = -1;
yinc2 = -1;
}else { ... }
if (deltax >= deltay)
{
xinc1 = 0;
yinc2 = 0;
den = deltax;
num = deltax / 2;
numadd = deltay;
numpixels = deltax;
...}
else
{
xinc2 = 0;
yinc1 = 0;
den = deltay;
num = deltay / 2;
numadd = deltax;
numpixels = deltay;
}else { ... }
for (curpixel = 0; curpixel <= numpixels; curpixel++)
{
BSP_LCD_DrawLine(x, y, x3, y3);
num += numadd;
if (num >= den)
{
num -= den;
x += xinc1;
y += yinc1;
...}
x += xinc2;
y += yinc2;
}for (curpixel = 0; curpixel <= numpixels; curpixel++) { ... }
}{ ... }
/* ... */
static void SetDisplayWindow(uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height)
{
if(lcd_drv->SetDisplayWindow != NULL)
{
lcd_drv->SetDisplayWindow(Xpos, Ypos, Width, Height);
}if (lcd_drv->SetDisplayWindow != NULL) { ... }
}{ ... }
/* ... */
/* ... */
/* ... */
/* ... */
Includes