TOPWELL_GPRS.mak
183 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
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
#
# Copyright Statement:
# ---------------------------
# This software/firmware and related documentation ("MediaTek Software") are
# protected under relevant copyright laws. The information contained herein
# is confidential and proprietary to MediaTek Inc. and/or its licensors.
# Without the prior written permission of MediaTek inc. and/or its licensors,
# any reproduction,modification, use or disclosure of MediaTek Software, and
# information contained herein, in whole or in part, shall be strictly prohibited.
#
# MediaTek Inc.(C)2011.All rights reserved.
#
# BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND
# AGREES THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK
# SOFTWARE") RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED
# TO RECEIVER ON AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL
# WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
# NONINFRINGEMENT. NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER
# WITH RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY,
# INCORPORATED IN, OR SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER
# AGREES TO LOOK ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CLAIM RELATING
# THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES THAT IT IS RECEIVER'S SOLE
# RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
# CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR
# ANY MEDIATEK SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO
# CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND
# EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE LIABILITY WITH RESPECT
# TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,AT MEDIATEK'S OPTION,
# TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,OR REFUND ANY SOFTWARE
# LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO MEDIATEK FOR SUCH MEDIATEK
# SOFTWARE AT ISSUE.
#
# *************************************************************************
# Generated at 2013-02-20 14:33:38
include make\TOPWELL_RES.mak
#引用资源文件
SWLA_RESERVE_SPACE = NONE # Value:NONE
# Description:Disable this feature: not guarantee SWLA has free space
# Value:YES
# Description:reserve minimum space (12K bytes) for SWLA
# Value:YES_WO_ADDON
# Description:reserve minimum space for SWLA and disable ADDON
WAP_MMS_FEATURES = NONE # Description:
# Option Values:
# NONE: Set value to NONE to modify settings of WAP and MMS individually, with more flexibility.
# If this is NOT NONE, then following configuration macros will NOT impact project configuration.
# 1. OBIGO_FEATURE
# 2. XYSSL
# 3. UNIFIED_PUSH_FEATURES
# 4. MMS_FEATURES
# FULL: Enable full-version of WAP and MMS, including obigo security.
# UTRA_SLIM: Browser feature will be same as OBIGO_Q03C_SLIM.
# MMS feature will be same as LOW_TIER_SLIM
# Obigo security will be OFF.
# UTRA_SLIM_SECURITY: ULTRA_SLIM feature set with HTTPS support using XYSSL.
KARAOKE_SUPPORT = FALSE # Description:
# Option Values:
# TRUE:Enable this feature.
# FALSE:Disable this feature.
DCM_COMPRESSION_MAUI_INIT = TRUE # Description:
# Option Values:
# TRUE:Enable this feature.
# FALSE:Disable this feature.
BT_PRODUCT_LINE = NONE #
FACTORY_BOOT_MODE_SUPPORT = TRUE # Description:
# TRUE:The factory boot mode is enabled and the META tool can be used to calibrate / tune the handset.
# FALSE:The factory boot mode is disabled and the META tool cannot be used to calibrate / tune the handset.
BT_SSP_SUPPORT = TRUE # Description:
# FALSE: By Default, SSP is enabled and therefore it is set to FALSE. This is a important feature on medium and high end projects.
# But on SLIM project, it can be set to TRUE to make it disable
# TRUE: Setting it TRUE means user don't want BT SSP feature. Most of the SLIM projects don't require this feature.
VOICE_CHANGER_SUPPORT = FALSE # Description:
# To turn on voice changer post process feature
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
BT_SPEAKER_SUPPORT = FALSE # TRUE, FALSE
XYSSL_SUPPORT = TRUE # TRUE, FALSE
# ------------------------------ ARM
RVCT_VERSION = V31
# Description:
# ARM RVCT Version
# Option Values:
# V31: ARM RVCT Version 3.1
# V22: ARM RVCT Version 2.2
# Switch-ability:
# [Any] -> [Any]
RVCT_PARTIAL_LINK = TRUE
# Description:
# True:turn on partial link; False:turn off partial link
# Option Values:
# TRUE: In linking process, try normal link firstly, if OOM, try partiallink next
# FALSE: In linking process, normal link only
# Switch-ability:
# [Any] -> [Any]
FEATURE_OVERLOAD = FALSE
# Description:
# Enabling this option will allow a project configured with more features than its physical constraints. This option just bypass some building error checkings and generate the .bin. However, the .bin is still can NOT work in target if the physical constrain
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
# ------------------------------ HW and Project
BOARD_VER = KEYTAK61D_GB_11C_BB
# Description:
# Name of the PCB or EVB.
# Option Values:
# N/A
# Switch-ability:
# Non-switchable
SUB_BOARD_VER = PCB01
# Description:
# Sub-name of the PCB or EVB.
# Option Values:
# N/A
# Switch-ability:
# Non-switchable
DCM_COMPRESSION_SUPPORT = TRUE
# Description:
# Dynamic code management with compression support.
# Certain codes would be put on flash in compressed form and decompressed into RAM to execute.
# Option Values:
# TRUE: Enable DCM with compression support
# FALSE: Disable DCM with compression support
# Switch-ability:
# [Any] -> [Any]
DCM_COMPRESSION_AUDIO_BT = FALSE
# Description:
# To enable DCM with compression mechanism for BT application.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
DCM_COMPRESSION_AUDIO_CODEC = TRUE
# Description:
# To enable DCM with compression mechanism for audio codec.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
DCM_COMPRESSION_AUDIO_EFFECT = TRUE
# Description:
# To enable DCM with compression mechanism for audio post-processing.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
CHIP_VERSION_CHECK = TRUE
# Description:
# Enable/Disable HW ID check and supported in all projects with all current online project
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
PHONE_TYPE = BAR
# Description:
# Phone type is clamshell, bar or slide type.
# Option Values:
# CLAMSHELL: Clamshell phone
# BAR: BAR type phone
# SLIDE: Slide type phone
# Switch-ability:
# [Any] -> [Any]
FM_RADIO_I2S_PATH = TRUE
# Description:
# Used to determine the audio path of FM radio
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
FM_RADIO_RDS_SUPPORT = FALSE
# Description:
# To enable or disable FM RDS function.It has no impact on the chips which don't support RDS and some other scenarios this feature is useless(Like FTE MMI).
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature(default value)
# Switch-ability:
# TRUE -> FALSE
MULTI_LEVEL_BACKLIGHT_SUPPORT = FALSE
# Description:
# To specify do we support multi-level backlight support (Multi-level means more than 5 levels can be adjusted by users)
# Option Values:
# TRUE: Turn on multi-level backlight adjustment (more than 5 levels)
# FALSE: Turn off multi-level backlight adjustment
# Switch-ability:
# FALSE -> TRUE
DRV_BATTERY_EXIST_DETECTION = FALSE
# Description:
# To check battery exist is needed to check or not
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# [Any] -> [Any]
PROXIMITY_SENSOR = NONE
# Description:
# The feature is to specify proximity sensor support
# If proximity sensor is supported, then the sensor type is specified
# The proximity sensor is an external device
# Option Values:
# CM3623:
# NONE:
# Switch-ability:
# NONE -> CM3623
MOTION_SENSOR_SUPPORT = NONE
# Description:
# To enable motion sensor support.
# And Describe which sensor chip in use.
# Option Values:
# KXP74_SPI: moiton sensor is KXP74 and using SPI interface.
# KXP84_I2C: motion sensor is KXP84 and using I2C interface.
# KXP84_SPI: motion sensor is KXP84 and using SPI interface.
# KXTF9_I2C: motion sensor is KXTF9 and using I2C interface.
# BMA220_I2C: motion sensor is BMA220 and using I2C interface.
# MMA7455_I2C: motion sensor is MMA7455 and using I2C interface.
# MMA7660_I2C: motion sensor is MMA7660 and using I2C interface.
# MXC6202_I2C: motion sensor is MXC6202 and using I2C interface.
# MC3230_I2C: motion sensor is mc3230 and using i2c interface.
# NONE: Disable this feature
# Switch-ability:
# N/A
JOGBALL_SUPPORT = NONE
# Description:
# Support Jogball or OFN (Optical Finger Navigation) to replace navigation keys
# Option Values:
# JOGBALL: HW support for Jogball
# OFN: HW support for OFN
# NONE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
SLT_ENHANCE = NONE
# Description:
# feature option for SLT2.0
# Option Values:
# N/A
# Switch-ability:
# Non-switchable
INTERNAL_ANTENNAL_SUPPORT = TRUE
# Description:
# if FM HW support S.Ant, this option can be set to true or false, or it should be set to false
# Option Values:
# FALSE: only support long antenna
# TRUE: support both long and short antenna
# Switch-ability:
# TRUE -> FALSE
HIGH_VCHG_ADAPTIVE_CHARGE_CURRENT_SUPPORT = FALSE
# Description:
# To support High voltage charger with adaptive charge current
# Option Values:
# TRUE: Turn On
# FALSE: Turn off
# Switch-ability:
# TRUE -> FALSE
NOT_BENEFIT_FROM_BATTERY_CONSUMPTION_OPTIMISATION = FALSE
# Description:
# FALSE: UE benefits from battery consumption optimisation mechanism from network, e.g. mobile phone # TRUE: UE doesn't benefit from battery consumption optimisation mechanism from network, e.g. data card
# Option Values:
# TRUE: UE doesn't benefit from battery consumption optimisation mechanism from network, e.g. data card
# FALSE: UE benefits from battery consumption optimisation mechanism from network, e.g. mobile phone
# Switch-ability:
# N/A
SIM_SWTICH_CONTROLLER_MT6306 = FALSE
# Description:
# enable MT6306 4SIM feature
# Option Values:
# TRUE: enable 4SIM controller for MT6306
# FALSE: disable 4SIM controller for MT6306
# Switch-ability:
# N/A
SIM_SWTICH_CONTROLLER_MT6302 = FALSE
# Description:
# enable MT6302 4SIM feature
# Option Values:
# TRUE: enable 4SIM controller for MT6302
# FALSE: disable 4SIM controller for MT6302
# Switch-ability:
# N/A
# ------------------------------ LCD
LCD_MODULE = KEYTAK61D_GB_11C_LCM
# Description:
# In order to select the folders of LCD module of specified project, please set the option as the folder name in custom folder.
# Option Values:
# NA:
# Switch-ability:
# Non-switchable
DISPLAY_TYPE = COLOR
# Description:
# Support lcmmi to select BW/COLOR image
# Option Values:
# COLOR: .
# BW: .
# Switch-ability:
# Non-switchable
MAIN_LCD_SIZE = 240X320 # Description:
# Add a MAIN_LCD_SIZE compile option in make file
# 320X240: The main lcd size is 320X240
# 240X320: The main lcd size is 240X320
# 128X128: The main lcd size is 128X128
# 96X64: The main lcd size is 96X96
# 360X640: The main lcd size is 360X640
# 128X160: The main lcd size is 128X160
# 176X220: The main lcd size is 176X220
# 240X400: The main lcd size is 240X400
# 320X480: The main lcd size is 320X480
# Switch-ability:
# 128X128 -> 128X160
MAIN_LCM_PHYSICAL_SIZE = BY_LCD_SIZE_SETTING
# Description:
# This is the physical size of attached main LCM, MAIN_LCD_SIZE is MMI size actually
# Option Values:
# 320x240:
# 240x320:
# 128X128:
# 96X64:
# 360X640:
# 128X160:
# 176X220:
# 240x400:
# 320x480:
# BY_LCD_SIZE_SETTING:
# Switch-ability:
# [Any] -> [Any]
MAIN_MEDIA_LAYER_BITS_PER_PIXEL = DEFAULT
# Description:
# If set this option to 24, Image Viewer, Slide Show, Photo Editor, Image Tile, Wallpaper would use 24-bit color format layer to show image. The image quality would be better.
# Option Values:
# 24: multimedia app support 24 bits LCD display
# DEFAULT:
# Switch-ability:
# [Any] -> [Any]
SYNC_LCM_METHOD = BY_CHIP
# Description:
# Specifies either HW or SW sync LCM method. Will pick either __SYNC_LCM_HW_SUPPORT__ or __SYNC_LCM_SW_SUPPORT__ option. If user is not knowledgeable with the chip capability, just set it as SYNC_LCM_METHOD = BY_CHIP.
# Option Values:
# N/A
# Switch-ability:
# [Any] -> [Any]
SUB_LCD_SIZE = NONE
# Description:
# To support enable SubLCD, customer can set size to NONE and 128X128.
# Option Values:
# NONE: Disable this feature
# 128X128: temporary value
# Switch-ability:
# Non-switchable
SUB_LCM_PHYSICAL_SIZE = BY_LCD_SIZE_SETTING
# Description:
# This is the physical size of attached sub LCM if any, SUB_LCD_SIZE is MMI size actually
# Option Values:
# 320x240:
# 240x320:
# 128X128:
# 96X64:
# 360X640:
# 128X160:
# 176X220:
# 240x400:
# 320x480:
# BY_LCD_SIZE_SETTING:
# Switch-ability:
# [Any] -> [Any]
LCM_ROTATE_SUPPORT = FALSE
# Description:
# enable/disable use LCM HW's rotation,
# Turn on it when MT6228/29 platform and use TV-out
# Option Values:
# TRUE: LCM support rotate
# FALSE: LCM does not support rotate
# Switch-ability:
# [Any] -> [Any]
SYNC_LCM_SUPPORT = TRUE
# Description:
# COMPILER OPTION FOR SUPPORTING SYNC MODE LCM
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
TOUCH_PANEL_SUPPORT = NONE
# Description:
# Touch panel integration
# Option Values:
# CTP_SITRONIX_ST1232_FAKE_MULTIPLE: support Sitroniz ST1232 capacitence touch panel controller -- fake multiple touch
# NONE: Not support touch panel
# CTP_CYPRESS_TMA340_TRUE_MULTIPLE: support cypress TMA340 capacitence touch panel controller -- true multiple touch
# CTP_NOVATEK_NT11001_FAKE_MULTIPLE: support Novatek NT11001 capacitence touch panel controller -- fake multiple touch
# CTP_ITE_7250AFN_FAKE_MULTIPLE: support ITE 7250AFN capacitence touch panel controller -- fake multiple touch
# TP_INTERNAL: use Internal AUXADC to implement touch panel
# CTP_FOCALTEK_FT5206_TRUE_MULTIPLE: support FocalTech FT5206 capacitence touch panel controller -- true multiple touch
# CTP_GOODIX_GT818_TRUE_MULTIPLE: Support Goodix GT818 capacitence touch panel controller
# CTP_GOODIX_GT868_TRUE_MULTIPLE: Support Goodix GT868 capacitence touch panel controller
# Switch-ability:
# CTP_GOODIX_GT818_TRUE_MULTIPLE -> CTP_GOODIX_GT868_TRUE_MULTIPLE
# CTP_GOODIX_GT818_TRUE_MULTIPLE -> NONE
# CTP_GOODIX_GT818_TRUE_MULTIPLE -> TP_INTERNAL
# CTP_GOODIX_GT868_TRUE_MULTIPLE -> CTP_GOODIX_GT818_TRUE_MULTIPLE
# CTP_GOODIX_GT868_TRUE_MULTIPLE -> NONE
# CTP_GOODIX_GT868_TRUE_MULTIPLE -> TP_INTERNAL
# NONE -> CTP_GOODIX_GT818_TRUE_MULTIPLE
# NONE -> CTP_GOODIX_GT868_TRUE_MULTIPLE
# NONE -> TP_INTERNAL
# TP_INTERNAL -> CTP_GOODIX_GT818_TRUE_MULTIPLE
# TP_INTERNAL -> CTP_GOODIX_GT868_TRUE_MULTIPLE
# TP_INTERNAL -> NONE
TOUCH_PANEL_SHORTCUT_SUPPORT = FALSE
# Description:
# Support touch panel shortcut functionality
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ MMI
MMI_VERSION = PLUTO_MMI
# Description:
# It's MMI version type control
# For example:
# MMI_VERSION=PLUTO_MMI (It's an internal or MP at customer side project)
# MMI_VERSION=XXX_MMI (It's a MP at MTK side project)
# Option Values:
# NEPTUNE_MMI:
# COSMOS_MMI:
# PLUTO_MMI:
# EMPTY_MMI:
# Switch-ability:
# [Any] -> [Any]
VENUS_MMI = NONE
# Description:
# Enable Venus UI Engine and related Fancy Apps
# Option Values:
# NONE: Disable venus ui engine
# VENUS_LEVEL1: Enable venus ui engine
# Switch-ability:
# [Any] -> [Any]
FINGER_TOUCH_SUPPORT = NONE
# Description:
# it needs to covert to this macro
# __MMI_FTE_SUPPORT__
# for using in C program
# Option Values:
# NONE: Not support finger touch
# FTE: Enable finger touch
# Switch-ability:
# FTE -> NONE
VM_CONCURRENCE = EXCLUSIVE
# Description:
# To set the concurrence setting(CONCURRENT/EXCLUSIVE) for VMs(Java/MRE)
# Option Values:
# CONCURRENT: JAVA can be concurrent with MRE
# EXCLUSIVE: JAVA can NOT be concurrent with MRE
# Switch-ability:
# N/A
# ------------------------------ Input and Language
HAND_WRITING = NONE
# Description:
# Enable Which Third Party Handwriting Engine
# Option Values:
# MMI_HANWANG_DEMO:
# MMI_DECUMA_DEMO:
# NONE: No hand writing support
# MMI_DECUMA:
# MMI_PENPOWER_DEMO:
# MMI_HANWANG:
# MMI_PENPOWER:
# MMI_GUOBI_HW_STANDARD: Guobi Handwriting standard lib support
# MMI_GUOBI_HW_SC_SLIM: Guobi Handwriting Slim lib support.
# Switch-ability:
# [Any] -> [Any]
#INPUT_METHOD = NONE
# Description:
# Add a INPUT_METHOD compile option in make file
# Option Values:
# MMI_T9: T9 IME support
# NONE: No input method support
# MMI_ZI_V7: ZI V7 IME support
# MMI_KOMOXO:
# MMI_T9_V7_4:
# MMI_CSTAR_V2: CSTAR IME support
# MMI_CSTAR_V2_DEMO:
# MMI_KOMOXO_DEMO:
# MMI_ZI: ZI IME supoort
# MMI_ZI_V6: ZI V6 IME support
# Switch-ability:
# [Any] -> [Any]
MMI_IME_V3_SUPPORT = FALSE
# Description:
# this is for input method version
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
KEYPAD_TYPE = NORMAL_KEYPAD
# Description:
# To set keypad type
# Option Values:
# REDUCED_KEYPAD:
# EXTEND_QWERTY_KEYPAD:
# NORMAL_KEYPAD:
# QWERTY_KEYPAD:
# Switch-ability:
# Non-switchable
# ------------------------------ Application
ALIPAY_SUPPORT = FALSE
# Description:
# -
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
BACKGROUND_CALL_SUPPORT = FALSE
# Description:
# Background call feature allows end users to launch MMI applications during in-call. End users can enter MMI main menu from in-call option menu. Background call feature also allows end user to continue the MMI application launched before incoming call. Aft
# Option Values:
# TRUE: Enable background call feature
# FALSE: Disable background call feature
# Switch-ability:
# [Any] -> [Any]
MMS_FEATURES = NONE
# Description:
# Define features set of MMS solution
# Option Values:
# SLIM: SLIM Feature set of MMS-V02
# NONE: In case MMS_SUPPORT is NONE
# FULL: FULL Feature set of MMS-V02
# LOW_TIER_SLIM: To enable low tier UI for slim project
# Switch-ability:
# FULL -> SLIM
# SLIM -> FULL
# [Any] -> [Any]
MMS_SUPPORT = NONE
# Description:
# Determine MMS solution
# Option Values:
# OBIGO_Q03C_MMS_V02: MMS-V02 is supported
# NONE: MMS Feature is not supported
# Switch-ability:
# OBIGO_Q03C_MMS_V02 -> NONE
CLOG_SIM_SYNC_SUPPORT = FALSE
# Description:
# Turn on/Off CallLog SIM Sync feature, when turn on it, Calllog will read the call log data in SIM card when power on if find the SIM card is changed or when being notified that SIM card is refreshed by SAT, and also wiill write the latest call log in phone storage to the SIM card when each normal power off such as longpress END key
# Option Values:
# TRUE: Turn on it
# FALSE: Turn off it
# Switch-ability:
# TRUE -> FALSE
CBM_CONNECTION_MANAGER_SUPPORT = FALSE
# Description:
# This feature option is used to turn on/off Connection Manager (CNMGR).
#
# CNMGR counts the sent/received data size of dial-up and local bearers. It also counts the connection time of current activated bearer. The information provided by CNMGR is listed below.
# - The sent/received data size of last connection
# - The connection time of last connection
# - The sent/received data size of all connections
# - The connection time of all connections
# - The sent/received data size of current activated connection
# - The connection time of current activated connection
#
# The second functionality of CNMGR is user can disconnect connection from CNMGR Application UI.
#
# The third functionality of CNMGR is supporting 3G Fast Dormancy (FD) feature. CNMGR monitors connection status and send FD request if no data transmission continues for a while.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
CLOUD_SUPPORT = NONE
# Description:
# cloud related features
# Option Values:
# NONE: Disable this feature
# LIB: library release of sso.mak
# SOURCE: source release for internal projects
# Switch-ability:
# N/A
CARDAV_SUPPORT = FALSE
# Description:
# This will enable carddav protocol
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
VCARD_CLOUD_SUPPORT = FALSE
# Description:
# VCARD_CLOUD_SUPPORT = TRUE
# Description:
# To enable Contact backup restore.
# Option Values:
# TRUE: Support Contact backup restore.
# FALSE: Disable Contact backup restore.
# Switch-ability:
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
KEY_TONE_DETECTION = FALSE
# Description:
# while in call, with this feature, we could analyze the intput number (0~9 , * ,#) by the tone passed in by the other side.
# Currently mmi application "Auto Answer Machine" depends on this option.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# [Any] -> [Any]
DA_MEMORY_CUT_SUPPORT = FALSE
# Description:
# Reduce the data account memory.
# Option Values:
# TRUE: Enable memory cut.
# FALSE: Disable memory cut.
# Switch-ability:
# [Any] -> [Any]
DA_SMART_SELECTION_SUPPORT = TRUE
# Description:
# Give a chance to close smart selection feature to slim project
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
DCM_COMPRESSION_MMI_SUPPORT = DCM_AP_ONLY
# Description:
# To enable DCM with compression mechanism for mmi ap.
# Option Values:
# DCM_AP_ONLY: Enable mmi ap to use DCM锛宻hould Only set in 32+32/16+32 segment
# NONE: Disable this feature锛宨n other segment above 32+32 should set NONE
# Switch-ability:
# N/A
DCM_COMPRESSION_MMI_POOL_A = FALSE
# Description:
# To enable DCM with compression mechanism for Cosmos app: 'BROWSER', 'CALC', 'CALLSET', 'CAMCO', 'CLNDR', 'CLOCK', 'FMRADIO', 'SOUNDSET', 'COSMOS_EM', 'COSMOS_FM'.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
DCM_COMPRESSION_MMI_POOL_B = FALSE
# Description:
# To enable DCM with compression mechanism for Cosmos app: 'COSMOS_DTCNT', 'MOT', 'SECSET'.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
DCM_COMPRESSION_MMI_POOL_C = FALSE
# Description:
# To enable DCM with compression mechanism for Cosmos app: 'BAIDUSEARCH', 'BOOTUP', 'SETTING', 'SOUNDREC'.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
DOWNLOADABLE_THEME = FALSE
# Description:
# Theme is to change MMI look and feel easily;
# Capable of changing look and feel of the phone by downloaded theme file. Can: Change Color/Change Image/Change Tone;
# Dynamically downloaded on phone
# Option Values:
# TRUE: Enable downloadable theme feature
# FALSE: Disable downloadable theme feature
# Switch-ability:
# [Any] -> [Any]
DLT_ALWAYS_LOAD_BUFFER_SIZE = 0
# Description:
# The basic idea is to load images into a global buffer so as to reduce file system access; the loading maybe of three types:
# one is "LOAD_ALWAYS images that are always loaded. Ex: Images that are part of the base control set are frequently accessed and can
# Option Values:
# NA: For downloadable theme feature, define memory buffer (in KByte) for theme attributes. It is for performance acceleration. Some theme attributes will always be loaded to this buffer.
# Switch-ability:
# [Any] -> [Any]
DLT_LOAD_ON_DEMAND_BUFFER_SIZE = 0
# Description:
# The basic idea is to load images into a global buffer so as to reduce file system access; the loading maybe of three types:
# one is "LOAD_ONDEMAND images that are loaded as need arises. Images that may be frequently accessed from a screen like matrix menu
# Option Values:
# NA: For downloadable theme feature, define memory buffer (in KByte) for theme attributes. It is for performance acceleration. Theme attributes will be loaded on demand to this buffer.
# Switch-ability:
# [Any] -> [Any]
DRM_VERSION = NONE
# Description:
# Provides information about DRM version supported
# Option Values:
# NONE: Value will be NONE if DRM is not supported.
# V01: If DRM 1.0 is supported, version will be V01
# Switch-ability:
# N/A
DRM_SUPPORT_DB_SIZE = NONE
# Description:
# Provides information about number of licenses which can be supported in license database.
# Option Values:
# 256: Can support upto 256 licenses
# 512: Can support upto 512 licenses
# 1024: Can support upto 1024 licenses
# 64: Can support upto 64 licenses
# NONE: Should be NONE if DRM SUPPORT is not present.
# Switch-ability:
# Non-switchable
DRM_SUPPORT_SCAN_DISK = FALSE
# Description:
# DRM supports scan disk or not
# Option Values:
# FALSE: Scan disk is not supported.
# TRUE: Scan disk is supported
# Switch-ability:
# N/A
EMAIL_SUPPORT = NONE
# Description:
# from W08.01 MAUI/07B is 2.0; before is 1.0
# Option Values:
# ALL: Enable Email (include SMTP/POP3/IMAP4)
# NONE: Disable Email
# Switch-ability:
# N/A
GEMINI = 2
# Description:
# To identify if this project uses a "Single chip-dual SIM" solution.
# Option Values:
# FALSE: Disable this feature
# 2: Enable 2 SIMs, single talk.
# 3: Enable 3 SIMs, single talk.
# 4: Enable 4 SIMs, single talk.
# Switch-ability:
# Non-switchable
SENDKEY_MODE = SENDKEY2_SUPPORT
# Description:
# Send key mode.
# SINGLE_KEY_SELECT_MENU : only one sendkey will popup a menu to select dail card1 or card2
# SENDKEY2_SUPPORT : two sendkeys the one is for card1 and the other is for card2
# LSK_KEYSEND2_IN_ONE: only one sendkey and is for card1 dial ,card2 an
# Option Values:
# SENDKEY2_SUPPORT: Two sendkeys , the one is for card1 and the other is for card2
# SINGLE_KEY_SELECT_MENU: Only one sendkey, will popup a menu to select dial card1 or card2
# Switch-ability:
# SENDKEY2_SUPPORT -> SINGLE_KEY_SELECT_MENU
IMPS_SUPPORT = FALSE
# Description:
# Enable OMA Instant Messaging and Presence Services(IMPS) feature
# Option Values:
# TRUE: Enable IMPS feature
# FALSE: Disable IMPS feature
# Switch-ability:
# TRUE -> FALSE
MRE_PACKAGE = NONE
# Description:
# if this feature set TRUE, then the package will support dynamic load app
# Option Values:
# SLIM: set MRE package as slim package
# NORMAL: set MRE package as normal package
# FULL: set MRE package as full package
# Switch-ability:
# FULL -> NORMAL
# FULL -> SLIM
# NORMAL -> SLIM
# SLIM -> NORMAL
MRE_CONTENT_NUMBER = 0
# Description:
# It's a number define how much MRE Content can be installed on the Project.
# Include all mre content (app,widget......)
# Option Values:
# 20: 20 app supported to install.
# 40: 20 app supported to install.
# 60: 20 app supported to install.
# Switch-ability:
# [Any] -> [Any]
MCARE_SUPPORT = FALSE
# Description:
# mCare platform
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
PHB_FDN_ENTRY = 16
# Description:
# Maximum fixed dial number in SIM card, its value must <=32
# Option Values:
# NA: The value can be 1 to 32, must <=32
# Switch-ability:
# NA -> NA
PHB_LN_ENTRY = 10
# Description:
# Number of the call log with single log type from single SIM card, it 's a range better no more than 100, suggestion to be 10, 20, 30, 40, 50, 60, 80, 100 and so on. Totol log num = PHB_LN_ENTRY * log type num * sim card num.
# Option Values:
# 50: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 50, total log num = 50 * log type num * sim card num.
# 40: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 40, total log num = 40 * log type num * sim card num.
# 80: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 80, total log num = 80 * log type num * sim card num.
# 20: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 20, total log num = 20 * log type num * sim card num.
# 60: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 60, total log num = 60 * log type num * sim card num.
# 30: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 30, total log num = 30 * log type num * sim card num.
# 10: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 10, total log num = 10 * log type num * sim card num.
# 100: Number of call log with single log type from single SIM card, ex, The dialed call log from SIM1 is 100, total log num = 100 * log type num * sim card num.
# Switch-ability:
# [Any] -> [Any]
PHB_PHONE_ENTRY = 500
# Description:
# Maximum Phonebook entry in Phone, #Switch-ability: [Any] -> [Any]
# Option Values:
# NA: .
# Switch-ability:
# [Any] -> [Any]
PHB_SIM_ENTRY = 250
# Description:
# Maximum Phonebook entry in SIM card.
# Option Values:
# NA: .
# Switch-ability:
# [Any] -> [Any]
PHB_TCARD_ENTRY = 0
# Description:
# Maximum Phonebook entry in memory card, #Switch-ability: [Any] -> [Any]
# Option Values:
# NA: Any number value, but it will impact RAM and ROM size.
# Switch-ability:
# N/A
PHB_SYNC = OFF
# Description:
# To enable/disable phonebook sync feature.
# Option Values:
# ON: Support Sync from Phonebook
# OFF: Not support Sync from Phonebook
# Switch-ability:
# [Any] -> [Any]
PHB_ADDITIONAL_SUPPORT = FALSE
# Description:
# USIM Phonebook Support
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# [Any] -> [Any]
SIM_PROVISIONING = NONE
# Description:
# Enable provisioning of Internet profile settings from SIM card
# Option Values:
# NONE: Disable SIM Provisioning feature
# MMSICP: Enable SIM provsioning feature and support 3GPP Efmmsicp file in SIM card
# Switch-ability:
# MMSICP -> NONE
SMS_CLOUD_SUPPORT = FALSE
# Description:
# SMS_CLOUD_SUPPORT = TRUE
# Description:
# To enable SMS backup restore.
# Option Values:
# TRUE: Support SMS backup restore.
# FALSE: Disable SMS backup restore.
# Switch-ability:
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
SMS_PHONE_ENTRY = 100
# Description:
# SMS Entry Number in NVRAM
# Option Values:
# NA: SMS entities on NVRAM
# Switch-ability:
# [Any] -> [Any]
SMS_R8_TABLE_MECHANISM = SMS_R8_DEFAULT
# Description:
# Customize the GSM R8 table mechanism
# Option Values:
# SMS_R8_BOTH: Support National Locking table + National extension table mode
# SMS_R8_SINGLE: Support English Locking table + National extension table mode
# SMS_R8_LOCKING: Support National Locking table + English extension table mode
# SMS_R8_DEFAULT: Only support English Gsm7bit conversion table
# SMS_R8_AUTO: Support switch table mode automaticlly by the minimized text size
# Switch-ability:
# [Any] -> [Any]
SMS_SIM_ENTRY = 50
# Description:
# This option should be added below the feature SMS_PHONE_ENTRY.
# Option Values:
# 50: MAX number of SIM to save SMS, customer to set reasonable value accoring to SIM, if too bigger, waster memory, if too smaller, do not display all SMS
# 100: MAX number of SIM to save SMS, customer to set reasonable value accoring to SIM, if too bigger, waster memory, if too smaller, do not display all SMS
# Switch-ability:
# [Any] -> [Any]
SMS_TOTAL_ENTRY = 200
# Description:
# total number of SMS stored in SIM and NVRAM can be read
# Option Values:
# NA: SMS entities on NVRAM+SIM
# Switch-ability:
# [Any] -> [Any]
SMS_TCARD_ENTRY = 0
# Description:
# Maximum SMS entry in memory card, #Switch-ability: [Any] -> [Any]
# Option Values:
# NA: Any number value, but it will impact RAM and ROM size.
# Switch-ability:
# N/A
BACKGROUND_SMS_SUPPORT = FALSE
# Description:
# to enable unified message background sending feature
# Option Values:
# TRUE: support background send: when send SMS, SMS will be saved to Outbox, outbox background send SMS one by one
# FALSE: DO not support background send, if user send one SMS, willl display sending screen and send this SMS directly
# Switch-ability:
# FALSE -> TRUE
MSG_SMS_EMAIL_SUPPORT = FALSE
# Description:
# To enable SMS Email interworking support from orange project
# Option Values:
# TRUE: support SMS email interworking feature, user can send Email by SMS
# FALSE: only support normal SMS send
# Switch-ability:
# FALSE -> TRUE
SOCIAL_NETWORK_SUPPORT = NONE
# Description:
# SNS deep integration configuration
# Option Values:
# NONE: Disable this feature
# LIB: Release sns module in binary format.
# Switch-ability:
# LIB -> NONE
TCPIP_RAW_SOCKET_SUPPORT = FALSE
# Description:
# this feature used to turn off raw socket for slim version to reduce code size
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# N/A
QOS_PROFILE_SUPPORT = NONE
# Description:
# If QOS_PROFILE_SUPPORT is NONE, this means the QoS feature is disable.
# If QOS_PROFILE_SUPPORT is STATIC, this means the static QoS feature is supported.
# If QOS_PROFILE_SUPPORT is DYNAMIC, this means the dynamic QoS feature is supported.
# If QOS_PROFILE_SUPPORT is ALL, this means both static and dynamic qos feature is supported.
# The static QoS feature is that there is a default GPRS qos default value in customer folder and customer can change default GPRS qos values. The default value will be passed to operator network to tell operator that it uses this default qos setting. If customer doesn't enable static qos feature, there may be some IOT problem. If dynamic QoS feature is another way to change default qos values passed to operator network, there is a API called cbm_set_qos_profile. customer can call this API to set default qos values. The API usage is defined in CBM SAP
# Option Values:
# ALL: .
# NONE: .
# STATIC: .
# DYNAMIC: .
# Switch-ability:
# Non-switchable
UNIFIED_MESSAGE_ADVANCE_FEATURE = NONE
# Description:
# to enable unified message advance feature
# Option Values:
# COMPOSER_LISTOPTION_ARCHIVE: This value already phase out
# NONE: Disable all message advance feature
# LISTOPTION: This value already phase out
# ARCHIVE: enable message archive feature
# LISTOPTION_ARCHIVE: This value already phase out
# COMPOSER_LISTOPTION: This value already phase out
# COMPOSER: enable unified message composer feature
# COMPOSER_ARCHIVE: enable unified message composer and archive feature
# Switch-ability:
# [Any] -> [Any]
UNIFIED_MESSAGE_FOLDER = FALSE
# Description:
# to enable unified message feature
# Option Values:
# TRUE: Enable unified message folder feature
# FALSE: Disable unified message folder feature
# Switch-ability:
# TRUE -> FALSE
UNIFIED_MESSAGE_MARK_SEVERAL_FEATURE = FALSE
# Description:
# "Mark several" feature is multiple operation of messages.
# End users can mark several messages and do the operation on them together.
# Option Values:
# TRUE: Enable message mark several feature
# FALSE: Disable message mark several feature
# Switch-ability:
# [Any] -> [Any]
UNIFIED_MESSAGE_SIMBOX_SUPPORT = FALSE
# Description:
# MT SMS stored in phone only. SIM message box would be displayed to show SMS stored in SIM.
# Option Values:
# TRUE: Enable message SIM box feature
# FALSE: Disable message SIM box feature
# Switch-ability:
# [Any] -> [Any]
UNIFIED_MESSAGE_SORT_MESSAGE_LIST = FALSE
# Description:
# Enable the unified message sort feature
# Option Values:
# TRUE: Enable message sort feature
# FALSE: Disable message sort feature
# Switch-ability:
# [Any] -> [Any]
WBXML_SUPPORT = TRUE
# Description:
# to enable wbxml parser function
# Option Values:
# TRUE: Enable WBXML.
# FALSE: Disable WBXML.
# Switch-ability:
# TRUE -> FALSE
XML_SUPPORT = TRUE
# Description:
# to enable xml parser function
# Option Values:
# TRUE: Enable XML.
# FALSE: Disable XML.
# Switch-ability:
# TRUE -> FALSE
UDX_SUPPORT = FALSE
# Description:
# Enable the feature of UDX support.
# Option Values:
# TRUE: Enable UDX support
# FALSE: Disable UDX Support
# Switch-ability:
# TRUE -> FALSE
PNS_SUPPORT = FALSE
# Description:
# Support PUSH notification servcie
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
GOOGLE_SEARCH_SUPPORT = FALSE
# Description:
# Idle and browser support google search. Customer must sign google search distribution agreement then can get this feature in the SW package
# Option Values:
# TRUE: Enable this feature when customer has signed the google search distribution agreement
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
FACEBOOK_CONTENT_SUPPORT = FALSE
# Description:
# To control the release of facebook related contents (including MRE and Widget clients)
# Option Values:
# TRUE: To preload all licensed facebook applications.
# FALSE: Not to preload all licensed facebook applications.
# Switch-ability:
# TRUE -> FALSE
FACEBOOK_SNS_SUPPORT = FALSE
# Description:
# To enable facebook support in SNS deep integration. Customer has to have the license to enable this option.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# TRUE -> FALSE
TWITTER_CONTENT_SUPPORT = FALSE
# Description:
# For releasing twitter related feature files
# Option Values:
# TRUE: Release relevant content files
# FALSE: Do not release relevant content files
# Switch-ability:
# TRUE -> FALSE
TWITTER_SNS_SUPPORT = FALSE
# Description:
# To enable twitter support in SNS deep integration. Customer has to have the license to enable this option.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# TRUE -> FALSE
# ------------------------------ Connectivity
BLUETOOTH_SUPPORT = BTMTK_MT6261
# Description:
# The supported Bluetooth chip
# Option Values:
# BTMTK_MT6626: The MAUI load supports MT6626
# BTMTK_MT6611: The MAUI load supports MT6611 (phased-out in 11A)
# NONE: The MAUI load did not support Bluetooth
# BTMTK_MT6616: The MAUI load supports MT6616
# BTMTK_MT6612: The MAUI load supports MT6612
# BTMTK_MT6612_22_26: The MAUI load supports MT6622, MT6626, MT6612
# BTMTK_MT6276: The MAUI load supports MT6276
# BTMTK_MT6601: The MAUI load supports MT6601 (phased-out in 11A)
# BTMTK_MT6236: The MAUI load supports MT6236
# BTMTK_MT6255: The MAUI load supports MT6255
# BTMTK_MT6622: The MAUI load supports MT6622
# BTMTK_MT6256: The MAUI load supports MT6256
# BTMTK_MT6250: The MAUI load supports MT6250
# Switch-ability:
# BTMTK_MT6612 -> BTMTK_MT6612_22_26
# BTMTK_MT6612 -> BTMTK_MT6622
# BTMTK_MT6612 -> BTMTK_MT6626
# BTMTK_MT6612_22_26 -> BTMTK_MT6612
# BTMTK_MT6612_22_26 -> BTMTK_MT6622
# BTMTK_MT6612_22_26 -> BTMTK_MT6626
# BTMTK_MT6622 -> BTMTK_MT6612
# BTMTK_MT6622 -> BTMTK_MT6612_22_26
# BTMTK_MT6622 -> BTMTK_MT6626
# BTMTK_MT6626 -> BTMTK_MT6612
# BTMTK_MT6626 -> BTMTK_MT6612_22_26
# BTMTK_MT6626 -> BTMTK_MT6622
BT_CONNECT_TO_UART2 = FALSE
# Description:
# For non BT built-in project, BT chip can be connected to BB via UART2 or UART3.
# UART & BT drivers may need to know the information and change configurations.
# Option Values:
# TRUE: BT is connected to UART2
# FALSE: BT is connected to UART3
# Switch-ability:
# Non-switchable
BT_DIALER_SUPPORT = FALSE
# Description:
# To make MTK feature phone act as BT Handsfree Unit. In this mode, user can hear audio from remote device (connected via Bluetooth) while GSM modem is being used at the the remote side for incoming and outgoing call
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# FALSE -> TRUE
BT_DUN_PROFILE = FALSE
# Description:
# To turn on/off Dial-Up Networking profile
# Option Values:
# TRUE: Turn on DUN support
# FALSE: Turn off DUN support
# Switch-ability:
# TRUE -> FALSE
BT_FAX_PROFILE = FALSE
# Description:
# Turn on/off Bluetooth FAX profile feature.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# Non-switchable
BT_FTC_PROFILE = FALSE
# Description:
# To turn on/off FTP Client profile
# Option Values:
# TRUE: Turn on FTP client role support
# FALSE: Turn off FTP client role support
# Switch-ability:
# TRUE -> FALSE
BT_FTS_PROFILE = FALSE
# Description:
# To turn on/off FTP Server profile
# Option Values:
# TRUE: Turn on FTP server role support
# FALSE: Turn off FTP server role support
# Switch-ability:
# TRUE -> FALSE
BT_HFG_PROFILE = TRUE
# Description:
# To turn on/off Hands-Free Gateway profile
# Option Values:
# TRUE: Turn on HFP/HSP gateway role support
# FALSE: Turn off HFP/HSP gateway role support
# Switch-ability:
# TRUE -> FALSE
BT_HIDD_PROFILE = FALSE
# Description:
# To turn on/off bluetooth HID profile
# Option Values:
# TRUE: Turn on HID Device role support
# FALSE: Turn off HID Device role support
# Switch-ability:
# TRUE -> FALSE
BT_MAPC_PROFILE = FALSE
# Description:
# To enable Bluetooth Message Access Profile client. This feature is a part of BT dialer support feature. It helps user to view/send sms of remote device
# Option Values:
# FALSE: Disable this feature: By setting it to False, it ll disable thsi feature
# TRUE: Enable this feature: By setting it to TRUE, it ll enable this feature
# Switch-ability:
# FALSE -> TRUE
BT_OPP_PROFILE = TRUE
# Description:
# To turn on/off Object Push profile
# Option Values:
# TRUE: Turn on OPP support
# FALSE: Turn off OPP support
# Switch-ability:
# TRUE -> FALSE
BT_PBAP_PROFILE = FALSE
# Description:
# bluetooth phonebook access profile support
# Option Values:
# TRUE: enable this feature
# FALSE: disable this feature
# Switch-ability:
# TRUE -> FALSE
BT_PBAPC_PROFILE = FALSE
# Description:
# To Support Phonebook access profile client. It ll help user to view phonebook of remote device connected via Bluetooth.
# User ll be able to edit the phonebook entires of the remote device and it can also make a call using the remote device entry.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# FALSE -> TRUE
BT_SIM_PROFILE = FALSE
# Description:
# Turn on/off Bluetooth SIMAP profile feature.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# TRUE -> FALSE
BT_SPP_CLIENT = NONE
# Description:
# Turn on/off Bluetooth SPP CLient feature
# Option Values:
# NONE: Disable this feature
# BT_SPP_CLI_NO_SCO: If set this, it means open normal SPP Client feature and could connect remote SPP Server.
# BT_SPP_CLI_WITH_SCO: If set this, it means open normal SPP Client feature with extra feature to create SCO link with remote.
# Switch-ability:
# BT_SPP_CLI_NO_SCO -> NONE
BT_SPP_PROFILE = FALSE
# Description:
# To turn on/off Serial Port profile
# Option Values:
# TRUE: Turn on SPP support
# FALSE: Turn off SPP support
# Switch-ability:
# TRUE -> FALSE
BT_SPP_SERVER = NONE
# Description:
# Bluetooth SPP proilfe Server role
# Option Values:
# NONE: If set this, it means SPP Server is not support.
# BT_SPP_SRV_NO_SCO: If set this, it means open normal SPP server feature and could accept remote SPP connection request.
# BT_SPP_SRV_WITH_SCO: If set this, it means open noemal SPP feature with extra feature to create SCO link with remote device.
# Switch-ability:
# BT_SPP_SRV_NO_SCO -> NONE
GPS_SUPPORT = NONE
# Description:
# Mapping with GPS CHIP, Such as MT3336 # NONE, MT3336, MT3332
# MT3326 phase out after 11BW1144MP
# Option Values:
# NONE: NO GPS CHIP Bind with Baseband
# MT3336: GPS CHIP MT3336
# MT3332: Support GPS CHIP MT3332
# Switch-ability:
# Non-switchable
GPS_HS_SUPPORT = FALSE
# Description:
# Enable the feature of GPS position for end user
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
GPS_UART_PORT = NONE
# Description:
# Set GPS UART HW usage port
# Option Values:
# UART2: If this value is set, it means GPS UART port use UART2
# NONE: If GPS is not supported(the GPS_SUPPORT set to NONE). This option set to NONE also.
# UART3: If this value is set, it means GPS UART port use UART3
# Switch-ability:
# [Any] -> [Any]
USB_HS_SUPPORT = FALSE
# Description:
# Customer can use this compileoption to decide USB2.0 or USB1.1. TRUE:: work in USB2.0
# Option Values:
# TRUE: Enable USB High-Speed
# FALSE: Disable USB High-Soeed mode (Run in Full Speed)
# Switch-ability:
# TRUE -> FALSE
USB_BOOTUP_TRACE = FALSE
# Description:
# Enable bootup trace via USB
# Should enable KEYPAD_DEBUG_TRACE or KAL_RECORD_BOOTUP_LOG as well
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
USB_MULTIPLE_COMPORT_ENABLE = FALSE
# Description:
# To enable USB multiple com port feature
# Option Values:
# TRUE: Enable multiple usb comport
# FALSE: disable multiple usb comport
# Switch-ability:
# [Any] -> [Any]
USB_HIGH_SPEED_COM_PORT_SUPPORT = FALSE
# Description:
# USB High Speed Interface API usage.
# Option Values:
# TRUE: Enable USB high-speed comport interface API
# FALSE: Disable USB high-speed comport interface API
# Switch-ability:
# [Any] -> [Any]
USB_IN_NORMAL_MODE_SUPPORT = TRUE
# Description:
# When this option is enable, the USB Mass Storage function could be used in normal mode. That is, the targe doesn't need to reboot when the user select "Mass Storage" in the USB query menu.
# Option Values:
# TRUE: Support USB mass storage in USB normal boot mode
# FALSE: Mass Storage only work on charging boot mode
# Switch-ability:
# [Any] -> [Any]
USB_MASS_STORAGE_SUPPORT = TRUE
# Description:
# enable USB mass storage feature
# Option Values:
# TRUE: Support USB mass storage function
# FALSE: doesn't support Mass Storage function
# Switch-ability:
# TRUE -> FALSE
USB_MASS_STORAGE_CDROM_SUPPORT = FALSE
# Description:
# enable USB mass storage feature
# Option Values:
# N/A
# Switch-ability:
# [Any] -> [Any]
USB_DOWNLOAD_IN_BL = NONE
# Description:
# enable factory download / connection via USB cable via Bootloader
# Option Values:
# NONE: USBDL in Bootloader is disabled
# NORMAL: USBDL in Bootloader is enabled for non-secure platform
# SECURE: USBDL in Bootloader is enabled for secure platform
# Switch-ability:
# NORMAL -> NONE
USB_MULTI_CHARGE_CURRENT_SUPPORT = FALSE
# Description:
# To make USB device mode support multiple configurations, i.e., it supports multiple charging currents defined in USB_CHARGE_CURRENT[] table.
# Note that it only effects when we set enable_usb_charge as false
# Option Values:
# TRUE: Support multiple charging current in USB
# FALSE: Disable multiple charging current in USB (Only 0ma and 500ma)
# Switch-ability:
# [Any] -> [Any]
GENERAL_EXTERNAL_CHARGER = NONE
# Description:
# The feature is to indicate whether we use external charger or NOT
# Option Values:
# NONE: no external charger
# ISL9221: external charger type is ISL9221
# BQ25040: external charger type is BQ25040
# RT9505_BQ24020: external charger type is RT9505_BQ24020
# STT818B: external charger type is STT818B
# Switch-ability:
# [Any] -> [Any]
DMA_UART_VFIFO_TUNNEL_SUPPORT = FALSE
# Description:
# enable the VFIFO support UART for separate tx or rx
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
DMA_UART_VIRTUAL_FIFO = TRUE
# Description:
# Support UART Virtual FIFO
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
# ------------------------------ Multimedia
3D_IMAGE_SUPPORT = FALSE
# Description:
# To enable the feature of 3D image capture, which can be seen through red-blue glasses
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
AUDIO_CLIPPER_SUPPORT = FALSE
# Description:
# The audio clipper function is to clip audio segment from an audio file. The audio clip could be used as ringtone.
# Option Values:
# TRUE: Enable audio clipper
# FALSE: Disable audio clipper
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
IMAGE_VIEWER_VER = SLIM
# Description:
# Version of ImageViewer APP.
# Option Values:
# SLIM: Simple version. Not support zoom and tool panel.
# STANDARD: Standard version. Support zoom and tool panel.
# EX: Ex version. Support zoom, tool panel with fancy effect. Use default cache memory allocation machenism.
# EX_DB: Ex with DB cache and cache memory use default allocation machenism.
# EX_SHARE_MEDMEM: Ex with cache memory allocated from MED pool.
# EX_DB_SHARE_MEDMEM: EX_DB with cache memory allocated from MED pool.
# NONE: With no imageviewer. The value cannot be set currently.
# Switch-ability:
# Non-switchable
INTERGRAFX_SUPPORT = NONE
# Description:
# Co-work with vendor InterGrafx to support those features in QVGA/WQVGA/HVGA/WVGA LCD resolution:
# a) Pre-integrated InterGrafx engine
# b) 10 live wallpapers for MT6236/MT6276 for Venus home screen.
# c) Customize tools for live wallpapers
#
# ( 4 3D games for MT6236/MT6276 tracked by FMS00065384)
# Option Values:
# NONE: Disable intergrafx live wallpaper & game
# INTERGRAFX_ENGINE_EN_BASIC: Enable 4 Intergrafx wallpaper and 1 game (English version)
# INTERGRAFX_ENGINE_CH_BASIC: Enable 4 Intergrafx wallpaper and 1 game (Chinese version)
# INTERGRAFX_ENGINE_EN_VALUED: Enable 9 Intergrafx wallpaper and 2 games (English version)
# INTERGRAFX_ENGINE_CH_VALUED: Enable 9 Intergrafx wallpaper and 2 games (Chinese version)
# INTERGRAFX_ENGINE_EN_FULL: Enable 10 Intergrafx wallpaper and 2 games (English version)
# INTERGRAFX_ENGINE_CH_FULL: Enable 10 Intergrafx wallpaper and 2 games (Chinese version)
# Switch-ability:
# [Any] -> [Any]
MELODY_BUFFER_LEN = 512
# Description:
# Defining buffer midi/imelody files to provide different number of notes supported
# Option Values:
# 512: Support up to 512 bytes MIDI file
# 307200: Support up to 307200 bytes MIDI file
# 1024: Support up to 1024 bytes MIDI file
# 102400: Support up to 102400 bytes MIDI file
# 20480: Support up to 20480 bytes MIDI file
# 1300: Support up to 1300 bytes MIDI file
# 81920: Support up to 81920 bytes MIDI file
# Switch-ability:
# 81920 -> 20480
# ------------------------------ Audio
TWOMICNR_SUPPORT = NONE
# Description:
# External two MIC support ( ForteMedia)
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
EXT_DAC_SUPPORT = FALSE
# Description:
# To enable the interface between AFE control and EXT_DAC control.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
EXTERNAL_AMPLIFIER_ROUTE_CONFIGURATION = FALSE
# Description:
# configure external amplifier router
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
GAIN_TABLE_SUPPORT = FALSE
# Description:
# If GAIN_TABLE_SUPPORT is set to TRUE, the project is allowed to customize gain table in custom folder.
# If GAIN_TABLE_SUPPORT is set to FALSE, MED will be responsible for updating gain (current MAUI design).
# Option Values:
# TRUE: Enable gain table
# FALSE: Disable gain table
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
MMA_MAX_NUM = 2
# Description:
# Specify the maximum number of MMA players. The default setting is 12, which means we could play up to 12 MMA players concurrently. For slim project, we could reduce the maximum number (e.g. 6) to save memory.
# Option Values:
# 6:
# 11:
# 3:
# 7:
# 9:
# 12:
# 2:
# 8:
# 4:
# 10:
# 5:
# Switch-ability:
# [Any] -> [Any]
VM_CODEC = TRUE
# Description:
# For speech debug
# Option Values:
# TRUE: Support VM playback and recording
# FALSE: Not support VM
# Switch-ability:
# TRUE -> FALSE
SPECTRUM_DISPLAY = FALSE
# Description:
# VM (voice memo) playback and recording for speech debug.
# Option Values:
# TRUE: Support spectrum display
# FALSE: Not support spectrum display
# Switch-ability:
# TRUE -> FALSE
# ------------------------------ Speech
NVRAM_AFE_DIGITAL_GAIN_SUPPORT = FALSE
# Description:
# NVRAM afe digital gain control
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ Video
3D_ANAGLYPH = FALSE
# Description:
# 3d anaglyph support, it can decode a 3D video from MOT tool
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
HD_RECORD_SUPPORT = FALSE
# Description:
# Enable/Disable high definition recording. Only MT6255/6256/6276 and later chip support it
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
CMMB_CAS_2GPP_VER = NONE
# Description:
# Support 2G CMMB Post paid in two or more segament,
# Currently only support version 1 (No cost for user, only support Account/Authorize)
# Option Values:
# NONE: Disable this feature
# V10: Support 2G CMMB Post paid version 1.0 (Support 寮???堟?,need 2G CMMB Chip Support,Such as IF206)
# Switch-ability:
# Non-switchable
H264_DECODE_PROFILE = BASELINE
# Description:
# This feature option identifies supporting profile when H264DEC opens.
# Option Values:
# BASELINE: Only support baseline profile
# MAINHIGH: Support high profile
# Switch-ability:
# BASELINE -> MAINHIGH
# MAINHIGH -> BASELINE
H264_ENCODE = FALSE
# Description:
# Turn on/off H264 SW encoder support
# Option Values:
# TRUE: support SW h264 encode
# FALSE: does not support SW h264 encode
# Switch-ability:
# TRUE -> FALSE
FLV_FILE_FORMAT_SUPPORT = FALSE
# Description:
# Turn on/off FLV file format support
# Option Values:
# TRUE: Flash video file format is supported
# FALSE: Flash video file format is NOT supported
# Switch-ability:
# TRUE -> FALSE
MP4_DECODE_PROFILE = SP
# Description:
# This feature option identifies supporting profile when MP4DEC opens.
# Option Values:
# SP: Onlu support simple profile
# ASP: Support both simple profile and advanced simple profile
# NONE: Describe MP4 decoder disable
# Switch-ability:
# ASP -> SP
# SP -> ASP
# [Any] -> [Any]
PGDL_SUPPORT = FALSE
# Description:
# to enable streaming function
# Option Values:
# TRUE: Progressive download is supported
# FALSE: Progressive download is not supported
# Switch-ability:
# Non-switchable
MOT_SUPPORT = FALSE
# Description:
# to enable Movie Theater feature.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
MJPG_DECODE = TRUE
# Description:
# To enable Mjpeg decoder.
# Option Values:
# TRUE: support motion jpeg decode
# FALSE: does not support motion jpeg decode
# Switch-ability:
# TRUE -> FALSE
MJPG_ENCODE = TRUE
# Description:
# To enable Mjpeg encoder
# Option Values:
# TRUE: support motion jpeg encode
# FALSE: support motion jpeg encode
# Switch-ability:
# TRUE -> FALSE
MJPG_ENCODE_MODE = SLIM
# Description:
# When this option is set as SLIM. The support resolution may be decreased in order to reduce memory.
# Option Values:
# SLIM: Enable slim-version of this feature
# NORMAL: Enable normal-mode of this feature.
# Switch-ability:
# [Any] -> [Any]
MULTIPLE_ANGLE_VIEW_SUPPORT = FALSE
# Description:
# To support a fancy camera application which could take 3D-like pictures
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
TIME_LAPSE_VIDEO_RECORDER = DISABLE
# Description:
# Turn on and off TIME_LAPSE_VIDEO_RECORDER by setting its value to ENABLE and DISABLE respectively.
# Option Values:
# DISABLE: Disable this feature
# ENABLE: Enable this feature
# Switch-ability:
# N/A
RM_DECODE = FALSE
# Description:
# When RM_DECODE = TRUE/FALSE, turn on/off Real Media video decode support
# Option Values:
# TRUE: enable this feature
# FALSE: disable this feature
# Switch-ability:
# N/A
SIDE_BY_SIDE_3D_VIDEO = DISABLE
# Description:
# This feature option is to turn ON/OFF the run-time rendering of side-by-side 3D videos. When this feature is on, player shows an red-cyan glasses icon on screen. When users press the icon, target render side-by-side 3D video to red-cyan anaglyph video. Then users can see stereo video by wearing red-cyan 3D glasses.
# Option Values:
# ENABLE: Enable this feature
# DISABLE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
STREAM_SUPPORT = FALSE
# Description:
# to enable streaming function
# Option Values:
# TRUE: to enable video streaming
# FALSE: to disable video streaming
# Switch-ability:
# [Any] -> [Any]
VIDEO_PLAYER_RECORDER_W_DCM = DISABLE
# Description:
# To enable video player/recorder middleware DCM with compression mechanism.
# Option Values:
# ENABLE: Enable this feature
# DISABLE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
VP8_DECODE = FALSE
# Description:
# VP8_DECODE is used to enable or disable to support VP8 SW DEcoder
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
# ------------------------------ Camera
AF_AUXI_LED_SUPPORT = FALSE
# Description:
# AF auxiliary LED feature enable/disable, under low light environment, auxiliary LED will emit to let AF function better quality & performance
# If switch from FALSE to TRUE, FlashlightPowerOn() function must implemented in custom\drv\camera\[proj]\camera_hw.c
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
AF_SUPPORT = FALSE
# Description:
# to enable Auto Focus function
# If switch from FALSE to TRUE, LENS_MODULE must not be NONE, except YUV sensor project.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
BACKUP_SENSOR_SUPPORT = FALSE
# Description:
# support multiple sensors with a single firmware bin file. It doesn't need to change firmware when change sensor module on production line.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
CAMCORDER_SUPPORT = NONE
# Description:
# Check if camcorder support. If yes, camera and video recorder will be turned off.
# Option Values:
# SLIM:
# TRUE:
# NONE:
# CUSTOM:
# FULL:
# FALSE:
# STANDARD:
# Switch-ability:
# FULL -> SLIM
# FULL -> STANDARD
# SLIM -> FULL
# SLIM -> STANDARD
# STANDARD -> FULL
# STANDARD -> SLIM
CAMCORDER_AUTO_SCENE_DETECT_SUPPORT = FALSE
# Description:
# Support auto scene detection capture mode for camcoder
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
CAMCORDER_FACE_DETECTION_MODE_SUPPORT = FALSE
# Description:
# To enable camcorder face detection mode
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
CAMCORDER_MULTIPLE_DISPLAY_BUFFER_SUPPORT = DISABLE
# Description:
# Camcorder support multiple display buffer for MDP.
# Option Values:
# ENABLE: Enable this feature
# DISABLE: Disable this feature
# Switch-ability:
# DISABLE -> ENABLE
# ENABLE -> DISABLE
CAMCORDER_SMILE_SHUTTER_MODE_SUPPORT = FALSE
# Description:
# if this feature is enabled, it will enable the function to automatically capture while the smile in a face is detected
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
CAMCORDER_ZERO_SHUTTER_DELAY_SUPPORT = FALSE
# Description:
# Support Zero Shutter Delay capture mode for camcoder
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
DUAL_CAMERA_SUPPORT = FALSE
# Description:
# Enable the feature of dual camera support for end user
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
CMOS_SENSOR = GC6123_SERIAL
# Description:
# Set sensor module of main camera
# Option Values:
# NA:
# NONE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
CMOS_SENSOR_BAK1 = NONE
# Description:
# Set sensor module of main backup camera
# Option Values:
# NA:
# NONE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
SENSOR_ROTATE = SENSOR_ROTATE_0
# Description:
# For different camera hw module mount direction.
# Option Values:
# SENSOR_ROTATE_90:
# SENSOR_ROTATE_180:
# SENSOR_ROTATE_0:
# SENSOR_ROTATE_270:
# Switch-ability:
# N/A
SENSOR_TYPE = YUV
# Description:
# indicate the sensor type
# Option Values:
# YUV:
# NONE:
# RAW:
# Switch-ability:
# Non-switchable
CMOS_SENSOR_SUB = NONE
# Description:
# Set sensor module of sub camera
# Option Values:
# NONE:
# NA:
# Switch-ability:
# [Any] -> NA
CMOS_SENSOR_SUB_BAK1 = NONE
# Description:
# Set sensor module of sub backup camera
# Option Values:
# NA:
# NONE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
SENSOR_SUB_ROTATE = SENSOR_ROTATE_0
# Description:
# Set the angle between sensor scan direction and handset.
# Option Values:
# SENSOR_ROTATE_90:
# SENSOR_ROTATE_180:
# SENSOR_ROTATE_0:
# SENSOR_ROTATE_270:
# Switch-ability:
# [Any] -> [Any]
SENSOR_TYPE_SUB = NONE
# Description:
# indicate the sub sensor type
# Option Values:
# YUV:
# NONE:
# RAW:
# Switch-ability:
# Non-switchable
CAPTURE_SCENARIO = ON_THE_FLY
# Description:
# Indicate on the fly or off line capture
# Option Values:
# OFFLINE:
# STANDARD:
# ON_THE_FLY:
# Switch-ability:
# Non-switchable
FLASHLIGHT_TYPE = NONE
# Description:
# Set flashlight type
# Option Values:
# NONE:
# LED_FLASHLIGHT_SUPPORT:
# Switch-ability:
# N/A
HIGH_DYNAMIC_RANGE_SUPPORT = FALSE
# Description:
# Support High Dynamic Range capture mode for camcoder
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
HORIZONTAL_CAMERA = FALSE
# Description:
# To enable horizontal camera feature.
# Add HORIZONTAL_CAMERA to global compile option when the value is TRUE.
# Option Values:
# TRUE: Camera or Camcorder with Horizontal UI
# FALSE: Camera or Camcorder with Vertical UI
# Switch-ability:
# [Any] -> [Any]
LENS_MODULE = NONE
# Description:
# Set the lens module of main camera
# If switch from Any to NONE, AF_SUPPORT must set to FALSE, except YUV sensor project.
# If switch from NONE to Any, AF_SUPPORT must set to TRUE.
# Option Values:
# NA:
# NONE: Disable this feature
# Switch-ability:
# NONE -> [Any]
# [Any] -> NONE
LENS_MODULE_BAK1 = NONE
# Description:
# Set the lens module of main backup camera
# Option Values:
# NA:
# NONE: Disable this feature
# Switch-ability:
# [Any] -> NONE
AUTOCAP_PANORAMA_MODE = 3
# Description:
# Each mode represents different spec and memory usage.
# The value ranges from 3 to 8.
# Option Values:
# 3: Maximum capture image number is 3
# 4: Maximum capture image number is 4
# 5: Maximum capture image number is 5
# 6: Maximum capture image number is 6
# 7: Maximum capture image number is 7
# 8: Maximum capture image number is 8
# Switch-ability:
# [Any] -> [Any]
SENSOR_LOCATION = SENSOR_ON_BODY
# Description:
# For different camera hw module mount location.
# Option Values:
# SENSOR_ON_BODY:
# SENSOR_ON_COVER:
# Switch-ability:
# N/A
WEBCAM_SUPPORT = FALSE
# Description:
# To enable webcam feature.
# If value is TRUE, define this as global compile option.
# Option Values:
# TRUE: Enable Webcam
# FALSE: Disable Webcam
# Switch-ability:
# [Any] -> [Any]
COMPOSITE_WEBCAM_SUPPORT = FALSE
# Description:
# Customer can use this compileoption to decide Webcam Composite Device: Webcam+CDC ACM or pure Webcam Device
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
YUVCAM_INTERPOLATION = NONE
# Description:
# YUVCAM_INTERPOLATION = HW means to use HW Resizer to do this interpolation.YUVCAM_INTERPOLATION = SW means touse SW JPEG Encoder to do this interpolation.
# Option Values:
# SW:
# NONE:
# HW:
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ Graphic
GDI_SCREEN_SHOT_BUFFER = OFF
# Description:
# If ON, preserve a global memory buffer for some debug tool to get the screen shot, the memory size is LCD_WIDTH*LCD_HEIGHT*2. If OFF, there is not such memory, then the screen shot function of those debug tools would not be able to use.
# Option Values:
# ON: Support tool snapshop feature
# OFF: Disable tool snapshop feature
# Switch-ability:
# [Any] -> [Any]
GIF_DECODE = TRUE
# Description:
# Support for 11A/11B branch.
# This option define if SW/HW GIF decoder support or not.
# Option Values:
# TRUE:
# NONE:
# FALSE:
# GIF_HW:
# GIF_SW:
# Switch-ability:
# [Any] -> [Any]
JPG_DECODE_PROGRESSIVE_CAPABILITY = BASELINE
# Description:
# To select jpeg decode support capability
# Option Values:
# BASELINE: support decode baseline jpeg images only. (no progressive image)
# PROGRESSIVE_03M: support decode progressive jpeg images of 0.3 mega pixels. (640x480)
# PROGRESSIVE_1M: support decode progressive jpeg images of 1 mega pixels. (1280x960)
# PROGRESSIVE_2M: support decode progressive jpeg images of 2 mega pixels. (1600x1200)
# PROGRESSIVE_3M: support decode progressive jpeg images of 3 mega pixels. (2048x1536)
# Switch-ability:
# [Any] -> [Any]
SCALADO_SUPPORT = FALSE
# Description:
# using SCALADO Caps engine to enhance applications: Image Viewer and Photo Editor
# Option Values:
# TRUE: Turn on SCALADO Caps engine with image viewer and photo editor
# FALSE: not use SCALADO caps engine.
# Switch-ability:
# Non-switchable
# ------------------------------ Security
DISABLE_A5_2 = TRUE
# Description:
# Disable A5/2 cipering algo
# Option Values:
# N/A
# Switch-ability:
# Non-switchable
OCSP_SUPPORT = FALSE
# Description:
# To support OCSP (Online Certificate Status Protocol) for socket SSL handshakes.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
SECURE_VERSION = 1
# Description:
# Support security system
# Option Values:
# 1: Secure version 1
# 0: Secure version 0
# Switch-ability:
# [Any] -> [Any]
SECURE_CUSTOM_NAME = MTK
# Description:
# Support security system
# Option Values:
# JRD: .
# NONE: No customer name specified, non secure load only
# MTK: Customer name for MTK
# Switch-ability:
# [Any] -> [Any]
SECURE_JTAG_ENABLE = TRUE
# Description:
# Support security system
# Option Values:
# TRUE: The JTAG on the phone will b on
# FALSE: The JTAG on the phone will b off
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
SOCKET_SSL_SUPPORT = FALSE
# Description:
# To provide SSL APIs in socket API style.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
SSL_SUPPORT = NONE
# Description:
# SSL library for secure connections with SSL/TLS.
# Option Values:
# NONE: Disable this feature
# OPENSSL: Use OpenSSL library to support SSL protocol.
# OPENSSL_MTK: Use OpenSSL library to support SSL protocol, but replace the cipher engine with Mediatek home made ones.
# Switch-ability:
# OPENSSL -> NONE
# OPENSSL_MTK -> NONE
# ------------------------------ Modem
BAND_SUPPORT = QUAD
# Description:
# Described the support band of RF
# Option Values:
# DUAL900: Support 900/1800
# EGSM900: Support 900
# RGSM900: Support 900
# DCS1800: Support 1800
# PGSM900: Support 900
# QUAD: Support 850/900/1800/1900
# DUAL850: Support 850/1800/1900
# PCS1900: Support 1900
# GSM480: Support 480
# GSM850: Support 850
# TRIPLE: Support 900/1800/1900
# GSM450: Support 450
# Switch-ability:
# DUAL850 -> GSM850
# DUAL850 -> PCS1900
# DUAL900 -> DCS1800
# DUAL900 -> EGSM900
# QUAD -> [Any]
# TRIPLE -> DCS1800
# TRIPLE -> DUAL900
# TRIPLE -> EGSM900
# TRIPLE -> PCS1900
GPRS_CLASS_10 = FALSE
# Description:
# This is for AT&T requirement that Handset can only have multislot class 10. However our default setting is multielost class 12. So we need this feature option to let customer open this feature if they want to pass AT&T cases
# Option Values:
# TRUE: EDGE Multislot Class 10
# FALSE: GPRS Multislot Class 12
# Switch-ability:
# N/A
EDGE_CLASS_10 = FALSE
# Description:
# This is for AT&T requirement that Handset can only have multislot class 10. However our default setting is multielost class 12. So we need this feature option to let customer open this feature if they want to pass AT&T cases
# Option Values:
# TRUE: GPRS Multislot Class 10
# FALSE: GPRS Multislot Class 12
# Switch-ability:
# N/A
BIP_SCWS_SUPPORT = FALSE
# Description:
# BIP SCWS feature:
# Server mode: To establish channel between Browser and UICC
# Client mode: To establish channel between UICC and network
# Option Values:
# TRUE: Enable BIP support
# FALSE: Disable BIP support(default)
# Switch-ability:
# Non-switchable
CMUX_SUPPORT = FALSE
# Description:
# Support 07.10 multiplexer feature: TRUE or FALSE
# Option Values:
# TRUE: Enable 27.010 multiplexer
# FALSE: Disable 27.010 multiplexer
# Switch-ability:
# Non-switchable
ECC_RETRY_ENHANCEMENT = FALSE
# Description:
# If this feature option is turned on, L4C would retry ECC in other RAT when the first ECC attemp is fail.
# Option Values:
# TRUE: Modem will retry fail ECC on the other RAT
# FALSE: Modem will not retry fail ECC on the other RAT
# Switch-ability:
# Non-switchable
WCDMA_PREFERRED = FALSE
# Description:
# enable/disable WCDMA Preferred feature
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
RSAT_SUPPORT = NONE
# Description:
# To enable RSAT(STK AT command) feature
# Option Values:
# NONE: Disable RSAT support(default)
# MMI_WITH_RSAT: Enable RSAT support in MMI project
# MODEM_WITH_RSAT: Enable RSAT support in modem project
# Switch-ability:
# N/A
SIM_RECOVERY_ENHANCEMENT = FALSE
# Description:
# Enable continuous SIM card recovery procedure
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
UMTS_BAND_I = FALSE
# Description:
# Indicates whether UE support UMTS FDD band I
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_II = FALSE
# Description:
# Indicates whether UE support UMTS FDD band II
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
UMTS_BAND_III = FALSE
# Description:
# Indicates whether UE support UMTS FDD band III
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_IV = FALSE
# Description:
# Indicates whether UE support UMTS FDD band IV
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_V = FALSE
# Description:
# Indicates whether UE support UMTS FDD band V
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_VI = FALSE
# Description:
# Indicates whether UE support UMTS FDD band VI
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_VII = FALSE
# Description:
# Indicates whether UE support UMTS FDD band VII
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_VIII = FALSE
# Description:
# Indicates whether UE support UMTS FDD band VIII
# Option Values:
# TRUE: UE supports UMTS FDD band VIII
# FALSE: UE not supports UMTS FDD band VIII
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_IX = FALSE
# Description:
# Indicates whether UE support UMTS FDD band IX
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
UMTS_BAND_X = FALSE
# Description:
# Indicates whether UE support UMTS FDD band X
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ TD-SCDMA
# ------------------------------ File system and System service
DEMAND_PAGING_VERSION = DPV2
# Description:
# Set up which objects will be put to demand paging (DP) area.
# Note that the default value will be set to DPv2 by default after W11.37
# Option Values:
# DPV1: Put MMI objects to DP area
# DPV2: Put all possible objects to DP area.
# Switch-ability:
# DPV2 -> DPV1
DEMAND_PAGING_AUTO_CONFIG = FALSE
# Description:
# To define if we need to adjust demand page rom size(MAX_DEMAND_PAGING_ROM0_SIZE) in custom_FeatureConfig.h automatically for scatGen
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
EMMC_BOOTING = NONE
# Description:
# eMMC booting (similar to NAND_FLASH_BOOTING)
# Option Values:
# NONE: Disable this feature
# BASIC: Only Primary MAUI and Secondary MAUI exist
# ONDEMAND: Use demand paging mechanism
# Switch-ability:
# N/A
EXT_BL_UPDATE_SUPPORT = FALSE
# Description:
# This option is to control if we can use USBDL in Bootloader to update ExtBootloader.
# If this option is TRUE, bootloader will take more space as backup to make sure all download process will be done in a safe way
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
BLRESERVEDSIZE_AUTOCONFIG = TRUE
# Description:
# To define if we need to adjust bootloader size(MAX_BL_SIZE, MAX_EXT_BL_SIZE) in custom_FeatureConfig.h automatically for scatGen
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# TRUE -> FALSE
FAST_LOGO_SUPPORT = FALSE
# Description:
# The feature makes the boot-up logo can be shown in BL. End user can have better user experience
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
FS_CACHE_SUPPORT = FALSE
# Description:
# If this feature is enabled, FS will pre-fetching FAT table and directory entries to accelerate file searching and file seeking.
# FS dedicate buffer is merged into FS cache, and dynamically allocated from FS cache at runtime.
# Option Values:
# TRUE: Enable FS Cache, FS_DEDICATED_BUFFER must also be enabled.
# FALSE: Disable FS Cache
# Switch-ability:
# [Any] -> [Any]
FS_SORT_MAX_ENTRY = 32
# Description:
# FS supports up to sort up to 20000 files.
# Option Values:
# NA: To specify number of sorting entry
# Switch-ability:
# Non-switchable
NVRAM_BACKUP_PARTITION_ON_NOR = ENABLE
# Description:
# NOR Backup Partition provides a data partition as backup of NVRAM most critical data, i.e. IMEI, SIM-ME-lock, calibration.
# Option Values:
# ENABLE: Enable this feature
# DISABLE: Disable this feature
# Switch-ability:
# DISABLE -> ENABLE
# ENABLE -> DISABLE
NVRAM_BIND_TO_CHIP_CIPHER = DISABLE
# Description:
# This option enables NVRAM to use HW encryption/decryption on LIDs with attributes NVRAM_ATTR_MSP, i.e. SIM-ME-Lock.
# Option Values:
# ENABLE: Enable this feature
# DISABLE: Disable this feature
# Switch-ability:
# ENABLE -> DISABLE
KAL_STACK_LAYOUT = SHARING
# Description:
# Define the TASK stack layout
# Option Values:
# SIMPLE: stack is resident in linear system memory, default
# EXTENSIBLE: stack is isolated and dynamic extensible, only support on ARM9/ARM11 platform
# ISOLATE: stack is isolated in virtual memory to detect stack overflow, only support on ARM9/ARM11platform
# SHARING: All task stack sharing a common pool, and task stack will be allocated/freed dynamically.
# Switch-ability:
# [Any] -> [Any]
KAL_TRACE_OUTPUT = NONE
# Description:
# This option is used to enable or disable the trace output for the concern of saving ROM size
# Option Values:
# CUST_PARTIAL: Enable partial traces
# NONE: Disable all trace
# FULL: Enable all trace
# Switch-ability:
# NONE -> CUST_PARTIAL
# NONE -> FULL
PARTIAL_TRACE_LIB = NONE
# Description:
# When module was defined in PARTIAL_TRACE_LIB, the compile option, TRACE_MODULE_OFF, will be un-defined, and it will be buit with TRACE information.
# Option Values:
# N/A
# Switch-ability:
# Non-switchable
CUSTOM_DEBUG_MODULES = NVRAM SYSTEM
# Description:
# CUSTOM_DEBUG_MODULES means these modules will be built with debug information.
# Option Values:
# ALL: all
# NONE: Disable this feature
# module_names: The modules' name that you want to turn on debug information, seperated by space
# Switch-ability:
# [Any] -> [Any]
CUSTOM_NON_DEBUG_MODULES = NONE
# Description:
# CUSTOM_NON_DEBUG_MODULES means it will be built without debug information after custom release
# Option Values:
# ALL: .
# NONE: .
# module_names: Module name list using space seperated
# Switch-ability:
# [Any] -> [Any]
KAL_RECORD_BOOTUP_LOG = FALSE
# Description:
# The goal is to print out log via Catcher at the initialization stage. We supply the API for customers and print out each initialization milistone by default. With this facility, customers who do not have Trace32 can easily locat where the problem is via UART at MAUI initialization stage.
# Option Values:
# TRUE: enable boot up trace
# FALSE: disable boot up trace
# Switch-ability:
# [Any] -> [Any]
DRV_DEBUG_MEMORY_TRACE_SUPPORT = FALSE
# Description:
# Driver do not want to depend on MMI_FEATURES_SWITCH because sometimes we do need to use memory trace debug on memory monitored project.
# Option Values:
# TRUE: driver will log the trace in memory
# FALSE: driver won't log the trace in memory
# Switch-ability:
# TRUE -> FALSE
MULTIPLE_BINARY_FILES = FALSE
# Description:
# This feature option indicate resource binary could be replaced / changed after first time download.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
MBA_DEFAULT_BINARY = CUST_AND_LANG
# Description:
# This feature option indicate MBA binary number and type.
# There are three type
# CUST_ONLY
# LANG_ONLY
# CUST_AND_LANG
# Option Values:
# LANG_ONLY: Multiple BIN layout contain only langpack BIN and main BIN
# CUST_ONLY: Multiple BIN layout contain only custpack BIN and main BIN
# CUST_AND_LANG: Multiple BIN layout contain custpack BIN , langpack BIN and main BIN
# Switch-ability:
# [Any] -> [Any]
REDUCE_HEADER_DEPTH = TRUE
# Description:
# To collect used header files to one folder to reduce compiler's searching time.
# Option Values:
# N/A
# Switch-ability:
# [Any] -> [Any]
ZIMAGE_SUPPORT = TRUE
# Description:
# Please refer to CR MAUI_02832638 which was applied to 10AW1041OFD_53EL_SLIM
# Option Values:
# TRUE: Enable code compression to utilize the free RAM space and save ROM space
# FALSE: Disable code compression mechanism
# Switch-ability:
# Non-switchable
BOOT_ZIMAGE_SUPPORT = FALSE
# Description:
# BOOT_ZIMAGE is enabled or not. BOOT_ZIMAGE is an extension of ZIMAGE to compress the original un-compressible region.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
ZIMAGE_CONTENT_POLICY = BEST_PERF
# Description:
# It's an accessory feature option of ZIMAGE_SUPPORT, and is used in zImage auto configuration mechanism to decide the policy of ZIMAGE.
# Option Values:
# BEST_PERF: Utilize all unused free RAM to achieve better footprint and runtime performance.
# FIT_ROM: Tyr to reserve maximum free RAM while keepting the load can be build pass.
# MUST_ONLY: Only compress the pre-defined objects which must be in ZIMAGE region.
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ Flash
DUAL_SERIAL_FLASH_SUPPORT = FALSE
# Description:
# Enable 2 serial flash support.
# Option Values:
# TRUE: Enable dual flash support
# FALSE: Disable dual serial flash support
# Switch-ability:
# [Any] -> [Any]
NAND_FLASH_BOOTING = NONE
# Description:
# Specify if system has to boot from nand-flash.
# If yes, bootloader will be built and MAUI will be splitted into
# primary and secondary MAUI.
# Option Values:
# NONE: Disable this feature
# BASIC: Only Primary MAUI and Secondary MAUI exist
# ONDEMAND: Use demand paging mechanism
# ENFB: Enable third ROM
# Switch-ability:
# Non-switchable
NOR_SUPPORT_RAW_DISK = FALSE
# Description:
# Purpose
# (1) Support direct access API for NOR flash.
# (2) Support at most 2 additional raw disk regions on NOR flash.
# (3) Support flexible settings of disk base address and length. Only need to have disk range aligned with block size.
# Usage
# (1) Set to TRUE.
# (2) Should modify custom_memorydevice.h NOR_BOOTING_NOR_DISK_NUM & NOR_BOOTING_NOR_DISKX_BASE_ADDRESS & NOR_BOOTING_NOR_DISKX_SIZE to assign disk region.
# Limitation
# (1) In V32/V33 project, NOR_BOOTING_NOR_DISK_NUM should be 2 and the second disk is treated as Security Partition.
# Option Values:
# TRUE: Enable NOR RAW disk support
# FALSE: Disable NOR RAW disk support
# Switch-ability:
# [Any] -> [Any]
OTP_SUPPORT = FALSE
# Description:
# Support One-Time-Programming area for the flash device
# Option Values:
# TRUE: Enable One-Time Program Support
# FALSE: Disable One-Time Program Support
# Switch-ability:
# TRUE -> FALSE
COMBO_MEMORY_SUPPORT = TRUE
# Description:
# To support different memory part in the same load.
# Option Values:
# TRUE: Enable combo memory support
# FALSE: Disable combo memory support.
# Default setting is FALSE.
# Switch-ability:
# [Any] -> [Any]
SIP_RAM_SIZE = 32M_BITS
# Description:
# Set SiP RAM size according to BB chip
# Option Values:
# 32M_BITS: SiP 32M bits RAM
# 64M_BITS: SiP 64M bits RAM
# 128M_BITS: SiP 128M bits RAM
# 256M_BITS: SiP 256M bits RAM
# NONE: For Non-SiP RAM
# Switch-ability:
# Non-switchable
# ------------------------------ Memory card
# ------------------------------ Tools
CAT_SUPPORT = NONE
# Description:
# Define the support level of CAT tool
# Option Values:
# NONE: Disable this feature
# OFFLINE_MODE: Support offline CAT. This is a slim level of CAT support
# LIMITED_ONLINE_MODE: Support CAT functionality without screen snapshot
# FULL: Enable full-version of this feature
# Switch-ability:
# [Any] -> [Any]
CAT_IN_ZIMAGE = FALSE
# Description:
# Put CAT section in ZIMAGE region when ZIMAGE_SUPPORT is enabled
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
TST_WRITE_TO_FILE = FALSE
# Description:
# enable tst outputting traces to files
# Option Values:
# TRUE: Enable
# FALSE: Disable
# Switch-ability:
# FALSE -> TRUE
# TRUE -> FALSE
DRV_CUSTOM_TOOL_SUPPORT = TRUE
# Description:
# To enable using driver customization tool for GPIO/EINT/ADC/UEM/Keypad/PMU setting.
# Option Values:
# TRUE: Enable
# FALSE: Disable
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ Java
J2ME_SHARE_MED_EXT_MEM = FALSE
# Description:
# (1) When J2ME_SHARE_MED_EXT_MEM = TRUE, Java will share Media Memory,
# and therefore it will decrease the required RAM size. In experiment,
# the RAM size decreases about 300k~400k bytes in MT6219, MT6225.
# (2) When J2ME_SHARE_MED_EXT_MEM = TRUE, Java can not support video/camera/recording for MMAPI. Background running will also be disabled. If we enable both J2ME_SHARE_MED_EXT_MEM and J2ME_SLIM_MEMORY_SUPPORT, Java background running will support with some limitation. Please check J2ME_SLIM_MEMORY_SUPPORT for more information.
# Option Values:
# TRUE: Java will use MED memory to save overall memory. Java can not support Video in this case
# FALSE: Java will use ASM to allocate memory.
# Switch-ability:
# Non-switchable
SUPPORT_BACKGROUND_JAVA = FALSE
# Description:
# FALSE: disable background running JAVA only applied on Jblendia
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
SUPPORT_JSR_75_PIM = FALSE
# Description:
# J2ME FEATURE SETTINGS
# MUST TURN ON JTWI FEATURESET or NO USE
# SUPPORT_JSR_75_PIM/SUPPORT_JSR_205/SUPPORT_INFUSIO is TRUE
# SUPPORT_JSR_184/SUPPORT_SURFKITCHEN is FALSE
# Option Values:
# TRUE: Support JSR-75 PIM
# FALSE: Turn off JSR-75 PIM
# Switch-ability:
# Non-switchable
SUPPORT_JSR_75_PIM_MSA = FALSE
# Description:
# This feature option is used to support MSA 1.0 clarifications for JSR-75 PIM. Enabling this compile option will enable TITLE, URL, ADDR, NOTE, and 2nd EMAIL of Contact. Please note that to enable the compile option may enlarge the memory usage.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
SUPPORT_JSR_179 = FALSE
# Description:
# Enable Java JSR179 location API
# Please add this compile option under SUPPORT_JSR_82 in project.mak
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
SUPPORT_JSR_205 = FALSE
# Description:
# J2ME FEATURE SETTINGS
# MUST TURN ON JTWI FEATURESET or NO USE
# SUPPORT_JSR_75_PIM/SUPPORT_JSR_205/SUPPORT_INFUSIO is TRUE
# SUPPORT_JSR_184/SUPPORT_SURFKITCHEN is FALSE
# Option Values:
# TRUE: Support JSR-205
# FALSE: Turn off JSR-205
# Switch-ability:
# Non-switchable
# ------------------------------ VoIP
# ------------------------------ Wifi
CUSTOM_WIFI_FEATURES_SWITCH = FALSE
# Description:
# support WLAN feature on/off when WIFI_SUPPORT != NONE
# if WIFI_SUPPORT = NONE, CUSTOM_WIFI_FEATURES_SWITCH only can be set FALSE
# Notice: WIFI_SUPPORT is not customer switchable option.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
WIFI_INTERFACE_TYPE = NONE
# Description:
# the HW interface selection for WIFI CHIP
# the configuration is HW dependency. please confirm the HW first before your configuration
# Option Values:
# EHPI_8BIT: EHPI BUS 8BIT Mode
# EHPI_16BIT: EHPI BUS 16BIT Mode
# NONE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
WIFI_PREFER_SUPPORT = FALSE
# Description:
# To enable select WiFi first if WiFi is available.
# Option Values:
# TRUE: Select WiFi first if WiFi is available
# FALSE: close WiFi prefer
# Switch-ability:
# [Any] -> [Any]
MMI_HIDE_WAPI = FALSE
# Description:
# Turn off MMI WAPI support
# Option Values:
# TRUE: Turn off MMI WAPI support
# FALSE: Turn on MMI WAPI support
# Switch-ability:
# [Any] -> [Any]
# ------------------------------ Operator
# ------------------------------ TC01
# ------------------------------ Others
# =========================================================================
# Feature Options which customer can NOT modify
# =========================================================================
#[Non-modifiable]# ------------------------------ ARM
COMPILER = RVCT
# Description:
# RVCT or ADS
# Option Values:
# ADS: Use ARM ADS tool chain.
# RVCT: Use ARM RVCT tool chain
# GCC: Use GNU GCC tool chain (Mentor Sourcery 2010.09 , 4.5.1)
# Switch-ability:
# Non-switchable
RVCT_MULTI_FILE = NONE
# Description:
# Set RVCT feature MULTI_FILE. RVCT is a compiler
# Option Values:
# NONE: Disable --multifile compiler argument .
# MULTI: Enable --multifile compiler argument to compile specified source files into one object file.
# Switch-ability:
# Non-switchable
CUSTOM_CFLAGS = #--debug --no_debug_macros
# Description:
# Add custom cflag
# Option Values:
# --debug --no_debug_macros: .
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ HW and Project
ACCDET_SUPPORT = TRUE
# Description:
# This compile option is defined to indicate that out new chip support Accessory Detection module.
# Option Values:
# HYBRID: accdet+eint SW Solution to detection
# TRUE: Support ACCDET HW Detection Solution;And on MT6276 and MT6251, it indicates the Accdet+Earbias Solution
# FALSE: Indicate the Old AuxADC detection solution
# DISABLE_AUX_ACCDET: no earphone detection on the project
# EINT_ACCDET: accdet+eint hw solution
# Switch-ability:
# Non-switchable
CLASSK_CHARGEPUMP_SUPPORT = TRUE
# Description:
# For MT6260, support Class-K (chargepump)
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
MCU_CLOCK = MCU_260M
# Description:
# Specify MCU clock rate,
# MT6205B = 26MHz (MCU_26M)
# MT6218B/19, MT6226/7, MT6223 = 52MHz (MCU_52M)
# MT6228, MT6229, MT6230, MT6225 = 104MHz (MCU_104M)
# MT6235, MT6238, MT6239 = 208MHz (MCU_208M)
# Option Values:
# MCU_39M: CPU normal operation frequency:39MHz
# MCU_245_76M: CPU normal operation frequency:245.76MHz
# MCU_208M: CPU normal operation frequency: 208MHz
# MCU_312M: CPU normal operation frequency: 312MHz
# MCU_52M: CPU normal operation frequency:52MHz
# MCU_104M: CPU normal operation frequency: 104MHz
# MCU_520M: CPU normal operation frequency: 520MHz
# MCU_122_88M: CPU normal operation frequency: 122.88MHz
# MCU_13M: CPU normal operation frequency:13MHz
# MCU_650M: CPU normal operation frequency: 650MHz
# MCU_26M: CPU normal operation frequency:26MHz
# MCU_416M: CPU normal operation frequency: 416Mhz
# Switch-ability:
# Non-switchable
MCU_DCM = DCM_ENABLE
# Description:
# to enable Dynamic Clock Switching (MCU_DCM) function for saving the current consumption. Please set DCM_ENABLE to turn on this feature. (DCM_ENABLE <-> DCM_DISABLE) DCM_ENABLE: Need correct EMI configurations.
# Option Values:
# DCM_ENABLE: Enable DCM support
# DCM_DISABLE: Disable DCM support
# Switch-ability:
# Non-switchable
CHIP_VER = S00
# Description:
# Chip version, changed according to ECO.
# Option Values:
# S01: .
# S00: .
# S02: .
# Switch-ability:
# Non-switchable
RF_MODULE = MT6261RF_CUSTOM
# Description:
# describe the RF module used in this project
# Option Values:
# NA: the RF module used in this project
# Switch-ability:
# Non-switchable
PLATFORM = MT6261
# Description:
# Name of BB-chip.
# Option Values:
# NA:
# Switch-ability:
# Non-switchable
PLATFORM_FOR_CHECK = NONE
# Description:
# Name of BB-chip for tool check.
# Option Values:
# NONE: Disable this feature.
# NA: MediaTek setup this name for tool check.
# Switch-ability:
# Non-switchable
DEMO_PROJECT = FALSE
# Description:
# To define projects that are experimental or for demo purposes only. It should NEVER be enabled on MP projects, and it is used by MTK internally. Customer does not need to change it
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
FLAVOR = PLUTO_QVGA_OVERSEA
# Description:
# To describe what flavor setting was used in internal project.
# Option Values:
# NA: .
# Switch-ability:
# Non-switchable
FM_RADIO_CHIP =MT5193FM ###MT6261FM
# Description:
# To determine which FM chip will be used.
# Option Values:
# MT6189A1:
# MT6188A1:
# MT6276FM:
# AR1000:
# MT6626:
# MT6256FM:
# MT6616:
# MT6251FM:
# NONE: This project doesn't support FM radio
# Switch-ability:
# Non-switchable
FM_INTERFACE_TYPE = NONE
# Description:
# Before, FM Chip use I2C or SPI, but new MT6616 FM Chip support HCI Interface, we need add compile option to dedicate HCI to MT6616.
# Option Values:
# HCI:
# I2C:
# NONE: other control interface: FSPI
# Switch-ability:
# Non-switchable
FM_RADIO_RECORD = TRUE
# Description:
# Turn on FM radio record feature
# Option Values:
# TRUE: Turn on FM Radio record function
# FALSE: Turn off FM radio record function
# Switch-ability:
# TRUE -> FALSE
AFC_VCXO_TYPE = VCXO
# Description:
# the oscillator type used in this project
# Option Values:
# VCTCXO: VCTCXO clk
# VCXO: VCXO clk
# Switch-ability:
# Non-switchable
EXT_CLOCK = EXT_26M
# Description:
# Specify external clock rate.
# Option Values:
# EXT_26M: .
# EXT_13M: .
# Switch-ability:
# Non-switchable
PRODUCTION_RELEASE = TRUE
# Description:
# Specify if production released is turned on.
# If it is enabled, some system code will be effected, like
# 1. Watchdog enabled, and must be restared each time context switch;
# 2. Handset silent reboot if system comes across with exception;
# Option Values:
# TRUE: Disable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
CHARGING_ALGORITHM = LINEAR_LI_CHARGING
# Description:
# To specify which charging algorithm is used, or no charging.
# Option Values:
# LINEAR_LI_CHARGING: Linear charging with Li battery type
# PULSE_LI_CHARGING: Pulse charging with Li battery type
# LINEAR_NIMH_CHARGING: Linear charging with NiMH battery type
# PULSE_NIMH_CHARGING: Pulse charging with NiMH battery type
# Switch-ability:
# Non-switchable
E_COMPASS_SENSOR_SUPPORT = NONE
# Description:
# N/A
# Option Values:
# N/A
# Switch-ability:
# N/A
IC_TEST_TYPE = NONE
# Description:
# N/A
# Option Values:
# N/A
# Switch-ability:
# N/A
LOW_COST_SUPPORT = COMMON
# Description:
# General compile option for Low Cost features. Please not that a module can define its own low-cost levels, or it can just adopt
# Option Values:
# TRUE: .
# NONE: .
# FALSE: .
# ULC: .
# COMMON: .
# Switch-ability:
# Non-switchable
VIBRATION_SPEAKER_SUPPORT = FALSE
# Description:
# Support Vibration Speaker (3-in-1 speaker)
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ LCD
MAIN_LCM_SCANLINE_ROTATION = FALSE
# Description:
# This refers to the scanline rotation supportness for Main LCM
# Option Values:
# FALSE: Disable this feature
# FALSE: Disable this feature
# TRUE: Enable this feature
# TRUE: Enable this feature
# Switch-ability:
# [Any] -> [Any]
SUB_LCM_SCANLINE_ROTATION = FALSE
# Description:
# This refers to the scanline rotation supportness for Sub LCM
# Option Values:
# FALSE: Disable this feature
# FALSE: Disable this feature
# TRUE: Enable this feature
# TRUE: Enable this feature
# Switch-ability:
# [Any] -> [Any]
SUBLCD_SYNC_LCM_METHOD = NONE
# Description:
# Set this feature SUBLCD_SYNC_LCM_METHOD to SW or HW according to real HW layout connection
# Option Values:
# SW:
# NONE:
# HW:
# Switch-ability:
# [Any] -> [Any]
SPATIAL_DITHERING = FALSE
# Description:
# Dithering is an intentionally applied form of noise, used to randomize quantization error.
# Dithering is routinely used in processing of both digital audio and video data.
# In our case, the spatial dithering technique is applied on image decoding.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ MMI
MMI_BASE = PLUTO_MMI
# Description:
# Set MMI_BASE as PLUTO_MMI or NEPTUNE_MMI
# Option Values:
# NEPTUNE_MMI:
# PLUTO_MMI:
# Switch-ability:
# Non-switchable
MMI_FEATURES_SWITCH = FALSE
# Description:
# MMI_FEATURES_SWITCH = TRUE means it's a memory reduction project, and the specified MMI_features_switch.h will be used, but USE_COMMON_MMI_FEATURES_SWITCH won't be defined.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Input and Language
FONT_ENGINE = NONE
# Description:
# Set font engine type
# Option Values:
# FONT_ENGINE_WTLE: Monotype WTLE Font
# FONT_ENGINE_WTLE: Monotype WTLE Font
# FONT_ENGINE_FREETYPE_DEMO: Demo Freetype Font
# FONT_ENGINE_FREETYPE_DEMO: Demo Freetype Font
# FONT_ENGINE_FREETYPE: Freetype Font
# FONT_ENGINE_FREETYPE: Freetype Font
# FONT_ENGINE_MONOTYPE_DEMO: Demo Monotype Font
# FONT_ENGINE_MONOTYPE_DEMO: Demo Monotype Font
# NONE: Bitmap Font
# NONE: Bitmap Font
# FONT_ENGINE_MONOTYPE: Monotype Font
# FONT_ENGINE_MONOTYPE: Monotype Font
# FONT_ENGINE_ETRUMP: Etrump Vector Font
# FONT_ENGINE_ETRUMP: Etrump Vector Font
# Switch-ability:
# Non-switchable
FONT_RESOURCE = OFFICIAL
# Description:
# To add compile option for demo font resource
# Option Values:
# DEMO: Demo Bitmap Font Data
# OFFICIAL: Official Bitmap Font Data
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Application
APP_STORAGE_IN_SYS_DRV = TRUE
# Description:
# Option Values:
# N/A
# Switch-ability:
# N/A
BROWSER_SUPPORT = NONE
# Description:
# This feature option is used to set browser solution of one project.
# Option Values:
# OPERA_TURBO: Set Browser solution as Opera Turbo
# OPERA_V10: Set browser solution as Opera Mobile V10
# OBIGO_Q03C: Set browser solution as Obigo Q03C Browser
# OBIGO_Q05A: Set browser solution as Obigo Q05A Browser
# NONE: Disable this feature
# Switch-ability:
# Non-switchable
OBIGO_FEATURE = WAP2_SEC
# Description:
# It defines the capability of Obigo Q03C/Q05A WAP and Opera Mobile Browser solution. If feature option OBIGO_FEATURE is NONE, it means no WAP solution is enabled.
# Option Values:
# NONE:
# WAP2_SEC_MMS:
# WAP_SEC:
# WAP_MMS:
# WAP2:
# WAP:
# WAP_SEC_MMS:
# WAP2_MMS:
# WAP2_SEC:
# Switch-ability:
# Non-switchable
WAP_MEM_DEBUG = FALSE
# Description:
# WAP_MEM_DEBUG = TRUE # TRUE, FALSE. Works only for WAP_SUPPORT = OBIGO_Q03C
# When WAP_SUPPORT=OBIGO_Q05A, WAP_MEM_DEBUG = TRUE or FALSE will not have any effect.
# And when WAP_SUPPORT=OBIGO_Q03C, WAP_MEM_DEBUG = TRUE or FALSE will work.
# Option Values:
# TRUE: It will enable debug memory pool, so the memory requirement of Q03C browser will get increase.
# FALSE: It will disable debug memory pool, so the memory requirement of Q03C browser will get decrease.
# Switch-ability:
# Non-switchable
TRANSCODING_PROXY_SUPPORT = NONE
# Description:
# To support transocding proxy when the browser request for any URL. The URL will be first transferred to transocding Proxy. This proxy will interact with origin web server to fetch the data. For end user, the complete process is non-transparent. This feature is requested by Baidu so that all the MTK request URL should go via Baidu proxy server.
# Option Values:
# BAIDU: Use Baidu Transcoding proxy while sending browser URL request
# NONE: Disable this feature
# Switch-ability:
# Non-switchable
UNIFIED_PUSH_FEATURES = NONE
# Description:
# This feature option is used to enable or disable the push feature.
# Option Values:
# SLIM: It will disable white list and black list (trust list) management
# NONE: WAP Push disable
# STANDARD: It will enable only white list and not black list (trust list) management
# FULL: It will enable white list and black list (trust list) management
# Switch-ability:
# Non-switchable
CBM_BEARER_SWITCH_SUPPORT = FALSE
# Description:
# support bearer switch in CBM
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
CUST_KEYPAD_TONE_SUPPORT = FALSE
# Description:
# enable/disable cust keypad tone
# Option Values:
# TRUE: Turn on customized keypad tone
# FALSE: Turn off customized keypad tone
# Switch-ability:
# [Any] -> [Any]
DRM_SUPPORT = NONE
# Description:
# Provides feature of DRM.
# Option Values:
# NONE: If DRM not support, value will be NONE
# MTK: If DRM 1.0 is supported, value will be MTK
# Switch-ability:
# Non-switchable
DRM_SECURE_CLOCK = FALSE
# Description:
# N/A
# Option Values:
# N/A
# Switch-ability:
# N/A
FOTA_ENABLE = NONE
# Description:
# Turn on FOTA (firmware update over the air) feature, support full image firmware update now
# Option Values:
# NONE: FOTA is disable
# FOTA_DM: Support FOTA
# Switch-ability:
# Non-switchable
FOTA_UPDATE_PACKAGE_ON_NAND = FALSE
# Description:
# Use NAND to place update package for NOR project
# Option Values:
# TRUE: Enable FOTA update package in NAND for NOR project
# FALSE: Place diff package on NOR
# Switch-ability:
# Non-switchable
NTPD_SUPPORT = FALSE
# Description:
# Support network time protocol.
# Option Values:
# FALSE: Turn off network time protocol.
# TRUE: Turn on network time protocol.
# Switch-ability:
# Non-switchable
SMS_R8_NATION_LANGUAGE = FALSE
# Description:
# The feature option is to support Turkish special character encoding method which is defined in 3GPP 23.038 Release8.
# New SMS UDH IEI is introduced to indicate the encoding/decoding alphabet of special Turikish character.
# Using the new method, SMS can avoid to use UCS2 coding scheme when the special Turkish character is present in the message.
# Option Values:
# TRUE: Enable SMS R8 Nation Language (ex: Turkey)
# FALSE: Disable SMS R8 Nation Language (ex: Turkey)
# Switch-ability:
# Non-switchable
EMS_SUPPORT = EMS_ULC_SLIM
# Description:
# There are four level for EMS functionality, EMS 5.0, EMS 4.0, slim EMS (pure text only), and ultra low cost slim EMS (currently only can be used in PLUTO MMI). This feature option is to set what level of the EMS functionality. It will impact three library mmi (plutommi or lcmmi), ems, and custom.
# Option Values:
# EMS_50: support EMS 5.0
# EMS_SLIM: support only pure text content.
# EMS_40: support EMS 4.0
# EMS_ULC_SLIM: remove PLUTO MMI non used part, only remain support concatenate, port, R8 language handling
# (Currently only support Plutommi, other MMI version can't use!)
# Switch-ability:
# Non-switchable
SQLITE3_SUPPORT = FALSE
# Description:
# N/A
# Option Values:
# N/A
# Switch-ability:
# N/A
TCPIP_LOOP_SUPPORT = FALSE
# Description:
# When TCPIP_LOOP_SUPPORT is TRUE, __TCPIP_LOOP_BACK__ will be defined. WAP routes all the requests for "localhost" to 127.0.0.1.
# Option Values:
# TRUE: Enable LOOPBACK.
# FALSE: Disable LOOPBACK.
# Switch-ability:
# Non-switchable
TCPIP_SUPPORT = UDP_TCP
# Description:
# To enable TCP/UDP/IP.
# Option Values:
# NONE: Disable TCPIP
# TCP: Support TCP only.
# UDP_TCP: Support TCP and UDP.
# UDP: Use UDP.
# Switch-ability:
# Non-switchable
DHCPD_SUPPORT = FALSE
# Description:
# To enable dhcp server.
# Option Values:
# TRUE: Support DHCP server.
# FALSE: Disable dhcp server.
# Switch-ability:
# Non-switchable
UCM_SUPPORT = TRUE
# Description:
# NA
# Option Values:
# N/A
# Switch-ability:
# N/A
YAHOO_CONTENT_SUPPORT = FALSE
# Description:
# TRUE: To preload all licensed Yahoo applications.
# FALSE: Not to preload all licensed Yahoo applications.
# Option Values:
# TRUE: To preload all licensed Yahoo applications.
# FALSE: Not to preload all licensed Yahoo applications.
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Connectivity
BLUETOOTH_VERSION = BT_VER_30
# Description:
# descides which Bleutooth version is used
# Option Values:
# BT_VER_PRE21: If this value is set, it means the Bluetooth SPEC version supported by Bluetooth stack is older than 2.1.
# NONE: If Bluetooth is not supported(the BLUETOOTH_SUPPORT set to NONE). This option set to NONE also.
# BT_VER_30: If this value is set, it means Bluetooth stack supports Bluetooth SPEC version 3.0.
# BT_VER_21: If this value is set, it means Bluetooth stack supports Bluetooth SPEC version 2.1.
# BT_VER_PRE21_SINGLE_LINK: If this value is set, it means the Bluetooth SPEC version supported by Bluetooth stack is older than 2.1. And the supported link number is limited to single link only.
# Switch-ability:
# N/A
BT_AUTO_DETECT_SUPPORT = FALSE
# Description:
# To detect the existence of BT chip and show/hide BT MMI.
# Support BT chip: MT6612, MT6616, MT6622, MT6626
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
BT_A2DP_PROFILE = TRUE
# Description:
# To turn A2DP profile
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# N/A
BT_AVRCP_PROFILE = TRUE
# Description:
# To turn on/off AVRCP profile
# Option Values:
# TRUE: Turn on AVRCP Profile
# FALSE: Turn off AVRCP Profile
# Switch-ability:
# TRUE -> FALSE
BT_SEQ_SUPPORT = FALSE
# Description:
# N/A
# Option Values:
# N/A
# Switch-ability:
# N/A
BT_AUDIO_VIA_SCO = TRUE
# Description:
# To turn on/off Audio via Bluetooth SCO link feature
# Option Values:
# TRUE: Turn on audio via SCO function
# FALSE: Turn off audio via SCO function
# Switch-ability:
# TRUE -> FALSE
BT_FM_RADIO_VIA_SCO = TRUE
# Description:
# To turn on/off FM Radio via Bluetooth SCO link feature
# Option Values:
# TRUE: Turn on FM via SCO function
# FALSE: Turn off FM via SCO function
# Switch-ability:
# TRUE -> FALSE
AGPS_SUPPORT = NONE
# Description:
# It decides user plane or control plane is used.
# Option Values:
# BOTH: Enable both user-plane and control-plane.
# NONE: Disable AGPS feature.
# CONTROL_PLANE: Enable AGPS control-plane. (only used for the modem load on smart phone project)
# USER_PLANE: Enable AGPS user-plane. (SUPL) Use IP network to get assistance data.
# Switch-ability:
# Non-switchable
OMA_ULP_SUPPORT = NONE
# Description:
# It decides which OMA ULP version is used.
# AGPS will acceralte GPS TTFF, and also provide LBS service framework.
# Option Values:
# NONE: Disable SUPL feature. Only can be this value when AGPS_SUPPORT is NONE or CONTROL_PLANE.
# V1: Enable SUPL v1.0.
# Switch-ability:
# Non-switchable
RRLP_VER_SUPPORT = NONE
# Description:
# To change RRLP protocol version for both AGPS user plane and/or control plane.
# Option Values:
# NONE: Doesn't support RRLP (it also means both AGPS user plane and control plane are not supported)
# R5: Support RRLP for 3GPP R5
# Switch-ability:
# Non-switchable
USB_SUPPORT = TRUE
# Description:
# to enable USB function
# Option Values:
# TRUE: Enable USB
# FALSE: Disable USB
# Switch-ability:
# [Any] -> [Any]
USB_COM_PORT_SUPPORT = TRUE
# Description:
# Open Com Port function
# Option Values:
# TRUE: Enable USB comport
# FALSE: Disbale USB comport
# Switch-ability:
# N/A
USB_COMPORT_PC_DRIVER_SUPPORT = MS
# Description:
# Only if __TC01__ is defined
# then
# USB_COMPORT_PC_DRIVER_SUPPORT = TC01
# Option Values:
# TC01: TC01 comport driver
# MS: Microsoft comport driver
# Switch-ability:
# Non-switchable
BATTERY_CHARGING_SUPPORT = FALSE
# Description:
# enable battery charging .
# Option Values:
# TRUE: support BC1.1 spec
# FALSE: use MTK detection flow
# Switch-ability:
# Non-switchable
OTG_SUPPORT = FALSE
# Description:
# To enable OTG suuport feature
# Option Values:
# TRUE: Enable OTG
# FALSE: Disable OTG
# Switch-ability:
# Non-switchable
SYNCML_SUPPORT = FALSE
# Description:
# define __SYNCML_SUPPORT__ to specify if syncml is enabled.
# if yes, MMI and SYNCML tasks will refer to this compile option.
# Option Values:
# TRUE: Turn on SyncML support
# FALSE: Turn off SyncML support
# Switch-ability:
# Non-switchable
SYNCML_DEVICE_SYNC_SUPPORT = FALSE
# Description:
# To enable phone to phone sync
# Option Values:
# TRUE: Turn on device sync support
# FALSE: Turn off device sync support
# Switch-ability:
# Non-switchable
SYNCML_PC_SYNC_SUPPORT = FALSE
# Description:
# to enable SyncML with PC tool
# Option Values:
# TRUE: Turn on PC sync support
# FALSE: Turn off PC sync support
# Switch-ability:
# Non-switchable
SYNCML_DM_SUPPORT = FALSE
# Description:
# define SYNCML_DM_SUPPORT to specify if dm is enabled.
# if yes, MMI and DM tasks will refer to this compile option.
# Option Values:
# TRUE: enabile DM
# INSIGNIA_DM: enabile insignial DM
# FALSE: disable DM
# Switch-ability:
# Non-switchable
SYNCML_DM_VERSION = NONE
# Description:
# The version that project can support for DM.
# Option Values:
# DM11: DM 1.1
# NONE: DM 1.1
# DM12: DM1.2
# DM12_SCTS: SCTS tool test
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Multimedia
ATV_SUPPORT = SLIM
# Description:
# enable mobile atv feature support
# Option Values:
# SLIM:
# TRUE:
# FALSE:
# Switch-ability:
# SLIM -> FALSE
# TRUE -> FALSE
ATV_CHIP = VER01
# Description:
# This option is to indentify driver version.
# Option Values:
# VER00: atv chip version 5192
# VER01: atv chip version 5193
# Switch-ability:
# Non-switchable
ATV_I2S_PATH = TRUE
# Description:
# turn on I2S audio path for mATV feature
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
ATV_RECORD_SUPPORT = FALSE
# Description:
# enable mobile atv record feature
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
BACKGROUND_SOUND = FALSE
# Description:
# To enable the calling background sound feature.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# [Any] -> [Any]
JTONE_SUPPORT = FALSE
# Description:
# JTONE support is the tone interface in JAVA game or JAVA application,
# It should be open if J2ME_SUPPORT not equal to NONE.
# Option Values:
# TRUE: JAVA Tone Sequence Support
# FALSE: Not support JAVA Tone Sequence
# Switch-ability:
# Non-switchable
MEDIA_PLAYER_VER = SEPARATED
# Description:
# This feature option is to decide if MMI use two seperate player to play video and audio files
# or use an integrated media player to play these files.
# Also, the media player can use file system or SQLite as its play list by changing this option.
# Option Values:
# INTEGRATED_DB: Integrated audio and video player with auto category function by using database
# COSMOS_MUSIC_PLY: Cosmos MMI music player with auto category function
# SEPARATED: Seperated audio player and video player applications
# INTEGRATED: Integrate audio and video playback into a player
# Switch-ability:
# [Any] -> [Any]
M3GPMP4_FILE_FORMAT_SUPPORT = TRUE
# Description:
# 3GPMP4_FILE_FORMAT_SUPPORT is used to enable or disable to support mp4/3gp iso media file format
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
PURE_AUDIO_SUPPORT = FALSE
# Description:
# To support pure audio 3GP/MP4 files in audio player
# Option Values:
# TRUE: Turn on pure audio support
# FALSE: Turn off pure audio support
# Switch-ability:
# [Any] -> [Any]
#[Non-modifiable]# ------------------------------ Audio
AAC_DECODE = TRUE
# Description:
# To enable AAC decoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AAC_PLUS_DECODE = FALSE
# Description:
# To enable AAC PLUS decoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AAC_PLUS_PS_DECODE = FALSE
# Description:
# to enable aacPlus v2
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AIFF_DECODE = FALSE
# Description:
# AIFF decoder support
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AMR_CODEC = TRUE
# Description:
# AMR codec is a basic audio capability in general platforms. It supports file/stream AMR playback/record so it should be turned on in most cases. Only turn off it in ultra-low-cost platform to reduce memory usage . Consider carefully before turning off it.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AMRWB_DECODE = FALSE
# Description:
# Because MT6219 DSP can't support AMRWB_ENCODE when GPRS connection. We have to split decode and encode. MT6219 only support decode.
# Option Values:
# TRUE: Turn on AWB decoder
# FALSE: Turn off AWB decoder
# Switch-ability:
# Non-switchable
AMRWB_ENCODE = FALSE
# Description:
# Because MT6219 DSP can't support AMRWB_ENCODE when GPRS connection. We have to split decode and encode. MT6219 only support decode.
# Option Values:
# TRUE: Turn on AWB encoder
# FALSE: Turn off AWB encoder
# Switch-ability:
# Non-switchable
DEDI_AMR_REC = FALSE
# Description:
# To enable the AMR encoder for conversation recording.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
APE_DECODE = FALSE
# Description:
# APE audio file deocde
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AU_DECODE = FALSE
# Description:
# AU decoder support
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
COOK_DECODE = FALSE
# Description:
# for real media cook audio decoder support
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
DAF_DECODE = TRUE
# Description:
# To enable DAF decoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
DAF_ENCODE = FALSE
# Description:
# mp3 encoder for fm recording
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
DRA_DECODE = FALSE
# Description:
# DRA is a kind of audio codec for CMMB. This option is to enable or disable DRA decoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
M4A_DECODE = FALSE
# Description:
# To support .m4a file whose content is AAC.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
MUSICAM_DECODE = FALSE
# Description:
# add mp2 decoder
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
WAV_CODEC = TRUE
# Description:
# wav codec is a basic audio capability in general platforms. It supports linear PCM , u-law, a-law, ADPCM wav playabck/record so it should be turned on in most cases. Only turn off it in ultra-low-cost platform to reduce memory usage and it cause not only
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
WAVETABLE_VER = WT20K
# Description:
# Use the compiletion to choose a suitable wavetable for the system. The bigger the wavetable is, the higher quality it can provide.
# Option Values:
# WT_ROM_V2: only 6251 (one to one and onto)
# Wavetable Size
# WT100K: Wavetable Size
# WT600K: Wavetable Size
# WT150K: Wavetable Size
# WT70K: Wavetable Size
# WT20K: Wavetable Size
# WT_ROM_V1: only 6253
# Wavetable Size
# WT300K: Wavetable Size
# Switch-ability:
# [Any] -> [Any]
WMA_DECODE = FALSE
# Description:
# WMA (Window Media Audio) decoder.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
AUDIO_COMPENSATION_DSP_IIR_SUPPORT = FALSE
# Description:
# For audio IIR filter tuning. Only valid on MT6251. Otherchip could use BES_LOUDNESS_SUPPORT instead
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
AUDIO_COMPENSATION_ENABLE = FALSE
# Description:
# to enable Audio_EQ and Audio_Compensation_filter
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# N/A
AUD_RECORD = TRUE
# Description:
# Check if the platform support audio record.
# (1) Sound Recorder
# (2) FM Radio Recorder
# (3) Schedule FM Radio Record
# (4) Media Task record APIs
# Option Values:
# TRUE: Turn on audio record function
# FALSE: Turn off audio record function
# Switch-ability:
# TRUE -> FALSE
BITSTREAM_SUPPORT = FALSE
# Description:
# (1) support bitstream audio playback interface
# (2) support bitstream audio record interface
# Option Values:
# TRUE: Turn on bitstream interface
# FALSE: Turn off bitstream interface
# Switch-ability:
# [Any] -> [Any]
BES_BASS_SUPPORT = FALSE
# Description:
# add bass enhancement audio feature
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
BES_EQ_SUPPORT = FALSE
# Description:
# to enable Audio_EQ and Audio_Compensation_filter
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
BES_LIVE_SUPPORT = FALSE
# Description:
# To turn on audio post process (3D effect, time stretch) feature
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
BES_LOUDNESS_SUPPORT = TRUE
# Description:
# This feature option is used to switch the BesSound Loudness feature. If enabled, the volume of ring tone will be more louder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
BES_SURROUND_SUPPORT = NONE
# Description:
# to enable 3D surround,
# Option Values:
# MODE_EARP:
# MODE_BOTH:
# NONE:
# MODE_LSPK:
# Switch-ability:
# Non-switchable
BES_TS_SUPPORT = FALSE
# Description:
# To turn on audio post process time stretch feature
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
CTM_SUPPORT = FALSE
# Description:
# To turn on/off CTM, TTY feature
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
DSP_COMPRESS = 7Z
# Description:
# Compress DSP ROM code. Decompress into RAM at power on.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
DUAL_MIC_SUPPORT = FALSE
# Description:
# Enable/Disable the baseband dual microphone support capability. Only MT6256/6276 and later chip support it
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
I2S_INPUT_MODE_SUPPORT = TRUE
# Description:
# This feature option enables the I2S input mode
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
IP_COMMON_SUPPORT = FALSE
# Description:
# To use common SWIP.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
LARGE_MIDI_FILE_SUPPORT = FALSE
# Description:
# Support large size midi playback
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
MED_PROFILE = MED_LOW
# Description:
# To set the MED profile, MED_LOW means not support play audio from file.
# Option Values:
# MED_HIGH: Config MED task for plutommi/cosmos project
# MED_MODEM: Config MED task for Modem project
# MED_LOW: Config MED task for Neptune or low cost project
# Switch-ability:
# Non-switchable
MELODY_VER = DSP_WT_SYN
# Description:
# Choose the built-in melody synthesizer.
# Option Values:
# SW_SYN_16K:
# NONE:
# EXT_AUDIO_CHIP:
# SW_SYN_8K:
# DSP_WT_SYN: Midi synthesizer
# Switch-ability:
# Non-switchable
OGG_VORBIS_DECODE = FALSE
# Description:
# Support audio format .ogg playback
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
OGG_VORBIS_ENCODE = FALSE
# Description:
# Support .ogg format audio recording
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Speech
AEC_ENABLE = TRUE
# Description:
# For Acoustic Echo Cancellation (AEC)
# Option Values:
# TRUE: Support AEC in handset mode
# FALSE: Not Support AEC in handset mode
# Switch-ability:
# Non-switchable
AMRWB_LINK_SUPPORT = FALSE
# Description:
# If the compile option is true, our BB chip will support AMRWB voice call. If false, we won't support this function.
# Option Values:
# TRUE: Support WB-AMR link
# FALSE: Not Support WB-AMR link
# Switch-ability:
# Non-switchable
DATA_CARD_SPEECH = FALSE
# Description:
# Enable speech capablility via data card tool through PC speaker and microphone
# Option Values:
# TRUE: Enable data card speech
# FALSE: Disable Datacrad speech
# Switch-ability:
# Non-switchable
EES_ENABLE = TRUE
# Description:
# For Enhanced Echo Suppression (EES)
# Option Values:
# TRUE: Support AEC in speaker mode
# FALSE: Not Support AEC in speaker mode
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Video
CMMB_SUPPORT = NONE
# Description:
# To enable CMMB support
# Option Values:
# NONE: CMMB Is not supported
# NONE: CMMB Is not supported
# SIANO_SMS2186: CMMB is supported and vendor chip is SMS2186
# SIANO_SMS2186: CMMB is supported and vendor chip is SMS2186
# INNOFIDEI_IF228: CMMB is supported and vendor chip is IF228
# INNOFIDEI_IF228: CMMB is supported and vendor chip is IF228
# INNOFIDEI_IF106: CMMB is supported and vendor chip is IF206
# INNOFIDEI_IF106: CMMB is supported and vendor chip is IF206
# Switch-ability:
# [Any] -> [Any]
CMMB_CAS_MBBMS_SUPPORT = FALSE
# Description:
# N/A
# Option Values:
# TRUE: MBBMS is supported
# FALSE: MBBMS is not supported
# Switch-ability:
# [Any] -> [Any]
FLAC_DECODE = FALSE
# Description:
# FLAC (Free Lossless Audio Codec) decoder
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
H264_DECODE = FALSE
# Description:
# This option is used to turn on H264 decoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
H264_DECODE_MODE = SLIM
# Description:
# When this option is set as SLIM. The support resolution may be decreased in order to reduce memory.
# Option Values:
# SLIM: Enable slim-version of this feature
# NORMAL: Enable normal-version of this feature
# Switch-ability:
# NORMAL -> SLIM
# SLIM -> NORMAL
MP4_DECODE = TRUE
# Description:
# Turn on/off and set MP4/H264 decode/encode to SW/HW solution
# Option Values:
# TRUE:
# MP4_SW:
# NONE:
# FALSE:
# MP4_HW:
# Switch-ability:
# TRUE -> FALSE
MP4_DECODE_MODE = SLIM
# Description:
# When this option is set as SLIM. The support resolution will be decreased in order to reduce memory.
# Option Values:
# SLIM:
# NONE:
# NORMAL:
# Switch-ability:
# NORMAL -> SLIM
# SLIM -> NORMAL
PGDL_SUPPORT_YOUTUBE = FALSE
# Description:
# To support PGDL on Youtube website
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
KINGMOVIE_FILE_FORMAT_SUPPORT = FALSE
# Description:
# KINGMOVIE_FILE_FORMAT_SUPPORT is used to enable or disable to support kmv media file format
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
MP4_ENCODE = FALSE
# Description:
# Turn on/off and set MP4/H264 decode/encode to SW/HW solution
# Option Values:
# TRUE: TRUE to enable MPEG-4 encoder
# MP4_SW: Not supported anymore
# NONE: Not supported anymore
# FALSE: FALSE to disable MPEG-4 encoder
# MP4_HW: Not supported anymore
# Switch-ability:
# TRUE -> FALSE
MP4_ENCODE_MODE = SLIM
# Description:
# When this option is set as SLIM. The support resolution may be decreased in order to reduce memory.
# Option Values:
# SLIM: Reduce MP4 encode resolution and memory usage
# NORMAL: No reduction of maximum resolution for MP4 encode and thus no memory reduction
# Switch-ability:
# [Any] -> [Any]
MJPG_DECODE_MODE = SLIM
# Description:
# When this option is set as SLIM. The support resolution may be decreased in order to reduce memory.
# Option Values:
# SLIM:
# NORMAL:
# Switch-ability:
# [Any] -> [Any]
MKV_FILE_FORMAT_SUPPORT = FALSE
# Description:
# MKV_FILE_FORMAT_SUPPORT is used to enable or disable to support mkv media file format
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
RTSP_SUPPORT = FALSE
# Description:
# to enable streaming function
# Option Values:
# TRUE: open this feature
# FALSE: not open this feature
# Switch-ability:
# Non-switchable
VIDEO_SUBTITLE_SUPPORT = FALSE
# Description:
# VIDEO_SUBTITLE_SUPPORT is used to enable or disable to support video subtitle
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Camera
CAMCORDER_MOTION_SENSOR_SUPPORT = NONE
# Description:
# Camcorder support motion sensor direction to capture or record. It makes users could user any direction to capture or record and the content will be upright
# Option Values:
# NONE: Disable this feature
# BOTH_BY_TAG: Camera and recorder both use the way of adding tag information to header
# BOTH_BY_ENCODE: Camera and recorder both use the way of encoding rotation.
# CAM_BY_ENCODE_REC_BY_TAG: Camera uses the encoding rotation. Recorder uses adding tag information.
# CAM_BY_TAG_REC_BY_ENCODE: Camera uses adding tag information. Recorder uses encoding rotation.
# Switch-ability:
# Non-switchable
ISP_SUPPORT = TRUE
# Description:
# To enable BB embeded image signal processor for camera applications.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Graphic
JPG_DECODE = TRUE
# Description:
# To enable jpeg decoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
JPG_ENCODE = TRUE
# Description:
# To enable jpeg encoder.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
EXIF_SUPPORT = FALSE
# Description:
# Turn On/Off Exif feature. EXIF is abbreviation of Exchangeable Image File Format.
# It's a specification for the image file format sued by digital cameras.
# I can embedded some information into image files, such as shutter speed, explosure time, etc.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
PNG_DECODE = FALSE
# Description:
# To enable png decoder.
# Option Values:
# TRUE:
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Security
BOOT_CERT_SUPPORT = NONE
# Description:
# Make hacker can not abuse download the binary and boot-up successfully
# Option Values:
# NONE: Disable this feature
# BOOT_CERT_V1: BOOT_CERT_V1 make the built binary must combine with a BOOT_CERT file. Hacker can not download stolen binary into a empty phone and boot-up successfully.
# BOOT_CERT_V2: BOOT_CERT_V2 will cover BOOT_ECRT_V1 scope plus read back attack
# Switch-ability:
# Non-switchable
RC5_SUPPORT = FALSE
# Description:
# to enable RC5 crypto support in security library
# This is to turn off RC5 cipher algorithm used in Obigo WAP solution.
# Customer will need to turn off this cipher if the handset is shipped to US by US law.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
SECURE_SUPPORT = FALSE
# Description:
# Support security system
# Option Values:
# TRUE: Secure load
# FALSE: Non-secure load
# Switch-ability:
# Non-switchable
SECURE_RO_ENABLE = FALSE
# Description:
# Putting default values of SIM-ME-Lock and any other senitive data in put a encrypted RO.
# Option Values:
# TRUE: To enable Secure RO
# FALSE: To disable Secure RO
# Switch-ability:
# Non-switchable
RES_PROT = FALSE
# Description:
# RES_PROT is the enhanced anticlone mechenism which not only protect the code, also the data
# It's for customer who have concern about the own picture and ringtons that may be stolen by read-out image
# Option Values:
# TRUE: Enable encryption on some important resource data
# FALSE: Resource protection is disabled
# Switch-ability:
# Non-switchable
SW_BINDING_SUPPORT = NONE
# Description:
# These 2 options are used to replace original UID_SUPPORT.
# SW_BINDING_SUPPORT specifies what kind of anticlone feature for the main code is enabled.
# BIND_TO_CHIP_BASIC is the same type as original UID_SUPPORT
# BIND_TO_CHIP is the new type which can support FOTA
# BIND_TO_KEY is the new type which can bind software to a customer defined key in the chip (SV5 only)
# BIND_TO_CHIP_AND_KEY is the combination of BIND_TO_CHIP and BIND_TO_KEY
# Option Values:
# BIND_TO_CHIP_AND_KEY: BIND_TO_CHIP plus BIND_TO_KEY
# BIND_TO_CHIP_BASIC: Enable software binding. is the same type as original UID_SUPPORT
# NONE: Software bindnig is off
# BIND_TO_CHIP: Enable software binding which can support FOTA
# BIND_TO_KEY: Enable software binding which can support ROM writer
# Switch-ability:
# Non-switchable
VERIFY_ALL_IMAGES = FALSE
# Description:
# While this FO is set to TRUE, all images will be verified
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Modem
EDGE_SUPPORT = FALSE
# Description:
# Enable EDGE support Only applicable to 6229 latter version
# Option Values:
# TRUE: EGPRS enable
# FALSE: EGPRS enable
# Switch-ability:
# Non-switchable
USIM_SUPPORT = TRUE
# Description:
# Support USIM card commands or not(TRUE: support; FALSE: not support)
# Option Values:
# TRUE: Enable the capability to operate USIM as USIM card, instead of SIM card.
# FALSE: Operate USIM as SIM
# Switch-ability:
# Non-switchable
UMTS_MODE_SUPPORT = NONE
# Description:
# The option is to switch the FDD or TDD mode for 3G modem
# Option Values:
# UMTS_TDD128_MODE_SUPPORT: 3G modem in TDD mode
# UMTS_FDD_MODE_SUPPORT: 3G modem in FDD mode
# NONE: None of 3G modem mode is supported.
# Switch-ability:
# Non-switchable
HSUPA_SUPPORT = FALSE
# Description:
# Define if UE supports HSUPA feature. (TRUE/FALSE)
# Option Values:
# TRUE: HSUPA is support
# FALSE: HSUPA is not support
# Switch-ability:
# Non-switchable
AMR_LINK_SUPPORT = TRUE
# Description:
# Support AMR link, channel codec and RATSCCH procedure, with base station.
# Option Values:
# TRUE: AMR enable
# FALSE: AMR disable
# Switch-ability:
# Non-switchable
AT_COMMAND_SET = ULC
# Description:
# set AT_COMMAND_SET = FULL for all projects
# FULL means the same setting in current existed project.s
# So it will not impact any existed project.
# Option Values:
# SLIM: support BT HF/DUN commands, phonesuite commands, dial up programs, and EM AT commands
# ULC: support BT HF commands and EM AT commands
# FULL: all AT commands are supported
# Switch-ability:
# Non-switchable
CB_SUPPORT = FALSE
# Description:
# Wrap the functionality - "CB" - for switchable
# Option Values:
# FALSE: Disable CBS function
# TRUE: Enable CBS function
# Switch-ability:
# Non-switchable
CSD_SUPPORT = NONE
# Description:
# for CSD support
# Option Values:
# T_NT: .
# TRUE: CSD enable
# NT_ONLY: .
# NONE: .
# FALSE: CSD disable
# Switch-ability:
# Non-switchable
GPRS_MAX_PDP_SUPPORT = 1
# Description:
# Maximum simultaneous PDP contexts (2~7)
# Option Values:
# 6: Maximum simultaneous PDP contexts is six
# 4: Maximum simultaneous PDP contexts is four
# 1: Maximum simultaneous PDP contexts is one
# 3: Maximum simultaneous PDP contexts is three
# 7: Maximum simultaneous PDP contexts is seven
# 2: Maximum simultaneous PDP contexts is two
# 5: Maximum simultaneous PDP contexts is five
# Switch-ability:
# Non-switchable
L1_EGPRS = FALSE
# Description:
# this compile option is only used for L1 Stand alone to turn on/off EDGE function
# Option Values:
# TRUE: EGPRS enable
# FALSE: EGPRS disable
# Switch-ability:
# Non-switchable
L1_EPSK_TX = FALSE
# Description:
# Turn on/off this compile option may switch the function of EPSK modulation transmitter
# Option Values:
# TRUE: EPSK TX enable
# FALSE: EPSK TX disable
# Switch-ability:
# Non-switchable
L1_GPRS = TRUE
# Description:
# Turn on the GPRS support of Layer 1
# This is used for internal test
# Option Values:
# TRUE: GPRS enable
# FALSE: GPRS disable
# Switch-ability:
# Non-switchable
MCD_SUPPORT = TRUE
# Description:
# to enable MediaTek Message Coder Decoder feature for GSM/GPRS/EDGE project
# Option Values:
# TRUE: Enable MCD (default)
# FALSE: Disable MCD
# Switch-ability:
# Non-switchable
PPP_SUPPORT = NONE
# Description:
# The option is used to define ppp module's function. We can turn off ppp, or set PPP module's function as csd ppp support or gprs ppp support used FP as modem for dialup
# Option Values:
# FULL_SUPPORT: PPP used for supporting these two functions
# GPRS_PPP_SUPPORT: PPP used for supporting dialup as a modem for PC
# NONE: Turn off PPP
# CSD_PPP_SUPPORT: PPP used for supporting tcpip over csd option
# Switch-ability:
# Non-switchable
SMART_PHONE_CORE = NONE
# Description:
# To distinguish if it is a smart phone MODEM makefile or a smart phone APP makefile. NONE means it is not a smart-phone make file
# Option Values:
# AP: in-house testing load running on application processor
# NONE: .
# WM_MODEM: modem processor software load for Windows Mobile smart phone
# MD: in-house testing load running on modem processor
# ANDROID_MODEM: modem processor software load for Android smart phone
# Switch-ability:
# Non-switchable
SP_VIDEO_CALL_SUPPORT = FALSE
# Description:
# Enable Video Call Modem Capability for Smartphone project
# Option Values:
# TRUE: Turn on Video Call Support for Smartphone
# (conflict w/ 3G_VIDEO_CALL)
# FALSE: Turn off Video Call Support for Smartphone
# Switch-ability:
# Non-switchable
SMS_OVER_PS_SUPPORT = FALSE
# Description:
# Wrap the functionality - "SMS over PS" - for switchable
# Option Values:
# TRUE: Enable SMS send over PS
# FALSE: Disable SMS send over PS
# Switch-ability:
# Non-switchable
UMTS_RELEASE_SUPPORT = NONE
# Description:
# The option is to switch different version of release for 3G modem
# Option Values:
# UMTS_R6_SUPPORT: 3G modem supports Rel6
# UMTS_R4_SUPPORT: 3G modem supports Rel4
# UMTS_R5_SUPPORT: 3G modem supports Rel5
# Switch-ability:
# Non-switchable
MODEM_CARD = NONE
# Description:
# Target is data card module.
# Option Values:
# CS_CALL_DISABLE: Data card project, has ability to disable CS call
# FULL: Data card project
# NONE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ TD-SCDMA
# Description:
# Define the HSUPA category in makefile.
# Option Values:
# 6: EDCH Physical category = 6
# 4: EDCH Physical category = 4
# 1: EDCH Physical category = 1
# 3: EDCH Physical category 3
# 2: EDCH Physical category = 2
# 5: EDCH Physical category = 5
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ File system and System service
FACTORY_BOOT_BY_KEY = FALSE
# Description:
# This feature option is used for future enhancement, currently it will impact nothing.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
FS_CHECKDRIVE_SUPPORT = FALSE
# Description:
# Both File System and File Manager support Scan Disk function. System will ask user to do check disk at boot time if the phone was abnormal shutdown last time. Also, user can do that by selecting it from disk menu anytime.
# Option Values:
# TRUE: To enable FS Check Drive
# FALSE: To disable FS Check Drive
# Switch-ability:
# [Any] -> [Any]
FS_QM_SUPPORT = TRUE
# Description:
# File System will support quota management mechanism on system drive. The mechanism prevents exhausted system drive from single application.
# Option Values:
# TRUE: To enable FS Quota Management
# FALSE: To disable FS Quota Management
# Switch-ability:
# [Any] -> [Any]
FS_SORT_SUPPORT = FALSE
# Description:
# Both File System and File Manager support Sort function. User can browse folders/files with sorted order.
# Option Values:
# TRUE: To enable FS Sorting
# FALSE: To disable FS Sorting
# Switch-ability:
# [Any] -> [Any]
FS_TRACE_SUPPORT = FALSE
# Description:
# File System will provide run-time trace information with proper configure. The trace information is very helpful to identify problem source.
# Option Values:
# TRUE: To enable FS debug messange
# FALSE: To disable FS debug messange
# Switch-ability:
# [Any] -> [Any]
FS_ASYNC_SUPPORT = FALSE
# Description:
# File system supports handling requests asynchronously, i.e. in FS task.
# Option Values:
# ON: To enable FS Async Interface.
# OFF: To disable FS Async Interface.
# Switch-ability:
# [Any] -> [Any]
NVRAM_PSEUDO_MERGE = ON
# Description:
# NVRAM will combine small files and this will transparent to applications.
# Option Values:
# ON: To enable NVRAM pseudo merge
# OFF: To disable NVRAM pseudo merge
# Switch-ability:
# [Any] -> [Any]
KAL_DEBUG_LEVEL = RELEASE_KAL
# Description:
# Control the major KAL debugging facility availability and behavior. More debugging facility consume more extra RAM footprint.
# Less debugging facility may suffer extra effort to locate root cause of issue.
# RICH_DEBUG_KAL > NORMAL_DEBUG_KAL > SLIM_DEBUG_KAL > RELEASE_KAL.
# Default Setting : MT6251, MT6252, MT6253 => SLIM_DEBUG_KAL
# Other Platform Project => NORMAL_DEBUG_KAL
# Option Values:
# RELEASE_KAL: .
# SLIM_DEBUG_KAL: .
# RICH_DEBUG_KAL: .
# NORMAL_DEBUG_KAL: .
# Switch-ability:
# N/A
KAL_ASSERT_LEVEL = KAL_ASSERT_LEVEL0
# Description:
# Setup KAL assert level
# 3: for full debugging facility support
# 0: for minimal debugging facility support
# Option Values:
# KAL_ASSERT_LEVEL3: .
# KAL_ASSERT_LEVEL2: .
# KAL_ASSERT_LEVEL0: .
# KAL_ASSERT_LEVEL1: .
# KAL_ASSERT_LEVEL4: save entire CPU registers
# Switch-ability:
# Non-switchable
KEYPAD_DEBUG_TRACE = TRUE
# Description:
# Enable bootup trace with keypad
# Option Values:
# TRUE: Enable
# FALSE: Disable
# Switch-ability:
# Non-switchable
SPLIT_BINARY_SUPPORT = NONE
# Description:
# This is used to split normal binary & factory binary
# Option Values:
# FACTORY_ONLY: This is used to create factory only project
# MAUI_ONLY: The will create MAUI only binary which does not have factory functionality
# NONE: Disable this feature
# FACTORY_COMBINE: MAUI/FACTORY binaries can be download in the same downloading process
# Switch-ability:
# Non-switchable
SDS_SUPPORT = FALSE
# Description:
# create a dsecure data storage to make customer can store data without erased by file system format
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Flash
NAND_SUPPORT = FALSE
# Description:
# To enable NAND flash support, please set NAND_SUPPORT as TRUE.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
SPI_NAND_SUPPORT = FALSE
# Description:
# Description:
# To enable SPI-NAND flash support, please set SPI_NAND_SUPPORT as TRUE.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
SYSTEM_DRIVE_ON_NAND = FALSE
# Description:
# To use NAND flash as system drive,
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# [Any] -> [Any]
NAND_SUPPORT_RAW_DISK = FALSE
# Description:
# NAND Disk can be access without file system format
# Option Values:
# TRUE: Enable NAND RAW disk support
# FALSE: Disable NAND RAW disk support. Normal project should be FALSE.
# Switch-ability:
# Non-switchable
NORFLASH_NON_XIP_SUPPORT = FALSE # Description:
# When this feature is enabled, the ROM region will shadow to RAM when NOR flash booting
# Option Values:
# TRUE: Enable nor-flash non-xip support
# FALSE: Disable nor-flash non-xip support. Normal project should be FALSE.
# Switch-ability:
# Non-switchable
ENHANCED_SINGLE_BANK_NOR_FLASH_SUPPORT = TRUE
# Description:
# to enable enhanced single bank NOR flash support.
# Option Values:
# TRUE: Enable Single Bank support
# FALSE: Disable Single Bank support
# Switch-ability:
# Non-switchable
SYSDRV_BACKUP_DISK_SUPPORT = NONE
# Description:
# System drive support backup disk option.
# Option - RAW, FAT or NONE (MAUI)
# Option - TRUE or FALSE (Lipton project)
# RAW : Enable Backup Partition with Raw Disk Format Feature.
# FAT/TRUE : Enable Backup Partition with FAT Format Feature.
# NONE/FALSE : Disable Backup Partition for NOR and NAND.
# Purpose
# (1) Support NVRAM Data Backup Feature.
# Usage
# (1) Set to RAW/FAT.
# Limitation
# (1) Currently NOR flash does not support FAT format backup disk.
# (2) Currently NAND flash does not support Raw format backup disk.
# (3) Must set NOR_SUPPORT_RAW_DISK=TRUE if backup paritition is raw disk format.
# Option Values:
# NONE: System Drive backup to disk is not supported
# FAT: System Drive backup to disk is supported, the disk is FAT Format
# RAW: System Drive backup to disk is supported, the disk is RAW Format
# Switch-ability:
# Non-switchable
SIP_SERIAL_FLASH_SIZE = 32M_BITS
# Description:
# MT6252D SIP 16Mb serial flash and MT6250D SIP 32Mb serial flash. This feature option notifies EMI gen to generate SIP serial flash setting.After set this value other than NONE, need to set COMBO_MEMORY_SUPPORT to TRUE also.
# Option Values:
# NONE: No serial flash SIP inside.
# 16M_BITS: SIP 16Mb serial flash
# 32M_BITS: SIP 32Mb serial flash
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Memory card
MSDC_CARD_SUPPORT_TYPE = MSDC_SD_MMC
# Description:
# to support various memory card type
# Option Values:
# MSDC_SD_MMC: Enable SD/MMC card support
# NONE: Disable memory card support
# Switch-ability:
# MSDC_SD_MMC -> NONE
CARD_DOWNLOAD = NONE
# Description:
# When this option is not NONE, Card Download will be enabled. It will turn on Bootloader and add some LCD and T-Flash dirver in it.
# Option Values:
# NONE: Disable Card Download
# FILESYSTEM_ON_CARD: Enable Card DL. The memory card needs to be formated as FAT/FAT32. In other words, the download package can be directly copied into T-flash by Windows. It is the recommanded option for enabling Card DL.
# RAW_FORMAT_CARD: Enable Card DL. The image is copied into card via an extra card writer with RAW format. The original content in the card will lost after using the card writer.
# Switch-ability:
# Non-switchable
DUAL_MEMORY_CARD_SUPPORT = NONE
# Description:
# N/A
# Option Values:
# N/A
# Switch-ability:
# N/A
#[Non-modifiable]# ------------------------------ Tools
GAS_SUPPORT = TRUE
# Description:
# This feature is for ATA Tool test on BT & WIFI.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
L1_CATCHER = TRUE
# Description:
# to enable L1 logging.
# Option Values:
# TRUE: Enable
# FALSE: Disable
# Switch-ability:
# Non-switchable
LQT_SUPPORT = TRUE
# Description:
# Support LCM Qualification auto-measurement
# Option Values:
# TRUE: Default:
# can use LCM Qualification tool
# FALSE: Can't use LCM Qualification tool
# Switch-ability:
# Non-switchable
TST_LOGACC_SUPPORT = FALSE
# Description:
# to enable the LogAcc HW Support for TST.
# Option Values:
# TRUE: Enable
# TRUE: Enable
# FALSE: Disable
# FALSE: Disable
# Switch-ability:
# Non-switchable
TST_SET_LOG_BUF_SIZ = NONE
# Description:
# This option allow users to set the desired logging buffer size.
# With this option, user could have a large logging buffer and reduce the probability of log drop.
# It's useful for a feaure testing under QC.
# Option Values:
# NONE: Invalidate this setting
# 13-23: Set the logging buffer as (2^n) bytes
# Switch-ability:
# Non-switchable
2G_RF_CUSTOM_TOOL_SUPPORT = FALSE
# Description:
# 2G_RF_CUSTOM_TOOL_SUPPORT set to TRUE is to enable the feature of 2G RF custom setting modified by modem bin update tool and can modify the value by NVRAM editor
# For UMTS FDD dual mode projects, if user want to enable this feature, 2G_RF_CUSTOM_TOOL_SUPPORT need to set to TRUE. And customer can not modify it by himself, needs to ask for flavor build (lock build)
#
# 2G_RF_CUSTOM_TOOL_SUPPORT feature options are default disabled on 11AW1112MP and 11AW1112_MOTO_ODM_SP (due to it is a patch back feature), but is default enabled on 11AMDW1119SP and 11A (thus default enabled on 11B)
# Option Values:
# TRUE: Enable the feature of 2G/3G RF custom setting and band support setting modified by modem bin update tool and can modify the value by NVRAM editor
# FALSE: Disable the feature of 2G/3G RF custom setting and band support setting modified by modem bin update tool and also can not modify the value by NVRAM editor
# Switch-ability:
# Non-switchable
FDD_RF_CUSTOM_TOOL_SUPPORT = FALSE
# Description:
# FDD_RF_CUSTOM_TOOL_SUPPORT set to TRUE is to enable the feature of 3G RF custom setting and band support setting modified by modem bin update tool and can modify the value by NVRAM editor
#
#
#
# For UMTS FDD dual mode projects, if user want to enable this feature, both FDD_RF_CUSTOM_TOOL_SUPPORT need to set to TRUE. And customer can not modify it by himself, needs to ask for flavor build (lock build)
#
# FDD_RF_CUSTOM_TOOL_SUPPORT feature options are default disabled on 11AW1112MP and 11AW1112_MOTO_ODM_SP (due to it is a patch back feature), but is default enabled on 11AMDW1119SP and 11A (thus default enabled on 11B)
# Option Values:
# TRUE: Enable the feature of 2G/3G RF custom setting and band support setting modified by modem bin update tool and can modify the value by NVRAM editor
# FALSE: Disable the feature of 2G/3G RF custom setting and band support setting modified by modem bin update tool and also can not modify the value by NVRAM editor
# Switch-ability:
# Non-switchable
SWITCHABLE_FEATURE = KAL_TRACE_OUTPUT
SWITCHABLE_FEATURE_2ND = GEMINI
DT_SUPPORT = FALSE
# Description:
# This option is used to Turn on/off PC tool Phonesuite File manager related functions. If set FALSE, Phonesuite File manager will not available.
# Option Values:
# FLASE: Turn off DT_SUPPORT, In this case PC tool "phonesuite" can use only limited functions(function like file manager is disabled)
# TRUE: Turn on DT_SUPPORT, So MediaTek PC tool "Phonesutie" file manager related functions can be used
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Java
J2ME_SUPPORT = NONE
# Description:
# Modify J2ME_SUPPORT options to meet future 3rd party VM solution
# Option Values:
# J2ME_LIB: Not supported now
# NONE: Not support Java
# IJET: RollTech Java solution
# JBLENDIA: Aplix Java solution
# JBED: Not supported now
# MTK_DUMMY_MVM: J2ME_VM can be NONE. Not supported now.
# Switch-ability:
# Non-switchable
J2ME_VM = NONE
# Description:
# J2ME_VM = HI_VM # J2ME VM: NONE, KVM, KVM_SOURCE, HI_VM, HI_VM_SOURCE, JAZELLE
# Option Values:
# JAZELLE: Phase out
# HI_VM_SOURCE: VM sources (Used by VM vendor)
# NONE: Java is disable
# HI_VM: Hot spot VM
# KVM_SOURCE: VM sources (Used by VM vendor)
# KVM: Kilo bytes VM
# Switch-ability:
# Non-switchable
J2ME_MAX_LAUNCH_NUM = 0
# Description:
# Define the Maximum number of VM that can be executed concurrently
# Option Values:
# 4: Java concurrent VM count is 4
# 1: Java concurrent VM count is 1
# 3: Java concurrent VM count is 3
# 2: Java concurrent VM count is 2
# 5: Java concurrent VM count is 5
# Switch-ability:
# Non-switchable
J2ME_SLIM_MEMORY_SUPPORT = FALSE
# Description:
# To enable J2ME_SLIM_MEMORY_SUPPORT, J2ME_SHARE_MED_EXT_MEM must also be enabled. Once enable J2ME_SLIM_MEMORY_SUPPORT, the global memory used by Java will be shrunk for 210K on QVGA, 6252 and the background running will be supported. Since Java will use MED memory in background running with this compile option, all applications using MED memory can not be concurrent. If we want to integrate any third party application using MED memory, we should
# 1. test if MED has enough memory, if not, please pop up an error dialog and prevent the user entering Java, or,
# 2. Allocate the full ASM memory when entering the application. Since Java will also allocate some ASM memory, once the application allocates the whole memory, an out-of-memory dialog will be shown and the user can use it to terminate Java.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# NO_JSR135_VIDEO: If use the compile option, we'll disable Java video playback, recording, and camera capture.
# Switch-ability:
# Non-switchable
SUPPORT_JAVA_NOKIA_UI = FALSE
# Description:
# On Aplix solution (J2ME_SUPPORT = JBLENDIA), Once SUPPORT_JAVA_NOKIA_UI is TRUE, SUPPORT_JSR_75_PIM, SUPPORT_JSR_205 must be true and J2ME_FEATURE_SET must be JTWI. Aplix kernal libraries will be the files under \mcu\j2me\vm\Jblendia\lib\CLDCHI_JTWI10_FC_
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
SUPPORT_JSR_177 = FALSE
# Description:
# Support Java security API. When SUPPORT_JSR_177 is TRUE inproject make file, SUPPORT_JSR_177 must be defined in projgram.
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# Non-switchable
SUPPORT_JSR_257 = FALSE
# Description:
# Support Java JSR-257 for NFC control. Please add a dependency in JAVA_DEF.mak that UPPORT_JSR_177 and NFC_SUPPORT must be both TRUE. When SUPPORT_JSR_257 feature option is TRUE in project make file, SUPPORT_JSR_257 compiile option must also be true.
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ VoIP
SDP_SUPPORT = FALSE
# Description:
# to enable SDP function which will be used by PoC, VoIP, Video Streaming, etc
# Option Values:
# TRUE: Enable SDP(Session Description Protocol). It is used in streaming features.
# FALSE: Disable SDP.
# Switch-ability:
# N/A
#[Non-modifiable]# ------------------------------ Wifi
WIFI_SUPPORT = NONE
# Description:
# General compile option for WiFi features.
# Option Values:
# MT5931: WIFI CHIP Version
# NONE: Disable this feature
# Switch-ability:
# Non-switchable
WIFI_AUTHENTICATION_LEVEL = WIFI_AUTHENTICATION_PSK_ONLY
# Description:
# Compile option for WIFI security method
# Option Values:
# WIFI_AUTHENTICATION_FULL_EAP: WIFI WPA/WPA2 Enterpise
# WIFI_AUTHENTICATION_PSK_ONLY: WIFI WPA/WPA2 PSK
# Switch-ability:
# Non-switchable
WIFI_BT_SINGLE_ANTENNA_SUPPORT = FALSE
# Description:
# for SW control the new HW broad design of WIFI/BT single antenna
# Option Values:
# TRUE: Enable BT WIFI single antenna feature
# FALSE: Disable BT WIFI single antenna feature
# Switch-ability:
# Non-switchable
WIFI_BT_SINGLE_ANTENNA_DESIGN = NONE
# Description:
# 1. Bluetoot/WLAN Single antenna add a new hardware design. Therefore, WIFI_BT_SINGLE_ANTENNA_SUPPORT is not enought to switch.
# Option Values:
# FDD: single antenna with coupler
# TDD: single antenna without coupler
# NONE: Disable this feature
# Switch-ability:
# Non-switchable
WAPI_SUPPORT = FALSE
# Description:
# for WAPI feature suuport
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
WNDRV_SUPPORT = LIB
# Description:
# When BM builds the code, the value should be set to SOURCE.
# The compiled library should be put in "\mcu\custom\drv\wifi\Project_Name\lib\".
# When BM releases the code, the value should be set to LIB. And the
# wndrv should be always linked as a library.
# Option Values:
# LIB:
# SOURCE:
# Switch-ability:
# Non-switchable
WPS_SUPPORT = FALSE
# Description:
# To support WiFi Protect Setup
# Option Values:
# TRUE: enable WPS
# FALSE: disable WPS
# Switch-ability:
# Non-switchable
HOTSPOT_SUPPORT = FALSE
# Description:
# Enable or disable hotspot feature.
# Option Values:
# TRUE: Enable the hotspot feature.
# FALSE: disable the hotspot feature.
# Switch-ability:
# Non-switchable
IPERF_SUPPORT = NONE
# Description:
# Detect compile option conflict for IPERF_SUPPORT.
# Iperf (http://dast.nlanr.net/Projects/Iperf/) is an open source software for throughput measurement, especially for Wi-Fi.
# Wi-Fi alliance uses it as the benchmark tool for certification program.
# To passed
# Option Values:
# QUAD: create 4 iperf tasks.
# DUAL: create 2 iperf tasks.
# NONE: not open this feature
# TRIPLE: create 3 iperf tasks.
# SINGLE: create 1 iperf tasks.
# Switch-ability:
# Non-switchable
IPERF_WMM_PS_TEST_SUPPORT = FALSE
# Description:
# Wrap some license request code. When customer need this part and the customer have the authority, this feature could be turn on.
# Option Values:
# TRUE: open this feature
# FALSE: not open this feature
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Operator
OPTR_SPEC = NONE
# Description:
# Operator spec name, version and segment
# Option Values:
# CMCC_TDULC_GENERAL: CMCC TD2.0 Ultra Low Cost project, e.g. TD 128+64 project.
# VODAFONE_R15_ENTRY3G: Vodafone R15 Entry3G version
# ORANGE_0905_COMMASS: Orange 9.0 COMMASS version
# NONE: General version (none operator)
# VODAFONE_R12_LIVE: Vodafone R12 Live version
# CMCC_TD0200_GENERAL: CMCC TD2.0 General project
# UNICOM_0200_GENERAL: China Unicom 2.0 version
# ORANGE_0800_MEDIAENTRY: Orange 8.0 MEDIAENTRY version
# ORANGE_0605_CAM240: Orange 6.5 CAM240 version
# CMCC_0204_SEGC: CMCC 2G spec v2.4 Segment C project
# CMCC_FWPBW_GENERAL: CMCC 3G TD Fix Wireless Phone Black&White General project
# CMCC_FWPCOLOR_GENERAL: CMCC 3G TD Fix Wireless Phone Color General project
# ATT_0402_ADAPT: AT&T 4.2 Adapt Project (Only Modem customized)
# Switch-ability:
# Non-switchable
DM_MO_SUPPORT = NONE
# Description:
# To support DM Management Object
# Option Values:
# NONE: not support lawmo and scomo
# SCO: scomo
# LAW: lawmo
# LAW_SCO: lawmo and scomo
# Switch-ability:
# Non-switchable
MOBILE_VIDEO_SUPPORT = NONE
# Description:
# CMCCTD Key feature, which let user play video by network
# Option Values:
# NONE: Not Define this feature
# WONDER: Define this feature
# Switch-ability:
# WONDER -> NONE
#[Non-modifiable]# ------------------------------ TC01
TC01_OAEP_SUPPORT = FALSE
# Description:
# LGE audio effect package for opera.
# Currently, it only contains EQ and loudness.
# LGE will replace the library with Dolby by themselve.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
TC01_BT_SYSTEM_SUPPORT = FALSE
# Description:
# LGE uses its own A2DP library without release any header file or library.
# We provide the sample code for LGE integration.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# TRUE -> FALSE
TC01_VOICE_ENGINE = FALSE
# Description:
# LGE has Voice Clarity and Voice Stabilizer engine to provide DRC and DL NR function, this feature option is wrapping their engine into our driver. Since this their engine, only LGE project can open this option.
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# Non-switchable
#[Non-modifiable]# ------------------------------ Others
CUSTOMER_SPECIFIC_FACTORY_DETECTION = NONE
# Description:
# Customer specific factory mode detection mechanism
# Some customers may have their own factory mode definition, the mechanism can help to mapping customer specific factory mode to system mode
# Option Values:
# NONE: .
# CS_FAC_DET_TYPE_1: Use this type of factoty detection algorithm
# Switch-ability:
# Non-switchable
CLASSAB_LOW_VOLTAGE_VOLUME_PROTECTION = FALSE
# Description:
# For MT6253, If the battary is low, reduce class AB volume to prevent power down
# Option Values:
# TRUE:
# FALSE:
# Switch-ability:
# FALSE -> TRUE
PACKAGE_SEG = 32_32_SEG
# Description:
# To identify the package by MCP combination that MTK prepared for difference chipsets. If XX_YY_SEG be configured, then __XX_YY_SEG__ compile option defined for module owners to wrap the code for specific configuration or design for this package.
# Option Values:
# 2G_1G_SEG: for 2G+1G segment
# 1G_512_SEG: for 1G+512 segment
# 512_256_SEG: for 512+256 segment
# 128_32_SEG: for 128+32 segment
# 64_32_SEG: for 64+32 segment
# 32_32_SEG: for 32+32 segment
# 16_32_SEG: for 16+32 segment
# 32_3_SEG: for 32+3 segment
# 16_3_SEG: for 16+3 segment
# Switch-ability:
# Non-switchable
MRE_BG_CONC_LAUNCHER = FALSE
# Description:
# 1. Add a feture option MRE_BG_CONC_LAUNCHER = TRUE / FALSE, if it is TRUE, please define __MRE_BG_CONC_LAUNCHER__
# 2. Add Dependency check, if __MRE_BGMEM_SIZE__ > 200 && MRE_BG_CONC_LAUNCHER = FALSE, check error
# Option Values:
# TRUE: Enable this feature
# FALSE: Disable this feature
# Switch-ability:
# N/A
FORCE_WATCHDOG_MUTE = FALSE
# Description:
# force watchdog mute in production release for convenient JTAG usage
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# N/A
CAMCORDER_VRT_MEM_CAPTURE = FALSE
# Description:
# feature option:
# CAMCORDER_VRT_MEM_CAPTURE
# Detail description:
# To enable 2M camera capture on camcorder APP
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# N/A
FORCE_MEMORY_DUMP = FASLE
# Description:
# force memory dump in production release to prevent from silent reboot
# Option Values:
# FALSE: Disable this feature
# TRUE: Enable this feature
# Switch-ability:
# N/A
#[Phase-out and MTK internal used]# ------------------------------
TST_DNT_LOGGING = FALSE
NDIS_SUPPORT = NONE
EXTERNAL_ACCESSORY_DETECTION = NONE
OPENGLES_SUPPORT = FALSE
RTOS = NUCLEUS
IRDA_SUPPORT = FALSE
SIM_HOT_SWAP = NONE
MODIS_PLUGIN = ENABLE
G2D_SUPPORT = FALSE
RRC_PAYLOAD_FOR_3G_UP_SUPPORT = FALSE
VIDEO_CLIPPER_SUPPORT = FALSE
HTTP_INTERFACE_SUPPORT = FALSE
PPP_TYPE_PDP_DIALUP_SUPPORT = FALSE
GPRS_DIALUP_PPP_DROP_PACKETS_WHEN_2G_PS_SUSPEND = FALSE
DSP_SOLUTION = NONE
DSPIRDBG = FALSE
GPRS_DIALUP_PPP_SUPPORT_ESCAPE_ATO = FALSE
MULTIPLE_PPP_DIALUP_SUPPORT = FALSE
MAX_NUM_OF_NDIS_SUPPORT = 3
TST_SUPPORT = TRUE
RM_DECODE_MODE = NORMAL
NVRAM_SUPPORT = TRUE
CENTRALIZED_SLEEP_MANAGER = TRUE
FAX_SUPPORT = FALSE
EMPTY_RESOURCE = TRUE
UART3_SUPPORT = FALSE
MODEM_3G_LOGGING = FALSE
MAUI_SDK_TEST = FALSE
DUMMY_SCATTER_ENABLE = FALSE
TTL_SUPPORT = LIB
L1_GPS_REF_TIME_SUPPORT = FALSE
VCARD_SUPPORT = NONE
ULCS_ASN_SUPPORT_VERSION = ULCS_ASN_SUPPORT_R99
AGPS_UP_CP_CONFLICT_HANDLING_SUPPORT = FALSE
DCM_MULTITRUNK = TRUNK_128K
MCD_CODESET_SHIFT_SUPPORT = NONE
STREAM_REC_SUPPORT = FALSE
HSUPA_CAPABILITY_NOT_SUPPORT = FALSE
HOTSPOT_SUPPORT_PERFORMANCE_BENCHMARK = FALSE
USB_TETHERING = FALSE
EXT_MODEM_SUPPORT = FALSE
PBCCH_SUPPORT = FALSE
MODIS_FDM = OFF
ALICE_SUPPORT = TRUE
FS_DEDICATED_BUFFER = TRUE
FS_MAX_DISK_SIZE = 0
CNAP_SUPPORT = FALSE
MTK_SLEEP_ENABLE = TRUE
3SET_F8F9_ENABLE = FALSE
AGPS_CP_SIB15_SUPPORT = FALSE
RTOS_DEBUG = TRUE
SSS_SUPPORT = SSS_LIB
FS_OPEN_HINT_SUPPORT = TRUE
DCM_MM_IMEHW_SUPPORT = FALSE
FM_RADIO_HW_SEARCH = TRUE
VENDOR = NONE
NFC_SUPPORT = NONE
SML_SUPPORT = TRUE
VAMOS_SUPPORT = TRUE
AOC_SUPPORT = FALSE
MULTIPLE_NDIS_SUPPORT = FALSE
ATA_SUPPORT = TRUE
USB_DATA_CONNECTION_SUPPORT = FALSE
PMIC = MT6261PMU
IPSEC_SUPPORT = FALSE
SERIAL_FLASH_SUPPORT = TRUE
PLMN_LIST_PREF_SUPPORT = OFF
GUOBI_WINGUO_SUPPORT = WINGUO_NONE
GAMELOFT_CONTENT_SUPPORT = FALSE
UNIFIED_MESSAGE_LOW_MEMORY_SUPPORT = TRUE
H264_OPEN_API = FALSE
FLASHLIGHT_MODULE = NONE
ISO_PRIORITY_MODE_SUPPORT = FALSE
MSHUTTER_SUPPORT = FALSE
MTK_DSP_DEBUG = FALSE
PMU_WITH_EXTERNL_CHARGER = FALSE
MDP_LCD_FW_UPDATE = FALSE
ATV_SMS_SUPPORT = FALSE
SW_FLASH = NONE
CHE_SUPPORT = FALSE
R99_SUPPORT = TRUE
R4_SUPPORT = FALSE
R5_SUPPORT = FALSE
UART_CHARGER_THE_SAME_INTERFACE = NONE
MODIS_ON_VC9 = TRUE
BSAC_DECODE = FALSE
EMLPP_SUPPORT = FALSE
GPRS_DIALUP_PPP_SUPPORT_SPEED_UP_DIALUP = FALSE
SUPPORT_VIDEO_RECORD_ROTATE = FALSE
SUBLCD_DEDICATED_KEYS_SUPPORT = FALSE
TV_OUT_SUPPORT = FALSE
CCBS_SUPPORT = FALSE
GAME_ENGINE = NONE
UUS_SUPPORT = FALSE
CMMB_CAS_FULL_CARD_SUPPORT = FALSE
QQMOVIE_SUPPORT = FALSE
SPLIT_SYSTEM = FALSE
VDOEDT_SUPPORT = FALSE
FS_MOVE_SUPPORT = TRUE
CMMB_CAS_SMD_SUPPORT = FALSE
AUTOCAP_PANORAMA_SUPPORT = FALSE
GEMINI_VERSION = V1
LCM_SCANLINE_ROTATION_SUPPORT = FALSE
MAIN_LCM_SCANLINE_ROTATION_CCW_ANGLE = 90
SUB_LCM_SCANLINE_ROTATION_CCW_ANGLE = 90
# *************************************************************************
# Topwell option
# *************************************************************************
TOPWELL_BASE_BUG = TRUE
# 基础公用宏
#
# --------------------------------------------------------------
# VERSION DEFINE
# --------------------------------------------------------------
TOPWELL_SW_USER_VERSION = TRUE
# 版本号方式
# TRUE=客户方式, FALSE=公司方式
TOPWELL_HW_PROJECT = T3286
# 主板项目名称
#
TOPWELL_SW_INTEGRATOR = TECHAINSH
# 集成商客户
# 根据集成商客户名称填写
TOPWELL_SW_BRAND = QMOBILE
# 软件终端客户
# 请根据客户名称填写
TOPWELL_SW_INTERNAL = B42
# 内部软件型号
# 内部编号
TOPWELL_SW_BRAND_VERNO = A
# 软件分支版本号
# --------------------------------------------------------------
# HW DEFINE
# --------------------------------------------------------------
TOPWELL_HW_SERIAL_LCD = TRUE
# 是否是SERIAL LCD
# TRUE ,FALSE
TOPWELL_HW_CLASS = NONE
#功放
#NONE CLASS_K CLASS_D
TOPWELL_HW_FLASHLIGHT_TYPE = GPIO_FLASH
#闪光灯
#NONE, ISINK_FLASH, GPIO_FLASH
TOPWELL_CAMERA_FLASHLIGHT_ON = YES
#闪光灯默认是否开启
#YES NO
TOPWELL_CAMERA_SHUTTER_SOUND_ON = YES
# 支持拍照声音
#NONE, YES NO
TOPWELL_HW_TORCH_TYPE = TORCH_GPIO
#手电筒
#NONE, TORCH_GPIO, TORCH_ISINK
TOPWELL_HW_TORCH_KEY =IDLE_KEY_0
#手电筒开启方式
#NONE, DIALER_KEY_0, IDLE_KEY_OK, IDLE_KEY_0
TOPWELL_HW_LED_SIGNAL = FALSE
# 信号灯
#TRUE, FALSE
TOPWELL_HW_KEYMAP_BASELINE = TRUE
# 标准按键
# TRUE, FALSE
TOPWELL_HW_KEYMAP_EXT1_FUNCTION = NONE
# 扩展键1
# NONE, ....
TOPWELL_HW_KEYMAP_EXT2_FUNCTION = NONE
# 扩展键2
# NONE, ....
TOPWELL_HW_KEYMAP_EXT3_FUNCTION = NONE
# 扩展键3
# NONE, ....
TOPWELL_HW_KEYMAP_EXT4_FUNCTION = NONE
# 扩展键4
# NONE, ....
TOPWELL_HW_SENSOR = SING_CAM : GC6123_SERIAL GC0310_SERIAL
# TOPWELL 摄像头兼容
# 请根据实际按固定方式填写
TOPWELL_HW_SPEAKER_TYPE = MODE_XXX_ALONE
# 喇叭类型
#MODE_XXX_ALONE, MODE_LHV_ALLIN, MODE_LHX_YVIB,
#MODE_LHX_NVIB, MODE_LXV_YHED, MODE_XXX_NVIB
TOPWELL_HW_NOT_VOLKEY = TRUE
#不支持音量键
# TRUE, FALSE
# --------------------------------------------------------------
# 测试模式配置
# --------------------------------------------------------------
TOPWELL_HW_FM_QUICK_TEST_MAX = DEFAULT
# 快速测试数目
# DEFAULT (MAX15), MAX16
TOPWELL_FM_NOT_TEST_RTC = FALSE
TOPWELL_FM_NOT_TEST_BACKLIGHT = FALSE
TOPWELL_FM_NOT_TEST_LCD = FALSE
TOPWELL_FM_NOT_TEST_KEYPAD = FALSE
TOPWELL_FM_NOT_TEST_RECEIVER = FALSE
TOPWELL_FM_NOT_TEST_MIC = FALSE
TOPWELL_FM_NOT_TEST_SPEAKER = FALSE
TOPWELL_FM_NOT_TEST_HEADSET = FALSE
TOPWELL_FM_NOT_TEST_MELODY = FALSE
TOPWELL_FM_NOT_TEST_VIB = FALSE
TOPWELL_FM_NOT_TEST_TORCH = FALSE
TOPWELL_FM_NOT_TEST_INFORMATION_LED = TRUE
TOPWELL_FM_NOT_TEST_CAMERA = FALSE
TOPWELL_FM_NOT_TEST_FM_RADIO = FALSE
TOPWELL_FM_NOT_TEST_BT = FALSE
TOPWELL_FM_NOT_TEST_MEMORYCARD = FALSE
TOPWELL_FM_NOT_TEST_PEN_PARALLEL_LINES = TRUE
TOPWELL_FM_NOT_TEST_PEN_N_CROSS_M_POINTS = TRUE
TOPWELL_FM_NOT_TEST_MRE_APPLICATION = TRUE
# 测试选项
# TRUE, FALSE
TOPWELL_HW_FM_ECHOLOOP_MODE = BY_LOUD
# 回路测试通道
# BY_LOUD BY_HEADSET
TOPWELL_MMI_FACTORYMODE_TEST_RESULT = YES
# 是否保留测试结果
# NONE, NO, YES
# --------------------------------------------------------------
# THEME DEFINE
# --------------------------------------------------------------
TOPWELL_THEME_IDLE_STYLE = T309Q_QVGA
#待机风格
#NONE(默认), T305_QVGA
TOPWELL_THEME_MAINMENU_STYLE = PNG MATRIX_12 HICON_1H
#主菜单风格
#NONE(默认), PNG/GIF MATRIX_12/MATRIX_9/MATRIX_6 HICON_1H/HICON_MH
TOPWELL_THEME_LISTMENU_STYLE = NONE
#LIST 菜单风格
#NONE(默认), ....
TOPWELL_THEME_MP3_STYLE = NONE
#MP3风格
#NONE(默认), ....
TOPWELL_THEME_MULTIMEDIA_BG_ALONE = TRUE
#多媒体使用独立背景,不使用子菜单背景或者使用纯色背景(白色、黑色)
#TRUE, FALSE
TOPWELL_MMI_MULTIMEDIA_TITLE_ALGEN_AS_SUB_BG = FALSE
# 多媒体标题栏与子菜单背景标题栏对齐
#TRUE, FALSE
TOPWELL_THEME_FMR_STYLE = NONE
#FMR风格
#NONE(默认), ....
TOPWELL_THEME_CALL_STYLE = NONE
#通话界面风格
#NONE(默认), ....
TOPWELL_THEME_INCOMING_CALL_TEXT_ALIGEN = IS_10
#来电界面SIM incoming + number显示位置与子菜单背景对齐
# NONE ,IS_10,
TOPWELL_MMI_THEME_STYLE = BLACK
#主题颜色风格
#NONE, BLACK, WHITE
TOPWELL_MMI_DIALER_INPUT_BOX_THEME = WHITE
# 拨号界面主题,所有分辨率共用,拨号界面主题独立出来,不需要修改THEME
# NONE, BLACK ,WHITE
TOPWELL_THEME_SUB_AND_MAIN_STYLE = T310_QVGA
# 主菜单和子菜单是否需要状态栏以及状态栏、标题栏等的相应坐标
#
TOPWELL_MMI_MP3_TEXT_COLOR = BLACK
TOPWELL_MMI_AUDIOPLAYER_TIME_WHITE = WHITE
#MP3 播放器, 文字颜色
#
TOPWELL_MMI_FM_TEXT_COLOR = BLACK
#FM Radio , 文字颜色
#
TOPWELL_THEME_MM_SKIN_SHOW_VOLUMEBAR = TRUE
# 多媒体界面显示音量图标
#
# 如有其它请增加
# --------------------------------------------------------------
# MMI DEFINE
# --------------------------------------------------------------
TOPWELL_MMI_NEWWORK_OPTION_LIST = RSSI_01 STK_HIDE STK_MENU_CUSTOM
#网络服务选项
# NONE, 其他请看OPTION
TOPWELL_MMI_SCREEN_LOCK_OPTION_LIST = STAR IS_15S OFF_KEYTONE OFF_SOUND SHOW_ICON
# 上锁方式配置
# NONE, 其他请看OPTION
TOPWELL_MMI_IDLE_DIGIT_CLOCK = NO_BG_CENTER
# 待机时间使用图片显示
# NONE, WITH_BG, NO_BG, NO_BG_CENTER
TOPWEILL_BATTERY_STANDAR_LEVEL = STANDAR_L7
# 电池等级划分
# NONE, STANDAR_L5, STANDAR_L6, STANDAR_L7
TOPWELL_MMI_PROFILES_MODE_LIST = HEADSET
TOPWELL_PROFILE_TONE_OPTION_LIST = USER_DEFINE MSG_EXT_FILE ALM_EXT_FILE NO_SLIM PWR_CUSTOMIZE PROF_AS_SIM STR_SMSTONE
# 情景模式
# NONE, 其他请看OPTION
TOPWELL_MMI_DATE_TIME_OPTION_LIST = DDMMYYYY SLOPE FM24 AM_PM_MENU
# 日期时间格式定义
# NONE, 其他请看OPTION
TOPWELL_CLOCKFUN_OPTION_LIST = NO_TIMEZONE_SETTING CLOCK_IN_STATUSBAR UPDATE_TIME IN_DATESETTING
#
# NONE, 其他请看OPTION
TOPWELL_MMI_BL_OPTION_LIST = IS_5L IS_15S TIME_MENU
# 背光控制
# NONE, 其他请看OPTION
TOPWELL_MMI_FMGR_SHOW_MEMRORY = DRVMENU_ONLY DELETE_ALL
# 文件管理是否显示容量
# NONE, DRVMENU_ONLY, SUBMENU_ONLY, DRIVEMENU_SUBMENU
TOPWELL_MMI_CALENDAR_OPTION_LIST = MODE3 MONTHLY_VIEW TITLE_VIEW BEGIN_AS_MONDAY WEEK_CHAR
# 日历功能配置
# NONE, 其他的请看OPTION
TOPWELL_MMI_AUDPLY_OPTION_LIST = REFRESH_LIST REPEAT_IS_OFF OPTION_DETAILS PLAYER_ANIMATION
#TOPWELL_MMI_AUDPLY_VOLUME_DEFAULT = IS_13
# 音乐播放器功能配置
# NONE, 其他请看OPTION
TOPWELL_MMI_SMS_OPTION_LIST = PREDEFINED STORAGE_PHONE SEPERATE_SIM SMS_NO_SIMTIMES SMS_BLACKLIST SPECIFIC_ICON TEMP_AS_LANGUAGE TEMP_SORT SMS_SCHEDULE
TOPWELL_MMI_SMS_OPTION_LIST2 = VIEW_STR_ALONE
# 短信设置
# NONE, 其他请看OPTION
TOPWELL_MMI_UCM_OPTION_LIST = AUTO_REDIAL BACK_RECORD VOL_LEVEL7 BLACK_LIST REJECT_BY_SMS CALLTIME_REMINDER CALL_BARRING CALL_LINE_SWITCHING CALL_IMG_USE_GIF
TOPWELL_MMI_DIALER_OPTION_LIST = DIALER_SEARCH SEND1_AND_SEND2
#来电 功能配置
# NONE, 其他的请看OPTION
TOPWELL_MMI_PHB_OPTION_LIST = STORAGE_ALL PHB_MOVE PHB_MASS NO_FROM_CAMERA PREFER_CONTACT
#电话本功能配置选项
# NONE, 其他请看OPTION
#TOPWELL_MMI_CALLLOG_OPTION_LIST = LIST_MODE
# 通话记录配置
# NONE, 其他请看OPTION
TOPWELL_MMI_APPLICATION_OPTION_LIST = SAR_CODE ASN
# 应用功能
# NONE, 其他请看OPTION
#TOPWELL_MMI_PRIVACY_PROTECTION = PRIVACY_NORMAL
TOPWELL_MMI_PHONE_PSW_DEFAULT = PSW_IS_0000
TOPWELL_MMI_FACTORY_IMEI = FACTORY_NORMAL
TOPWELL_MMI_PHONE_GUARD_THEFT = INSTRUCTION
# 安全设置
# NONE, 其他的请看OPTION
TOPWELL_MMI_FMRADIO_OPTION_LIST = EARPHONE_KEY LOUDSPEAK
# FM RADIO 功能配置
# NONE, 其他的请看OPTION
TOPWELL_MMI_CAMERA_OPTION_LIST = EXIT_IS_3MIN CAM_FULL_VIEW QTY_GOOD BROWSER CAMERA_NOSLIM VIRTUAL_130W DEFAULT_IS_1
# Camera 设置
# NONE, 其他的请看OPTION
TOPWELL_MMI_VIDEO_OPTION_LIST = LOADING DETAIL_MENU VDO_NORMAL VDO_LSK_OPTION VIDEO_SLIM VIDEO_ZOOM
# VIDEO 设置
# NONE, 其他的请看OPTION
TOPWELL_MMI_SOUNDRECORD_OPTION_LIST = SAVE_CONFIRM
# 录音 设置
# NONE, 其他的请看OPTION
TOPWELL_MMI_POWER_SAVING_OPTION_LIST = NONE
# 省电模式
# NONE, 其他的请看OPTION
TOPWELL_MMI_KEYFUNC_OPTION_LIST = PLUS_KEY_0 POUNDKEY_TO_SLIENT
TOPWELL_MMI_SHCT_DEFAULT_FUNC = MODE1
TOPWELL_MMI_SHCT_UKEY_FUNC = SHORTCUTS
TOPWELL_MMI_SHCT_DKEY_FUNC = TORCH
TOPWELL_MMI_SHCT_LKEY_FUNC = WMSG
TOPWELL_MMI_SHCT_RKEY_FUNC = AUDIO
# 按键功能
# NONE, 其他的请看OPTION
TOPWELL_PWRONOFF_OPTION_LIST = NONE
# 开关机部分
# NONE, 其他的请看OPTION
TOPWELL_MMI_SETTINGS_OPTION_LIST = INLINE_ICON FIRST_UPPERCASE INLINE_NOSLIM HINTS_IN_MENUITEM
# 设置部分
# NONE, 其他的请看OPTION
TOPWELL_IDLEFUNC_OPTION_LIST = WALLPAPER_IS_3 SKEYBAR_3ICON
# 待机显示部分
# NONE, 其他的请看OPTION
TOPWELL_MMI_FACTORY_OPTION_LIST = DOUBLE_MENU
# 工厂设置部分
# NONE, 其他的请看OPTION
TOPWELL_THEME_MULTIMEDIA_BG_ALONE = TRUE
#多媒体使用独立背景,不使用子菜单背景或者使用纯色背景(白色、黑色)
#TRUE, FALSE
TOPWELL_MMI_CUSTOM_CARE = TRUE
# Care功能(Qmobile客户定制)
# TRUE ,FALSE
# --------------------------------------------------------------
# SP DEFINE
# --------------------------------------------------------------
TOPWELL_MMI_GAME = F1RACE
#游戏
#NONE, F1RACE, SNAKE
TOPWELL_IMAX_FEATURES_LIST = NONE
#IMAX FEATURES
# NONE , IMAXSP HANDSET
TOPWELL_WAP_LINK_APP_LIST = NONE
# WAP Link FEATURES
# NONE, 其他的请看OPTION
RVCT_VERSION_569 = TRUE
#编译环境需要569
#TRUE ,FALSE
DSM_SUPPORT = TRUE #总宏:使用斯凯应用必须打开此宏
DSM_HAIWAI_SUPPORT = TRUE #斯凯海外总宏:外单项目请打开
DSM_GAME_SUPPORT = FALSE #游戏中心
DSM_FACEBOOK_SUPPORT= TRUE #FACEBOOK
DSM_YAHOO_SUPPORT = FALSE #YAHOO
DSM_TWITTER_SUPPORT = TRUE #TWITTER
DSM_WHATSAPP_SUPPORT= TRUE #WHATSAPP
DSM_TOMCAT_SUPPORT = FALSE #TOM猫
DSM_FRUIT_SUPPORT = FALSE #切水果
DSM_ANGRYBIRD_SUPPORT = FALSE #愤怒的小鸟
DSM_SKIRT_SUPPORT = FALSE #吹裙子
DSM_BYDR_SUPPORT = FALSE #捕鱼达人
DSM_QQ_SUPPORT = FALSE #手机QQ
DSM_RSTONE_SUPPORT = FALSE #梦幻宝石
DSM_SHUDU_SUPPORT = FALSE #数独
DSM_RUSH_SUPPORT = FALSE #躲子弹
DSM_MINI_SUPPORT = FALSE #如果需要精简平台,请打开
TOPWELL_MMI_DSM_NOT_TRANSLATE_CURR_LANGUAGE = TRUE
# 斯凯应用字串不翻译为当前语言
# TRUE, FALSE
# SKY FEATURES
# 具体请看Features
# --------------------------------------------------------------
# 信息解释
# --------------------------------------------------------------
##1. 基础宏: __TOPWELL_BASE_BUG__ //用于公共Bug,请勿随便使用
##2. 集成客户宏: __TOPWELL_BASE_TECHAINSH__ //集成客户宏,根据不同集成客户,使用不同配置
##3. 主板宏: __TOPWELL_T3286__
##4. 射频宏: __TOPWELL_T3286_RF__
##5. 内部项目宏: __TOPWELL_T3286_B42__ //创建工程时使用,其他方式请勿使用,授权使用
##6. 终端客户宏: __TOPWELL_T3286_B42_QMOBILE__ //终端客户宏,根据客户需求,如果确实需要才使用
##7. 终端软件宏: __TOPWELL_T3286_B42_TECHAINSH_A__ //终端项目宏,根据客户需求,如果确实需要才使用
# *************************************************************************
# Topwell option end
# *************************************************************************
# *************************************************************************
# Release Setting Section
# *************************************************************************
RELEASE_PACKAGE = REL_CR_MMI_$(strip $(PROJECT)) # REL_CR_MMI_GPRS, REL_CR_MMI_GSM, REL_CR_L4_GPRS, REL_CR_L4_GSM
RELEASE_WAE = SRC # MTK/SRC, only works when TELECA_FEATURES works
RELEASE_WAP = MTK # MTK/SRC, only works when TELECA_FEATURES works
RELEASE_$(strip $(INPUT_METHOD)) = SRC # MTK/SRC, only works when INPUT_METHOD is turning on
RELEASE_INPUT_METHODS_SRC = # MMI_ZI, MMI_T9, MMI_ITAP,
# *************************************************************************
# Consistent Feature Options
# *************************************************************************
COM_DEFS_FOR_MT6261RF_CUSTOM = MT6261RF_RF MT6261RF_CUSTOM
COM_DEFS_FOR_KEYTAK61D_GB_11C_LCM = COLOR_LCD KEYTAK61D_GB_11C_LCM TFT_MAINLCD
# *************************************************************************
# Include MODEM.mak
# *************************************************************************
include make\MODEM.mak
# *************************************************************************
# Project specified preprocessor definitions
# *************************************************************************
CUSTOM_OPTION += __MSDC_NO_WRITE_PROTECT__
CUSTOM_OPTION += __BT_SHRINK_SIZE__ __MMS_MEMORY_CARD_STORAGE_SUPPORT__
CUSTOM_OPTION += __TST_USE_MINI_LOG_BUF__
CUSTOM_OPTION += __MRE_CUST_MEM_SIZE__=0
CUSTOM_OPTION += __AUDIO_ULTRA_SLIM__
CUSTOM_OPTION += __CUSTOM_MRE_MAX_SIZE__=0
CUSTOM_OPTION += __GFX_SLIM_COLOR_FORMAT__ __GFX_SLIM_THUMB_SWITCH__
CUSTOM_OPTION += __MRE_BGMEM_SIZE__=0
CUSTOM_OPTION += __AT_FOR_SPEECH_TUNING_TOOL__
REMOVE_CUSTOM_OPTION += __IP_NUMBER__
# *************************************************************************
# Custom Release Component Configuration
# *************************************************************************
include make\$(strip $(RELEASE_PACKAGE)).mak
# *************************************************************************
# Component trace definition header files for custom release only
# *************************************************************************
# Following trace headers are already existed in custom release
# You can add new traces with kal_trace() in the following trace headers
EXISTED_CUS_REL_TRACE_DEFS =
EXISTED_CUS_REL_TRACE_DEFS += nvram\include\nvram_trc.h
EXISTED_CUS_REL_TRACE_DEFS += ps\l4\uem\include\uem_trc.h
EXISTED_CUS_REL_TRACE_DEFS += ps\l4\include\l4_trc.h
EXISTED_CUS_REL_TRACE_DEFS += ps\l4\phb\include\phb_trc.h
EXISTED_CUS_REL_TRACE_DEFS += fs\common\include\fs_trc.h
EXISTED_CUS_REL_TRACE_DEFS += hal\system\init\inc\system_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_mre_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_common_app_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\framework\interface\pluto_fw_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_inet_app_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_conn_app_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_media_app_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\framework\interface\mmi_fw_trc.h
EXISTED_CUS_REL_TRACE_DEFS += hal\peripheral\inc\bmt_trc.h
EXISTED_CUS_REL_TRACE_DEFS += hal\audio\src\v1\inc\l1sp_trc.h
EXISTED_CUS_REL_TRACE_DEFS += hal\audio\src\v1\inc\l1audio_sph_trc.h
EXISTED_CUS_REL_TRACE_DEFS += media\common\include\med_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\framework\gdi\gdiinc\gdi_trc.h
EXISTED_CUS_REL_TRACE_DEFS += vendor\push_notification_engine\hpnstask\inc\pns_trc.h
EXISTED_CUS_REL_TRACE_DEFS += fmt\include\fmt_trc.h
EXISTED_CUS_REL_TRACE_DEFS += usb\include\usb_trc.h
EXISTED_CUS_REL_TRACE_DEFS += drv\include\drv_trc.h
EXISTED_CUS_REL_TRACE_DEFS += ps\sim2\include\sim_trc.h
EXISTED_CUS_REL_TRACE_DEFS += hal\video\common\include\vcodec_v2_trc.h
EXISTED_CUS_REL_TRACE_DEFS += vendor\framework\obigo_q03c\adaptation\integration\include\trc\wps_trc.h
EXISTED_CUS_REL_TRACE_DEFS += vendor\wap\obigo_q03c\adaptation\integration\include\wap_trc.h
EXISTED_CUS_REL_TRACE_DEFS += fmr\inc\fmr_trc.h
EXISTED_CUS_REL_TRACE_DEFS += plutommi\mmi\inc\mmi_mre_app_info_trc.h
# Customer can add new trace headers here for new modules
NEW_CUS_REL_TRACE_DEFS =