gdi.log
73.6 KB
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
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
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
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
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
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
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
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
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
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
Module gdi is in DEFALUT mode
Compiling plutommi\Framework\GDI\gdisrc\gd_2d_engine.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gd_2d_engine.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gd_primitive.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gd_primitive.c", line 1089: Warning: #144-D: a value of type "gd_bitblt_func" cannot be used to initialize an entity of type "const gd_replace_src_key_func"
(gd_bitblt_func)gd_null_pointer_function, /* A8 */
^
plutommi\Framework\GDI\gdisrc\gd_primitive.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gd_primitive16.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gd_primitive16.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gd_primitive24.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gd_primitive24.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gd_primitive32.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gd_primitive32.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gd_primitive32pargb.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gd_primitive32pargb.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gd_primitive8.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gd_primitive8.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdc_main.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdc_main.c", line 665: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
job->img_src =(PU8)GetImageData(img_src);
^
plutommi\Framework\GDI\gdisrc\gdc_main.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdd_main.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdd_main.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi.c", line 237: Warning: #188-D: enumerated type mixed with another type
return (allocator->min_addr <= addr_val && addr_val <= allocator->max_addr);
^
plutommi\Framework\GDI\gdisrc\gdi.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_animate.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_animate.c", line 406: Warning: #167-D: argument of type "void (*)(void *)" is incompatible with parameter of type "PsIntFuncPtr"
mmi_frm_set_single_protocol_event_handler(MSG_ID_MMI_GDI_ANIM_START_TIMER_IND, gdi_anim_start_timer_mmi_handler);
^
"plutommi\Framework\GDI\gdisrc\gdi_animate.c", line 407: Warning: #167-D: argument of type "void (*)(void *)" is incompatible with parameter of type "PsIntFuncPtr"
mmi_frm_set_single_protocol_event_handler(MSG_ID_MMI_GDI_ANIM_STOP_TIMER_IND, gdi_anim_stop_timer_mmi_handler);
^
"plutommi\Framework\GDI\gdisrc\gdi_animate.c", line 408: Warning: #167-D: argument of type "void (*)(void *)" is incompatible with parameter of type "PsIntFuncPtr"
mmi_frm_set_single_protocol_event_handler(MSG_ID_MMI_GDI_ANIM_CALLBACK_IND, gdi_anim_callback_ind_mmi_handler);
^
"plutommi\Framework\GDI\gdisrc\gdi_animate.c", line 913: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(img_src);
^
plutommi\Framework\GDI\gdisrc\gdi_animate.c: 8 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_bytestream.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_bytestream.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_font.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_font.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 1533: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(res_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 2205: Warning: #167-D: argument of type "kal_int32 *" is incompatible with parameter of type "UINT *"
f_ret = FS_Read(f_handle, header, sizeof(header), &n_read);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 2581: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(image_ptr);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 2620: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(res_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 2750: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 3224: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 3955: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(res_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 4039: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(img_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 4133: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(img_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 4400: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(img_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 4374: Warning: #550-D: variable "before_ret" was set but never used
GDI_RESULT before_ret,ret,ret1;
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 4374: Warning: #177-D: variable "ret1" was declared but never referenced
GDI_RESULT before_ret,ret,ret1;
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 5040: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "S8 *"
imgBuffer = (PU8)GetImageData(img_src);
^
"plutommi\Framework\GDI\gdisrc\gdi_image.c", line 5063: Warning: #167-D: argument of type "U8 *" is incompatible with parameter of type "const S8 *"
ret = gdi_image_gif_check_animation_file(data_ptr, is_anim);
^
plutommi\Framework\GDI\gdisrc\gdi_image.c: 18 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_9slice.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_9slice.c", line 1495: Warning: #177-D: function "gdi_image_9slice_stretch_without_alpha_blending" was declared but never referenced
static GDI_RESULT gdi_image_9slice_stretch_without_alpha_blending(
^
"plutommi\Framework\GDI\gdisrc\gdi_image_9slice.c", line 2865: Warning: #177-D: function "gdi_image_9slice_fill_with_linear_transform" was declared but never referenced
static GDI_RESULT gdi_image_9slice_fill_with_linear_transform(
^
plutommi\Framework\GDI\gdisrc\gdi_image_9slice.c: 6 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c", line 1368: Warning: #61-D: integer operation result is out of range
ABM_DECODER_WITHOUT_ALPHA(ABM_DEFAULT_PALETTE_BPP, ABM_DEFAULT_PALETTE_BPP);
^
"plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c", line 1373: Warning: #61-D: integer operation result is out of range
ABM_DECODER_ALPHA(ABM_DEFAULT_PALETTE_BPP, ABM_DEFAULT_PALETTE_BPP, ABM_DEFAULT_PALETTE_BPP);
^
"plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c", line 1763: Warning: #61-D: integer operation result is out of range
ABM_DECODER_WITHOUT_ALPHA(dst_bpp, palette_bpp);
^
"plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c", line 1769: Warning: #61-D: integer operation result is out of range
ABM_DECODER_ALPHA(dst_bpp, src_bpp, palette_bpp);
^
"plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c", line 1774: Warning: #61-D: integer operation result is out of range
ABM_DECODER_2_LAYERS(dst_bpp, src_bpp, palette_bpp);
^
plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp.c: 9 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp_v2.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp_v2.c", line 1848: Warning: #177-D: variable "ret" was declared but never referenced
GDI_RESULT ret = GDI_FAILED;
^
plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp_v2.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp_v2_internal.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_alpha_bmp_v2_internal.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_bmp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_bmp.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_decoder.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_decoder.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_dev_bmp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_dev_bmp.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_gif.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_gif.c", line 427: Warning: #550-D: variable "gdi_image_gif_palette_color_format" was set but never used
static gdi_color_format gdi_image_gif_palette_color_format = GDI_COLOR_FORMAT_16;
^
plutommi\Framework\GDI\gdisrc\gdi_image_gif.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_hwjpg_v2.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_hwjpg_v2.c", line 577: Warning: #188-D: enumerated type mixed with another type
*jpeg_cf = JPEG_YUV_FORMAT_PACKED_UYVY422;
^
"plutommi\Framework\GDI\gdisrc\gdi_image_hwjpg_v2.c", line 1151: Warning: #188-D: enumerated type mixed with another type
canvas_color_format);
^
"plutommi\Framework\GDI\gdisrc\gdi_image_hwjpg_v2.c", line 1164: Warning: #223-D: function "jpegDecSetRotation" declared implicitly
jpegDecSetRotation(g_hwjpeg_v2_decoder_hdl, JPEG_DECODE_NO_FLIP_ROTATE_CW_0);
^
plutommi\Framework\GDI\gdisrc\gdi_image_hwjpg_v2.c: 7 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_jpeg.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_jpeg.c", line 1273: Warning: #167-D: argument of type "PU8 *" is incompatible with parameter of type "void **"
gdi_free_ext_mem(&buf_p);
^
"plutommi\Framework\GDI\gdisrc\gdi_image_jpeg.c", line 632: Warning: #177-D: function "gdi_image_jpeg_get_dimension_internal" was declared but never referenced
static GDI_RESULT gdi_image_jpeg_get_dimension_internal(S32 *width, S32 *height)
^
plutommi\Framework\GDI\gdisrc\gdi_image_jpeg.c: 6 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_ktx.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_ktx.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_png.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_png.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_sequence.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_sequence.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_virtualfile.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_image_virtualfile.c", line 201: Warning: #223-D: function "app_asc_str_to_ucs2_str" declared implicitly
app_asc_str_to_ucs2_str((kal_int8*)ext_name, (kal_int8*)(gdi_image_ext_name[image_buffer[0]]));
^
plutommi\Framework\GDI\gdisrc\gdi_image_virtualfile.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_image_wbmp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_image_wbmp.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_imgdec.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec.c", line 516: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec.c", line 669: Warning: #550-D: variable "flag" was set but never used
U32 flag = 0;
^
plutommi\Framework\GDI\gdisrc\gdi_imgdec.c: 6 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c", line 857: Warning: #167-D: argument of type "S32 *" is incompatible with parameter of type "U32 *"
GET_U32(&src, &r_mask, dec);
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c", line 858: Warning: #167-D: argument of type "S32 *" is incompatible with parameter of type "U32 *"
GET_U32(&src, &g_mask, dec);
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c", line 859: Warning: #167-D: argument of type "S32 *" is incompatible with parameter of type "U32 *"
GET_U32(&src, &b_mask, dec);
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c", line 1029: Warning: #177-D: variable "c" was declared but never referenced
U32 c;
^
"plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c", line 271: Warning: #177-D: function "GET_U24" was declared but never referenced
static void GET_U24(U8 **SRC, U32 *X, gdi_imgdec_bmp_struct *dec)
^
plutommi\Framework\GDI\gdisrc\gdi_imgdec_bmp.c: 9 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_imgdec_bytestream.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_imgdec_bytestream.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_imgdec_gif.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_imgdec_gif.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_imgdec_resizer.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_imgdec_resizer.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_imgdec_wbmp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_imgdec_wbmp.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_ipp.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_ipp.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_layer.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 1171: Warning: #14-D: extra text after expected end of preprocessing directive
#endif __GDI_MEMORY_PROFILE_2__
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 1938: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 1978: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2011: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2115: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_PAIRED_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2176: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_PAIRED_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2236: Warning: #177-D: variable "old_cf" was declared but never referenced
gdi_color_format old_cf = gdi_act_layer->cf;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2579: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2621: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_PAIRED_CLIP);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2643: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2864: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 2896: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3237: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 4035: Warning: #223-D: function "wfcDestroyAndCreateSourceFromImage" declared implicitly
*src_handle = wfcDestroyAndCreateSourceFromImage(gdi_lcd_v2_dev,ctx_handle,*src_handle,(WFCHandle)&image,NULL);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 6613: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 6726: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 6798: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 7021: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 7093: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 7170: Warning: #550-D: variable "addr" was set but never used
GDI_TRC_PRINT_LR(GDI_TRC_LAYER);
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 7354: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 8823: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 8885: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 8920: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 9464: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 9744: Warning: #550-D: variable "callback" was set but never used
gdi_callback_struct callback;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 941: Warning: #550-D: variable "gdi_palette_used" was set but never used
static int gdi_palette_used;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3348: Warning: #177-D: function "gdi_layer_flatten_nb_init_state" was declared but never referenced
static void gdi_layer_flatten_nb_init_state(
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3626: Warning: #177-D: function "gdi_layer_govl_nb_finish_hisr_callback" was declared but never referenced
static void gdi_layer_govl_nb_finish_hisr_callback(void *unused_cbparam)
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3090: Warning: C3017W: ty may be used before being set
S32 tx, ty;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3090: Warning: C3017W: tx may be used before being set
S32 tx, ty;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3168: Warning: C3017W: ty may be used before being set
S32 tx, ty;
^
"plutommi\Framework\GDI\gdisrc\gdi_layer.c", line 3168: Warning: C3017W: tx may be used before being set
S32 tx, ty;
^
plutommi\Framework\GDI\gdisrc\gdi_layer.c: 37 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_lcd.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_lcd.c", line 925: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_lcd.c", line 981: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_lcd.c", line 1856: Warning: #550-D: variable "lr" was set but never used
kal_uint32 lr = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_lcd.c", line 2122: Warning: #550-D: variable "result" was set but never used
DisplayResultEnum result;
^
plutommi\Framework\GDI\gdisrc\gdi_lcd.c: 8 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_lfs.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_lfs.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_mutex.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_mutex.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_primitive.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_primitive.c", line 1553: Warning: #177-D: variable "j" was declared but never referenced
S32 i,j;
^
plutommi\Framework\GDI\gdisrc\gdi_primitive.c: 5 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_task.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
plutommi\Framework\GDI\gdisrc\gdi_task.c: 4 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\gdi_util.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 1209: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 2127: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 2352: Warning: #550-D: variable "decode_ms" was set but never used
S32 start_time = 0, decode_ms = 0;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 2807: Warning: #550-D: variable "ret" was set but never used
GDI_RESULT ret = GDI_FAILED;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 2828: Warning: #550-D: variable "ret" was set but never used
GDI_RESULT ret = GDI_FAILED;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 2849: Warning: #550-D: variable "ret" was set but never used
GDI_RESULT ret = GDI_FAILED;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 2871: Warning: #550-D: variable "ret" was set but never used
GDI_RESULT ret = GDI_FAILED;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 1484: Warning: C3017W: resizer_quality may be used before being set
RESIZER_QUALITY_ENUM resizer_quality;
^
"plutommi\Framework\GDI\gdisrc\gdi_util.c", line 1483: Warning: C3017W: resizer_mode may be used before being set
RESIZER_MODE_ENUM resizer_mode;
^
plutommi\Framework\GDI\gdisrc\gdi_util.c: 13 warnings, 0 errors
Compiling plutommi\Framework\GDI\gdisrc\ui_buffer.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi\Framework\GDI\gdisrc\ui_buffer.c", line 270: Warning: #177-D: function "ui_buffer_take_mutex" was declared but never referenced
static void ui_buffer_take_mutex(void)
^
"plutommi\Framework\GDI\gdisrc\ui_buffer.c", line 302: Warning: #177-D: function "ui_buffer_give_mutex" was declared but never referenced
static void ui_buffer_give_mutex(void)
^
plutommi\Framework\GDI\gdisrc\ui_buffer.c: 5 warnings, 0 errors
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "MMI_ON_HARDWARE_P SETL {TRUE}" -pd "__EMS__ SETL {TRUE}" -pd "SIM_APP_TOOLKIT SETL {TRUE}" -pd "TETRIS_GAME_APP SETL {TRUE}" -pd "CM_APPLICATION_ENABLE SETL {TRUE}" -pd "MESSAGES_APPLICATION SETL {TRUE}" -pd "__UCS2_ENCODING SETL {TRUE}" -pd "CELLBROADCAST_APP SETL {TRUE}" -pd "__CB__ SETL {TRUE}" -pd "VM_SUPPORT SETL {TRUE}" -pd "SHORTCUTS_APP SETL {TRUE}" -pd "T9LANG_English SETL {TRUE}" -pd "T9LANG_Chinese SETL {TRUE}" -pd "T9LANG_Spanish SETL {TRUE}" -pd "T9LANG_French SETL {TRUE}" -pd "T9LANG_German SETL {TRUE}" -pd "T9LANG_Italian SETL {TRUE}" -pd "EMS_LITTLE_ENDIAN SETL {TRUE}" -pd "EMS_MEM_MANAGEMENT SETL {TRUE}" -pd "T9ALPHABETIC SETL {TRUE}" -pd "T9CHINESE SETL {TRUE}" -pd "MMS_VIRTUAL_FILE_SUPPORT SETL {TRUE}" -pd "COMPILER_SUPPORTS_LONG=1 SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/gdi.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\gdi\gdi_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/gdi.lib is updated
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdc_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdd_main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_animate.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_bytestream.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_font.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_9slice.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_alpha_bmp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_alpha_bmp_v2.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_alpha_bmp_v2_internal.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_bmp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_decoder.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_dev_bmp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_gif.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_hwjpg_v2.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_jpeg.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_ktx.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_png.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_sequence.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_virtualfile.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_image_wbmp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_imgdec.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_imgdec_bmp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_imgdec_bytestream.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_imgdec_gif.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_imgdec_resizer.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_imgdec_wbmp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_ipp.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_layer.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_lcd.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_lfs.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_mutex.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_primitive.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_task.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gdi_util.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_2d_engine.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_primitive.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_primitive16.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_primitive24.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_primitive32.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_primitive32pargb.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\gd_primitive8.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\gdi_dep\ui_buffer.det
Processing gdc_main.det gdd_main.det gdi_animate.det gdi_bytestream.det gdi_font.det gdi_image.det gdi_image_9slice.det gdi_image_alpha_bmp.det gdi_image_alpha_bmp_v2.det gdi_image_alpha_bmp_v2_internal.det gdi_image_bmp.det gdi_image_decoder.det gdi_image_dev_bmp.det gdi_image_gif.det gdi_image_hwjpg_v2.det gdi_image_jpeg.det gdi_image_ktx.det gdi_image_png.det gdi_image_sequence.det gdi_image_virtualfile.det gdi_image_wbmp.det gdi_imgdec.det gdi_imgdec_bmp.det gdi_imgdec_bytestream.det gdi_imgdec_gif.det gdi_imgdec_resizer.det gdi_imgdec_wbmp.det gdi_ipp.det gdi_layer.det gdi_lcd.det gdi_lfs.det gdi_mutex.det gdi_primitive.det gdi_task.det gdi_util.det gd_2d_engine.det gd_primitive.det gd_primitive16.det gd_primitive24.det gd_primitive32.det gd_primitive32pargb.det gd_primitive8.det ui_buffer.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'