custom.log 132 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
Module custom is in DEFALUT mode
Compiling custom\drv\fmr\default_bb\AR1000.c ... 
"header_temp\audio_def.h", line 610: Warning:  #47-D: incompatible redefinition of macro "AUD_VSG_CTRL" (declared at line 1457 of "header_temp\dpram_6261.h")
     #define AUD_VSG_CTRL                     DP_AUDIO_PP_CTRL_base(0x5)
             ^
"header_temp\audio_def.h", line 611: Warning:  #47-D: incompatible redefinition of macro "VS_MOD_FREQ" (declared at line 1458 of "header_temp\dpram_6261.h")
     #define VS_MOD_FREQ                      DP_AUDIO_PP_CTRL_base(0x6)
             ^
"header_temp\audio_def.h", line 612: Warning:  #47-D: incompatible redefinition of macro "VS_CENTER_FREQ" (declared at line 1459 of "header_temp\dpram_6261.h")
     #define VS_CENTER_FREQ                   DP_AUDIO_PP_CTRL_base(0x7)
             ^
"header_temp\audio_def.h", line 613: Warning:  #47-D: incompatible redefinition of macro "VS_DIGI_GAIN" (declared at line 1460 of "header_temp\dpram_6261.h")
     #define VS_DIGI_GAIN                     DP_AUDIO_PP_CTRL_base(0x8)
             ^
"header_temp\afe_def.h", line 588: Warning:  #47-D: incompatible redefinition of macro "VSBST_CON5" (declared at line 587)
     #define VSBST_CON5          ((APBADDR)(SPEAKER_base + 0x0D40))
             ^
custom\drv\fmr\default_bb\AR1000.c: 5 warnings, 0 errors
Compiling custom\common\CharsetTable.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\CharsetTable.c: 3 warnings, 0 errors
Compiling custom\common\Conversions.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\Conversions.c: 3 warnings, 0 errors
Compiling custom\ps\KEYTAK61D_GB_11C_BB\Customer_sim_voltage_support.c ... 
Compiling custom\drv\fmr\default_bb\MT5192FM.c ... 
Compiling custom\drv\fmr\default_bb\MT5193FM.c ... 
Compiling custom\drv\fmr\default_bb\MT6188.c ... 
Compiling custom\drv\fmr\default_bb\MT6189.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\MT6302_custom.c ... 
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\MT6302_custom.c", line 318: Warning:  #188-D: enumerated type mixed with another type
     return 0;
            ^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\MT6302_custom.c: 1 warning, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\MT6306_custom.c ... 
Compiling custom\drv\fmr\default_bb\MT6616.c ... 
Compiling custom\drv\fmr\default_bb\MT6626.c ... 
Compiling custom\audio\_DEFAULT_BB\MT6261\NS953_SerialComm.c ... 
Compiling custom\audio\_DEFAULT_BB\MT6261\TEA5761UK.c ... 
"header_temp\audio_def.h", line 610: Warning:  #47-D: incompatible redefinition of macro "AUD_VSG_CTRL" (declared at line 1457 of "header_temp\dpram_6261.h")
     #define AUD_VSG_CTRL                     DP_AUDIO_PP_CTRL_base(0x5)
             ^
"header_temp\audio_def.h", line 611: Warning:  #47-D: incompatible redefinition of macro "VS_MOD_FREQ" (declared at line 1458 of "header_temp\dpram_6261.h")
     #define VS_MOD_FREQ                      DP_AUDIO_PP_CTRL_base(0x6)
             ^
"header_temp\audio_def.h", line 612: Warning:  #47-D: incompatible redefinition of macro "VS_CENTER_FREQ" (declared at line 1459 of "header_temp\dpram_6261.h")
     #define VS_CENTER_FREQ                   DP_AUDIO_PP_CTRL_base(0x7)
             ^
"header_temp\audio_def.h", line 613: Warning:  #47-D: incompatible redefinition of macro "VS_DIGI_GAIN" (declared at line 1460 of "header_temp\dpram_6261.h")
     #define VS_DIGI_GAIN                     DP_AUDIO_PP_CTRL_base(0x8)
             ^
"header_temp\afe_def.h", line 588: Warning:  #47-D: incompatible redefinition of macro "VSBST_CON5" (declared at line 587)
     #define VSBST_CON5          ((APBADDR)(SPEAKER_base + 0x0D40))
             ^
custom\audio\_DEFAULT_BB\MT6261\TEA5761UK.c: 5 warnings, 0 errors
Compiling custom\audio\_DEFAULT_BB\MT6261\TEA5767HN.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\adc_channel.c ... 
Compiling custom\common\hal\adc_nvram_def.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\adc_nvram_def.c: 1 warning, 0 errors
Compiling custom\codegen\KEYTAK61D_GB_11C_BB\adc_var.c ... 
Compiling custom\audio\KEYTAK61D_GB_11C_BB\afe.c ... 
"header_temp\audio_def.h", line 610: Warning:  #47-D: incompatible redefinition of macro "AUD_VSG_CTRL" (declared at line 1457 of "header_temp\dpram_6261.h")
     #define AUD_VSG_CTRL                     DP_AUDIO_PP_CTRL_base(0x5)
             ^
"header_temp\audio_def.h", line 611: Warning:  #47-D: incompatible redefinition of macro "VS_MOD_FREQ" (declared at line 1458 of "header_temp\dpram_6261.h")
     #define VS_MOD_FREQ                      DP_AUDIO_PP_CTRL_base(0x6)
             ^
"header_temp\audio_def.h", line 612: Warning:  #47-D: incompatible redefinition of macro "VS_CENTER_FREQ" (declared at line 1459 of "header_temp\dpram_6261.h")
     #define VS_CENTER_FREQ                   DP_AUDIO_PP_CTRL_base(0x7)
             ^
"header_temp\audio_def.h", line 613: Warning:  #47-D: incompatible redefinition of macro "VS_DIGI_GAIN" (declared at line 1460 of "header_temp\dpram_6261.h")
     #define VS_DIGI_GAIN                     DP_AUDIO_PP_CTRL_base(0x8)
             ^
"header_temp\afe_def.h", line 588: Warning:  #47-D: incompatible redefinition of macro "VSBST_CON5" (declared at line 587)
     #define VSBST_CON5          ((APBADDR)(SPEAKER_base + 0x0D40))
             ^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 183: Warning:  #9-D: nested comment is not allowed
  /****************************************
  ^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 225: Warning:  #223-D: function "GPIO_ModeSetup" declared implicitly
  	GPIO_ModeSetup(class_k_control_pin,0);
  	^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 226: Warning:  #223-D: function "GPIO_InitIO" declared implicitly
  	GPIO_InitIO(1,class_k_control_pin);
  	^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 227: Warning:  #223-D: function "GPIO_WriteIO" declared implicitly
  	GPIO_WriteIO(0,class_k_control_pin);
  	^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 256: Warning:  #223-D: function "GPIO_ModeSetup" declared implicitly
  	 GPIO_ModeSetup(class_k_control_pin,0);
  	 ^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 257: Warning:  #223-D: function "GPIO_InitIO" declared implicitly
  	 GPIO_InitIO(1,class_k_control_pin);
  	 ^
"custom\audio\KEYTAK61D_GB_11C_BB\afe.c", line 258: Warning:  #223-D: function "GPIO_WriteIO" declared implicitly
  	 GPIO_WriteIO(0,class_k_control_pin);
  	 ^
custom\audio\KEYTAK61D_GB_11C_BB\afe.c: 12 warnings, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\alerter_tone.c ... 
Compiling custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\alerterdrv.c ... 
Compiling custom\common\hal\apm_TaskDef.c ... 
"header_temp\audio_def.h", line 610: Warning:  #47-D: incompatible redefinition of macro "AUD_VSG_CTRL" (declared at line 1457 of "header_temp\dpram_6261.h")
     #define AUD_VSG_CTRL                     DP_AUDIO_PP_CTRL_base(0x5)
             ^
"header_temp\audio_def.h", line 611: Warning:  #47-D: incompatible redefinition of macro "VS_MOD_FREQ" (declared at line 1458 of "header_temp\dpram_6261.h")
     #define VS_MOD_FREQ                      DP_AUDIO_PP_CTRL_base(0x6)
             ^
"header_temp\audio_def.h", line 612: Warning:  #47-D: incompatible redefinition of macro "VS_CENTER_FREQ" (declared at line 1459 of "header_temp\dpram_6261.h")
     #define VS_CENTER_FREQ                   DP_AUDIO_PP_CTRL_base(0x7)
             ^
"header_temp\audio_def.h", line 613: Warning:  #47-D: incompatible redefinition of macro "VS_DIGI_GAIN" (declared at line 1460 of "header_temp\dpram_6261.h")
     #define VS_DIGI_GAIN                     DP_AUDIO_PP_CTRL_base(0x8)
             ^
custom\common\hal\apm_TaskDef.c: 4 warnings, 0 errors
Compiling custom\drv\ast\ast_hif_hw.c ... 
Compiling custom\common\ps\ata_at_command_customer_hdlr.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 117: Warning:  #223-D: function "ata_get_at_para" declared implicitly
  		ata_keypad_para1 = ata_get_at_para(commandBuffer_p); 
  		                   ^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 97: Warning:  #177-D: variable "j" was declared but never referenced
  int i, j, row, col = 0; 
         ^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 243: Warning:  #223-D: function "ata_get_at_para" declared implicitly
  			vi_state = ata_get_at_para(commandBuffer_p);
  			           ^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 250: Warning:  #223-D: function "FM_SetGpioReq" declared implicitly
  				FM_SetGpioReq(GPIO_DEV_VIBRATOR, VIBRATOR_OFF);
  				^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 255: Warning:  #223-D: function "FM_SetGpioReq" declared implicitly
  				FM_SetGpioReq(GPIO_DEV_VIBRATOR, VIBRATOR_ON);
  				^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 345: Warning:  #223-D: function "ata_get_at_para" declared implicitly
  		led_para = ata_get_at_para(commandBuffer_p);
  		           ^
"custom\common\ps\ata_at_command_customer_hdlr.c", line 397: Warning:  #177-D: variable "tp_status" was declared but never referenced
  		kal_bool tp_status;
  		         ^
custom\common\ps\ata_at_command_customer_hdlr.c: 10 warnings, 0 errors
Compiling custom\common\hal\aud_I2S_config.c ... 
Compiling custom\common\hal\aud_common.c ... 
"custom\common\hal\Aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom\common\hal\audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\aud_common.c: 1 warning, 0 errors
Compiling custom\audio\KEYTAK61D_GB_11C_BB\audcoeff.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\audio\KEYTAK61D_GB_11C_BB\audcoeff.c: 1 warning, 0 errors
Compiling custom\common\audio_nvram_def.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\audio_nvram_def.c: 1 warning, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\aux_custom.c ... 
Compiling custom\drv\measure\battery_measure.c ... 
Compiling custom\common\hal\brt_drv_init.c ... 
Compiling custom\common\hal\bt_common_config.c ... 
Compiling custom\drv\bluetooth\KEYTAK61D_GB_11C_BB\btmtk_config.c ... 
Compiling custom\drv\camera\KEYTAK61D_GB_11C_BB\camera_hw.c ... 
"custom\drv\camera\KEYTAK61D_GB_11C_BB\camera_hw.c", line 407: Warning:  #223-D: function "GPIO_ModeSetup" declared implicitly
  			GPIO_ModeSetup(27, 1);// CMCSD0
  			^
custom\drv\camera\KEYTAK61D_GB_11C_BB\camera_hw.c: 1 warning, 0 errors
Compiling custom\common\hal\camera_nvram_def.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\camera_nvram_def.c: 1 warning, 0 errors
Compiling custom\drv\Camera_common\camera_sccb.c ... 
Compiling custom\drv\Camera_common\camera_tuning_oper.c ... 
Compiling custom\drv\Camera_common\camera_tuning_para.c ... 
Compiling custom\common\certman_cert_config.c ... 
Compiling custom\common\certman_gadget_certs.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\chr_parameter.c ... 
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\chr_parameter.c", line 374: Warning:  #177-D: variable "gpio_pin" was declared but never referenced
      kal_uint16 gpio_pin;
                 ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\chr_parameter.c", line 375: Warning:  #177-D: variable "gpio_state" was declared but never referenced
      kal_uint8  gpio_state;
                 ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\chr_parameter.c", line 376: Warning:  #177-D: variable "gpio_handle" was declared but never referenced
      DCL_HANDLE gpio_handle;
                 ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\chr_parameter.c", line 377: Warning:  #177-D: variable "gpio_data" was declared but never referenced
      GPIO_CTRL_READ_T gpio_data;
                       ^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\chr_parameter.c: 4 warnings, 0 errors
Compiling custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c ... 
"custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c", line 122: Warning:  #991-D: extra braces are nonstandard
     {COLOR_PATH_LCD},  // COLOR_SCENARIO_DEFAULT
     ^
"custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c", line 123: Warning:  #991-D: extra braces are nonstandard
     {COLOR_PATH_LCD},  // COLOR_SCENARIO_IMAGE_PLAYBACK
     ^
"custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c", line 124: Warning:  #991-D: extra braces are nonstandard
     {COLOR_PATH_LCD},  // COLOR_SCENARIO_VIDEO_PLAYBACK
     ^
"custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c", line 125: Warning:  #991-D: extra braces are nonstandard
     {COLOR_PATH_LCD},  // COLOR_SCENARIO_VIDEO_ENCODE
     ^
"custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c", line 126: Warning:  #991-D: extra braces are nonstandard
     {COLOR_PATH_LCD},  // COLOR_SCENARIO_CAMERA_PREVIEW
     ^
"custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c", line 127: Warning:  #991-D: extra braces are nonstandard
     {COLOR_PATH_LCD},  // COLOR_SCENARIO_CAMERA_QUICKVIEW
     ^
custom\drv\color\KEYTAK61D_GB_11C_LCM\color_custom.c: 6 warnings, 0 errors
Compiling custom\common\hal\combo_flash_init.c ... 
Compiling custom\common\hal\combo_flash_nor.c ... 
"custom\common\hal\combo_flash_nor.c", line 549: Warning:  #177-D: variable "i" was declared but never referenced
      kal_uint8 i=0;
                ^
"custom\common\hal\combo_flash_nor.c", line 616: Warning:  #177-D: variable "temp" was declared but never referenced
      kal_int32 result, temp;
                        ^
"custom\common\hal\combo_flash_nor.c", line 617: Warning:  #177-D: variable "i" was declared but never referenced
      kal_uint8 i=0;
                ^
"custom\common\hal\combo_flash_nor.c", line 941: Warning:  #177-D: variable "i" was declared but never referenced
      kal_uint32 index, i=0;
                        ^
"custom\common\hal\combo_flash_nor.c", line 1892: Warning:  #177-D: variable "temp" was declared but never referenced
     kal_int32 result, temp;
                       ^
"custom\common\hal\combo_flash_nor.c", line 1893: Warning:  #177-D: variable "i" was declared but never referenced
     kal_uint8 i = 0;
               ^
"custom\common\hal\combo_flash_nor.c", line 349: Warning:  #177-D: variable "BlockLayout_CS1" was declared but never referenced
  static const FlashBlockLayout *BlockLayout_CS1;          // SF2 BlockLayout read from MCP list
                                 ^
custom\common\hal\combo_flash_nor.c: 7 warnings, 0 errors
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c ... 
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 175: Warning:  #223-D: function "spi_ini_GC9305" declared implicitly
      		spi_ini_GC9305();
      		^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 180: Warning:  #223-D: function "spi_ini_ST7789S" declared implicitly
      		spi_ini_ST7789S();
      		^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 318: Warning:  #223-D: function "init_lcd_interface_GC9305" declared implicitly
  			init_lcd_interface_GC9305();
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 323: Warning:  #223-D: function "init_lcd_interface_ST7789S" declared implicitly
  			init_lcd_interface_ST7789S();
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 460: Warning:  #223-D: function "LCD_FunConfig_GC9305" declared implicitly
  			LCD_FunConfig_GC9305();
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 465: Warning:  #223-D: function "LCD_FunConfig_ST7789S" declared implicitly
  			LCD_FunConfig_ST7789S();
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 605: Warning:  #223-D: function "LCD_gamma_test_GC9305" declared implicitly
  			LCD_gamma_test_GC9305(level, color);
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 610: Warning:  #223-D: function "LCD_gamma_test_ST7789S" declared implicitly
  			LCD_gamma_test_ST7789S(level, color);
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 749: Warning:  #223-D: function "LCD_flicker_test_GC9305" declared implicitly
  			LCD_flicker_test_GC9305(level);
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 754: Warning:  #223-D: function "LCD_flicker_test_ST7789S" declared implicitly
  			LCD_flicker_test_ST7789S(level);
  			^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 802: Warning:  #223-D: function "dbg_print" declared implicitly
      dbg_print("LCM_ID_Validation\r\n");
      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 884: Warning:  #223-D: function "LCM_ID_check_GC9305" declared implicitly
            return LCM_ID_check_GC9305(); 
                   ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 884: Warning:  #188-D: enumerated type mixed with another type
            return LCM_ID_check_GC9305(); 
                   ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 888: Warning:  #223-D: function "LCM_ID_check_ST7789S" declared implicitly
            return LCM_ID_check_ST7789S(); 
                   ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 888: Warning:  #188-D: enumerated type mixed with another type
            return LCM_ID_check_ST7789S(); 
                   ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 922: Warning:  #940-D: missing return statement at end of non-void function "LCM_ID_Validation"
  }
  ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 937: Warning:  #223-D: function "mmi_ucs2cat" declared implicitly
      mmi_ucs2cat((CHAR*) get_buf, (const CHAR*)L"All LCD Model\n\n");
      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1199: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "char *restrict"
  					sprintf(buffer, "strtemp=%s",strtemp);
  					        ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1200: Warning:  #223-D: function "rmmi_write_to_uart" declared implicitly
  				        rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
  				        ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1200: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "const char *"
  				        rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
  				                                                      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1204: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "char *restrict"
  					sprintf(buffer, "strlcdid=%s",strlcdid);
  					        ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1205: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "const char *"
  				        rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
  				                                                      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1211: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "char *restrict"
  							sprintf(buffer, "no lcm");
  							        ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1212: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "const char *"
  						        rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
  						                                                      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1219: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "char *restrict"
  							sprintf(buffer, " lcm test pass");
  							        ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1220: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "const char *"
  						        rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
  						                                                      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1185: Warning:  #177-D: variable "CheckDrvId" was declared but never referenced
  	kal_uint16 CheckDrvId;
  	           ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c", line 1187: Warning:  #177-D: variable "LcdIdIsExist" was declared but never referenced
  	kal_bool LcdIdIsExist;
  	         ^
custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm.c: 31 warnings, 0 errors
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X160_T303_ST7735S_ZGD.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X160_T305_GC9101_YC_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X160_T305_GC9102_KD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X160_T305_ST7735S_ZGD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X160_T3181_ILI9163V_SL.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X160_T3181_ST7735S_ZGD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_128X168_T305_NV3021C.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_176X220_T308_GC9201_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_176X220_T308_ILI9225G_BBM_IVO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_176X220_T308_NV3038B_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T303_GC9301_YC_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T303_GC9302_SC_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T303_ILI9341_WT_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T303_ST7789S_LT_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T306_NV3029E_KR_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T306_NV3029E_KR_IVO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T306_ST7789V_BBM_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T306_ST7789V_BBM_HSD.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T306_ST7789V_SC_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T310_GC9302_SC_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T310_GC9303_YC_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T310_ILI9340L_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T310_NV3029E_KR_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T310_ST7789V_SL_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9304_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c ... 
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 252: Warning:  #223-D: function "dbg_print" declared implicitly
      dbg_print("init_lcd_interface_ST7789S\r\n");
      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 322: Warning:  #223-D: function "set_lcd_driving_current_centralize" declared implicitly
    set_lcd_driving_current_centralize(LCD_DRIVING_16MA);
    ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 413: Warning:  #550-D: variable "r_color" was set but never used
  	kal_uint8 r_color,g_color,b_color;
  	          ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 413: Warning:  #550-D: variable "g_color" was set but never used
  	kal_uint8 r_color,g_color,b_color;
  	                  ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 413: Warning:  #550-D: variable "b_color" was set but never used
  	kal_uint8 r_color,g_color,b_color;
  	                          ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 872: Warning:  #177-D: variable "start_x" was declared but never referenced
      kal_uint16 start_x,start_y,end_x,end_y;
                 ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 872: Warning:  #177-D: variable "start_y" was declared but never referenced
      kal_uint16 start_x,start_y,end_x,end_y;
                         ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 872: Warning:  #177-D: variable "end_x" was declared but never referenced
      kal_uint16 start_x,start_y,end_x,end_y;
                                 ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 872: Warning:  #177-D: variable "end_y" was declared but never referenced
      kal_uint16 start_x,start_y,end_x,end_y;
                                       ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 205: Warning:  #177-D: variable "lcd_gate_driver_shadow2" was declared but never referenced
  static kal_uint16 lcd_entry_mode_shadow=0x9000,lcd_gate_driver_shadow2;
                                                 ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 207: Warning:  #177-D: variable "GC9305_back_porch" was declared but never referenced
  static kal_uint16 GC9305_back_porch = 2;
                    ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 215: Warning:  #177-D: function "LCD_Delay" was declared but never referenced
  static void LCD_Delay(kal_uint32 delay_count)
              ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 486: Warning:  #177-D: variable "device_code" was declared but never referenced
  static kal_uint32 device_code;
                    ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c", line 866: Warning:  #177-D: function "lcm_read_from_gram" was declared but never referenced
  static void lcm_read_from_gram(kal_uint8* buffer)
              ^
custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_GC9305_HLT.c: 14 warnings, 0 errors
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_FC_LC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c ... 
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 214: Warning:  #223-D: function "dbg_print" declared implicitly
      dbg_print("init_lcd_interface_ST7789S\r\n");
      ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 276: Warning:  #223-D: function "set_lcd_driving_current_centralize" declared implicitly
    set_lcd_driving_current_centralize(LCD_DRIVING_16MA);
    ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 282: Warning:  #111-D: statement is unreachable
  	switch(mode){
  	^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 361: Warning:  #550-D: variable "r_color" was set but never used
  	kal_uint8 r_color,g_color,b_color;
  	          ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 361: Warning:  #550-D: variable "g_color" was set but never used
  	kal_uint8 r_color,g_color,b_color;
  	                  ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 361: Warning:  #550-D: variable "b_color" was set but never used
  	kal_uint8 r_color,g_color,b_color;
  	                          ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 408: Warning:  #550-D: variable "ST7789S_GRAM_DATA" was set but never used
  	kal_uint32 ST7789S_GRAM_DATA;
  	           ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 446: Warning:  #550-D: variable "ST7789S_ID2" was set but never used
  	kal_uint32 ST7789S_ID2;
  	           ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 461: Warning:  #177-D: variable "i" was declared but never referenced
   kal_uint16 i,j;
              ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 461: Warning:  #177-D: variable "j" was declared but never referenced
   kal_uint16 i,j;
                ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1091: Warning:  #177-D: variable "n" was declared but never referenced
  #ifdef __ST7789S_DEBUG_TRACE__
                            ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1091: Warning:  #177-D: variable "r" was declared but never referenced
  #ifdef __ST7789S_DEBUG_TRACE__
                              ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1190: Warning:  #111-D: statement is unreachable
  		   break;
  		   ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1284: Warning:  #223-D: function "GPIO_ModeSetup" declared implicitly
  		GPIO_ModeSetup(SERIVEL_LCM_CS_GPIO, 0);
  		^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1285: Warning:  #223-D: function "GPIO_InitIO" declared implicitly
  		GPIO_InitIO(1, SERIVEL_LCM_CS_GPIO);
  		^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1286: Warning:  #223-D: function "GPIO_WriteIO" declared implicitly
  		GPIO_WriteIO(0, SERIVEL_LCM_CS_GPIO);
  		^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 166: Warning:  #177-D: function "LCD_Delay" was declared but never referenced
  	volatile kal_uint32 delay;
  	           ^
"custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c", line 1089: Warning:  #177-D: function "display_RGBbar_ST7789S" was declared but never referenced
  {
   ^
custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.c: 18 warnings, 0 errors
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_SL_SC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3183_ST7789V_ZGD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3185_ST7789V_HLT_HSD.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3185_ST7789V_SL_SC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3211_ILI9341_JD.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3212_ILI9341V_BASE_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3243_GC9304_SHY_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3243_NV3029E_SHY_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3243_ST7789V_CMI.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3245_GC9303_GC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3245_GC9304_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_GC9301_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_GC9302_SC_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_GC9304_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_ILI9341_ZJGD.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_NV3029E_KD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_NV3029G_KD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T326_ST7789S_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3281_GC9304_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T3286_ST7789V_DC_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T333_GC9302_SC_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T333_GC9303_YC_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T333_GC9305_KHD_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T333_ILI9340L_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T333_NV3029E_KR_CTC.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T333_ST7789V_SL_CMO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T337_ILI9340L_IVO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T337_NV3029E_KR_IVO.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T351_GC9301_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T351_GC9302_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T351_ILI9341_BASE.c ... 
Compiling custom\drv\LCD\KEYTAK61D_GB_11C_LCM\combo_lcm_240X320_T351_ST7789S_BASE.c ... 
Compiling custom\common\PLUTO_MMI\common_mmi_cache_config.c ... 
Compiling custom\common\cust_ocsp.c ... 
Compiling custom\common\hal\custom_EMI_MT6250.c ... 
Compiling custom\common\hal\custom_EMI_MT6255.c ... 
Compiling custom\common\hal\custom_EMI_MT6256.c ... 
Compiling custom\common\hal\custom_EMI_MT6260.c ... 
Compiling custom\common\hal\custom_EMI_MT6261.c ... 
"custom\common\hal\custom_EMI_MT6261.c", line 980: Warning:  #177-D: variable "delay" was declared but never referenced
     register kal_uint32 delay;
                         ^
custom\common\hal\custom_EMI_MT6261.c: 1 warning, 0 errors
Compiling custom\common\hal\custom_EMI_SP.c ... 
Compiling custom\common\hal\custom_SFI.c ... 
"custom\common\hal\custom_SFI.c", line 1194: Warning:  #550-D: variable "sfi" was set but never used
       const CMEMEntrySFI_DCM *sfi;
                               ^
custom\common\hal\custom_SFI.c: 1 warning, 0 errors
Compiling custom\common\hal\custom_SNAND.c ... 
Compiling custom\common\custom_abm_config.c ... 
Compiling custom\common\ps\custom_atcmd_parse.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\ps\custom_atcmd_parse.c: 4 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_blconfig.c ... 
Compiling custom\common\custom_cloud_config.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\custom_cloud_config.c: 4 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_config.c ... 
Compiling custom\common\custom_config_account.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\custom_config_account.c: 4 warnings, 0 errors
Compiling custom\common\custom_data_account.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\custom_data_account.c: 4 warnings, 0 errors
Compiling custom\common\custom_dcd.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_dcd.c: 3 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_demp.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\custom_drv_init.c ... 
Compiling custom\common\hal_public\custom_ecc.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\common\hal_public\custom_ecc.c", line 957: Warning:  #111-D: statement is unreachable
              break;
              ^
"custom\common\hal_public\custom_ecc.c", line 1017: Warning:  #188-D: enumerated type mixed with another type
              sim_id = j;
                     ^
custom\common\hal_public\custom_ecc.c: 6 warnings, 0 errors
Compiling custom\common\ps\custom_ehplmn_config.c ... 
Compiling custom\common\ps\custom_em.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\common\ps\custom_em.c", line 553: Warning:  #177-D: variable "Ret" was declared but never referenced
      kal_uint32 Ret, len;
                 ^
"custom\common\ps\custom_em.c", line 553: Warning:  #177-D: variable "len" was declared but never referenced
      kal_uint32 Ret, len;
                      ^
"custom\common\ps\custom_em.c", line 643: Warning:  #223-D: function "PWM3_level" declared implicitly
              PWM3_level(level);
              ^
"custom\common\ps\custom_em.c", line 694: Warning:  #177-D: variable "alerter_config" was declared but never referenced
      ALERTER_CONFIGURE_T  alerter_config;
                           ^
"custom\common\ps\custom_em.c", line 987: Warning:  #223-D: function "INT_IsBootForUSBAT" declared implicitly
              for_usbat = INT_IsBootForUSBAT();
                          ^
"custom\common\ps\custom_em.c", line 987: Warning:  #188-D: enumerated type mixed with another type
              for_usbat = INT_IsBootForUSBAT();
                        ^
"custom\common\ps\custom_em.c", line 1067: Warning:  #177-D: variable "enable" was declared but never referenced
                  kal_bool enable;
                           ^
"custom\common\ps\custom_em.c", line 1477: Warning:  #223-D: function "rmmi_write_to_uart" declared implicitly
          rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
          ^
"custom\common\ps\custom_em.c", line 1483: Warning:  #188-D: enumerated type mixed with another type
          cats_frame_buff_st test_pattern={0};
                                           ^
"custom\common\ps\custom_em.c", line 1511: Warning:  #223-D: function "rmmi_write_to_uart" declared implicitly
                  rmmi_write_to_uart((kal_uint8*)buff, strlen(buff), KAL_TRUE);
                  ^
"custom\common\ps\custom_em.c", line 1556: Warning:  #223-D: function "rmmi_write_to_uart" declared implicitly
                  rmmi_write_to_uart((kal_uint8*)buffer, strlen(buffer), KAL_TRUE);
                  ^
custom\common\ps\custom_em.c: 12 warnings, 0 errors
Compiling custom\common\ps\custom_em_dummyDrv.c ... 
Compiling custom\common\ps\custom_ems_context.c ... 
Compiling custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\custom_equipment.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\custom_equipment.c", line 688: Warning:  #550-D: variable "regulated_level" was set but never used
     kal_uint8 regulated_level=0;
               ^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\custom_equipment.c", line 345: Warning:  #177-D: variable "l_ext_device_id" was declared but never referenced
  static kal_uint8  l_ext_device_id = EXT_DEV_NONE;
                    ^
custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\custom_equipment.c: 3 warnings, 0 errors
Compiling custom\common\PLUTO_MMI\custom_events_notify.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\common\PLUTO_MMI\custom_events_notify.c", line 669: Warning:  #128-D: loop is not reachable from preceding code
      for(count=0;  count < MMI_EVENT_TOTAL_COUNT ;count++)
      ^
custom\common\PLUTO_MMI\custom_events_notify.c: 5 warnings, 0 errors
Compiling custom\common\custom_fdn.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_fdn.c: 3 warnings, 0 errors
Compiling custom\common\hal\custom_flash.c ... 
"custom\common\hal\custom_flash.c", line 297: Warning:  #177-D: variable "RegionInfo" was declared but never referenced
  FLASH_REGIONINFO_VAR_MODIFIER FlashRegionInfo RegionInfo[]= /* Don't modify this line */
                                                ^
"custom\common\hal\custom_flash.c", line 381: Warning:  #177-D: variable "MSEntryTable" was declared but never referenced
  static MS_ENTRY MSEntryTable[MS_TABLE_ENTRY_NUM];
                  ^
custom\common\hal\custom_flash.c: 2 warnings, 0 errors
Compiling custom\common\hal\custom_flash_norfdm5.c ... 
Compiling custom\common\ps\custom_flc_config.c ... 
Compiling custom\common\custom_fm.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_fm.c: 3 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_fota.c ... 
Compiling custom\common\custom_gadget_config.c ... 
Compiling custom\common\ps\custom_gas_config.c ... 
Compiling custom\common\ps\custom_gprs_pdp_config.c ... 
Compiling custom\common\ps\custom_gprs_pdp_value_check.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\custom_hw_default.c ... 
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning:  #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
  #define DCL_NONE   DCL_PWM4
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\custom_hw_default.c: 5 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_img_config.c ... 
Compiling custom\common\custom_imps_config.c ... 
Compiling custom\common\custom_imps_cust.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_imps_cust.c: 3 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_jump_tbl.c ... 
Compiling custom\common\custom_kuro_config.c ... 
Compiling custom\common\ps\custom_l4_utility.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\ps\custom_l4_utility.c: 1 warning, 0 errors
Compiling custom\common\ps\custom_led_patterns.c ... 
Compiling custom\common\custom_mbbms.c ... 
Compiling custom\common\ps\custom_mm_config.c ... 
Compiling custom\app\KEYTAK61D_GB_11C_BB\custom_mmi_cache_config.c ... 
Compiling custom\common\custom_ntp_config.c ... 
Compiling custom\common\hal\nvram\custom_nvram_cat.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\hal\nvram\custom_nvram_cat.c: 4 warnings, 0 errors
Compiling custom\common\custom_nvram_config.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_nvram_config.c: 4 warnings, 0 errors
Compiling custom\common\ps\custom_nvram_extra.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\common\ps\custom_nvram_extra.c", line 2030: Warning:  #111-D: statement is unreachable
              break;
              ^
"custom\common\ps\custom_nvram_extra.c", line 2038: Warning:  #111-D: statement is unreachable
              break;
              ^
"custom\common\ps\custom_nvram_extra.c", line 2051: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2059: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2067: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2075: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2083: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2091: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2099: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2116: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2124: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2132: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2140: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2148: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2156: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2164: Warning:  #111-D: statement is unreachable
                      break;
                      ^
"custom\common\ps\custom_nvram_extra.c", line 2973: Warning:  #550-D: variable "pdata" was set but never used
      kal_uint8 *pdata = NULL;
                 ^
"custom\common\ps\custom_nvram_extra.c", line 3434: Warning:  #111-D: statement is unreachable
          break;
          ^
"custom\common\ps\custom_nvram_extra.c", line 3440: Warning:  #111-D: statement is unreachable
          break;
          ^
"custom\common\ps\custom_nvram_extra.c", line 3472: Warning:  #111-D: statement is unreachable
          break;
          ^
custom\common\ps\custom_nvram_extra.c: 21 warnings, 0 errors
Compiling custom\common\hal\nvram\custom_nvram_int_config.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\nvram\custom_nvram_int_config.c: 1 warning, 0 errors
Compiling custom\common\hal\nvram\custom_nvram_restore.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\nvram\custom_nvram_restore.c: 1 warning, 0 errors
Compiling custom\common\hal\nvram\custom_nvram_sec.c ... 
Compiling custom\common\hal\nvram\custom_nvram_secro.c ... 
Compiling custom\common\hal\nvram\custom_nvram_secro_tbl.c ... 
Compiling custom\ps\KEYTAK61D_GB_11C_BB\custom_poc_config.c ... 
Compiling custom\common\hal_public\custom_rec_config.c ... 
Compiling custom\common\ps\custom_recovery_timer.c ... 
Compiling custom\common\ps\custom_rrce_config.c ... 
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_scatstruct.c ... 
"custom\system\KEYTAK61D_GB_11C_BB\custom_scatstruct.c", line 1653: Warning:  #170-D: pointer points outside of underlying object
      region->len = (kal_uint32)&Image$$DYNAMIC_COMP_CAMIMGV_BODY$$Base + 0x5b20 - region->addr;
                                                                        ^
"custom\system\KEYTAK61D_GB_11C_BB\custom_scatstruct.c", line 2189: Warning:  #170-D: pointer points outside of underlying object
      region[11].len = (kal_uint32)&Image$$DYNAMIC_COMP_CAMIMGV_BODY$$Base + 0x5b20 - region[11].addr;
                                                                           ^
"custom\system\KEYTAK61D_GB_11C_BB\custom_scatstruct.c", line 2232: Warning:  #170-D: pointer points outside of underlying object
      TOTAL_CODE_REGION[7].len = (kal_uint32)&Image$$DYNAMIC_COMP_CAMIMGV_BODY$$RO$$Base + 0x5b20 - TOTAL_CODE_REGION[7].addr;
                                                                                         ^
custom\system\KEYTAK61D_GB_11C_BB\custom_scatstruct.c: 3 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_scatstruct_fota.c ... 
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_sds_dp.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\custom_sim_driver.c ... 
Compiling custom\common\ps\custom_sms_config.c ... 
Compiling custom\common\custom_sns_config.c ... 
Compiling custom\common\custom_sso_config.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_sso_config.c: 3 warnings, 0 errors
Compiling custom\common\custom_tcpip_wifi.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\common\custom_tcpip_wifi.c", line 153: Warning:  #188-D: enumerated type mixed with another type
      return 0;
             ^
"custom\common\custom_tcpip_wifi.c", line 281: Warning:  #188-D: enumerated type mixed with another type
      return 0;
             ^
custom\common\custom_tcpip_wifi.c: 6 warnings, 0 errors
Compiling custom\common\custom_uc_config.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_uc_config.c: 3 warnings, 0 errors
Compiling custom\common\ps\custom_uem.c ... 
"custom\common\ps\custom_uem.c", line 206: Warning:  #177-D: variable "ret" was declared but never referenced
      kal_uint32 ret=0; 
                 ^
"custom\common\ps\custom_uem.c", line 229: Warning:  #223-D: function "srv_gpio_play_vibrate" declared implicitly
      srv_gpio_play_vibrate(VIB_PATTERN_1, PLAY_ONCE);
      ^
custom\common\ps\custom_uem.c: 2 warnings, 0 errors
Compiling custom\common\ps\custom_ups_config.c ... 
Compiling custom\common\custom_ussd.c ... 
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_util.c ... 
Compiling custom\common\hal\custom_video.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\custom_video.c: 1 warning, 0 errors
Compiling custom\common\custom_videocall.c ... 
Compiling custom\common\custom_voip_config.c ... 
Compiling custom\common\custom_vrender.c ... 
Compiling custom\common\custom_wap_config.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_wap_config.c: 3 warnings, 0 errors
Compiling custom\common\custom_wap_cust_pack.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\custom_wap_cust_pack.c: 4 warnings, 0 errors
Compiling custom\common\custom_wlan_ui_config.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\custom_wlan_ui_config.c: 3 warnings, 0 errors
Compiling custom\common\ps\customer_at_command.c ... 
Compiling custom\common\ps\customer_band_block_default_setting.c ... 
Compiling custom\common\ps\customer_cm_retry_count.c ... 
Compiling custom\common\ps\customer_cmux_setting.c ... 
Compiling custom\common\customer_email_num.c ... 
Compiling custom\common\ps\customer_l4c_msghdlr.c ... 
Compiling custom\common\ps\customer_operator_name.c ... 
Compiling custom\common\ps\customer_pwr_level_report.c ... 
Compiling custom\common\ps\customer_sms_discard_patent.c ... 
Compiling custom\common\ps\customer_sms_msg_box_num.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\ps\customer_sms_msg_box_num.c: 1 warning, 0 errors
Compiling custom\common\ps\customer_sms_prefer_order.c ... 
Compiling custom\common\ps\customer_sms_tl_retry.c ... 
Compiling custom\ps\KEYTAK61D_GB_11C_BB\customer_supc_config.c ... 
Compiling custom\common\custpack_certs.c ... 
Compiling custom\common\custpack_java_certs.c ... 
Compiling custom\common\dm_common_customize.c ... 
Compiling custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\eint_def.c ... 
Compiling custom\drv\measure\eint_measure.c ... 
Compiling custom\codegen\KEYTAK61D_GB_11C_BB\eint_var.c ... 
Compiling custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\exif_custom.c ... 
Compiling custom\drv\Ext_Drv_Assert_Hdlr\ext_drv_assert_hdlr_if.c ... 
Compiling custom\common\fmr_config_customize.c ... 
Compiling custom\drv\fmr\default_bb\fmr_sw_features.c ... 
Compiling custom\system\KEYTAK61D_GB_11C_BB\fs_config.c ... 
Compiling custom\common\fs_quota.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\fs_quota.c: 4 warnings, 0 errors
Compiling custom\common\hal\ft_bt_customize.c ... 
"custom\common\hal\ft_bt_customize.c", line 115: Warning:  #223-D: function "memcpy" declared implicitly
      memcpy(&metaEntry, entry, sizeof(MetaEntry));
      ^
custom\common\hal\ft_bt_customize.c: 1 warning, 0 errors
Compiling custom\common\hal\ft_cct_customize.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\ft_cct_customize.c: 4 warnings, 0 errors
Compiling custom\meta\KEYTAK61D_GB_11C_BB\ft_customize.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\gpio_drv.c ... 
Compiling custom\drv\measure\gpio_measure.c ... 
Compiling custom\drv\common_drv\gpio_setting.c ... 
"custom\drv\common_drv\gpio_setting.c", line 274: Warning:  #61-D: integer operation result is out of range
  const kal_uint32   gpio_mode_allowed[][GPIO_HAVE_MAX_MODE+1] = {GPIO_MODE_ALLOWED_ARRAY};
                                                                  ^
"custom\drv\common_drv\gpio_setting.c", line 274: Warning:  #61-D: integer operation result is out of range
  const kal_uint32   gpio_mode_allowed[][GPIO_HAVE_MAX_MODE+1] = {GPIO_MODE_ALLOWED_ARRAY};
                                                                  ^
"custom\drv\common_drv\gpio_setting.c", line 277: Warning:  #61-D: integer operation result is out of range
   const kal_uint32  gpio_dir_out_allowed[] = {GPIO_DIR_OUT_ALLOWED_ARRAY};
                                               ^
"custom\drv\common_drv\gpio_setting.c", line 306: Warning:  #61-D: integer operation result is out of range
  	kal_uint32 dir_temp[GPIO_DIR_REG_MAX_NUM+1] = { GPIO_DIR_ALL_VALUE };
  	                                                ^
"custom\drv\common_drv\gpio_setting.c", line 398: Warning:  #61-D: integer operation result is out of range
  	 kal_uint32 pupd_temp[GPIO_PUPD_REG_MAX_NUM+1] = { GPIO_PUPD_ALL_VALUE };
  	                                                   ^
"custom\drv\common_drv\gpio_setting.c", line 453: Warning:  #177-D: variable "i" was declared but never referenced
  	kal_uint8 i;
  	          ^
"custom\drv\common_drv\gpio_setting.c", line 473: Warning:  #177-D: variable "i" was declared but never referenced
  	kal_uint8 i;
  	          ^
"custom\drv\common_drv\gpio_setting.c", line 492: Warning:  #177-D: variable "i" was declared but never referenced
  	kal_uint8 i;
  	          ^
"custom\drv\common_drv\gpio_setting.c", line 510: Warning:  #177-D: variable "i" was declared but never referenced
  	kal_uint8 i;
  	          ^
"custom\drv\common_drv\gpio_setting.c", line 530: Warning:  #177-D: variable "i" was declared but never referenced
  	kal_uint8 i;
  	          ^
"custom\drv\common_drv\gpio_setting.c", line 551: Warning:  #177-D: variable "i" was declared but never referenced
  	kal_uint8 i;
  	          ^
custom\drv\common_drv\gpio_setting.c: 11 warnings, 0 errors
Compiling custom\codegen\KEYTAK61D_GB_11C_BB\gpio_var.c ... 
Compiling custom\common\hal\gps_common_config.c ... 
Compiling custom\video\default\hal_custom_video_if.c ... 
Compiling custom\audio\_DEFAULT_BB\MT6261\i2s_input_drv.c ... 
"header_temp\audio_def.h", line 610: Warning:  #47-D: incompatible redefinition of macro "AUD_VSG_CTRL" (declared at line 1457 of "header_temp\dpram_6261.h")
     #define AUD_VSG_CTRL                     DP_AUDIO_PP_CTRL_base(0x5)
             ^
"header_temp\audio_def.h", line 611: Warning:  #47-D: incompatible redefinition of macro "VS_MOD_FREQ" (declared at line 1458 of "header_temp\dpram_6261.h")
     #define VS_MOD_FREQ                      DP_AUDIO_PP_CTRL_base(0x6)
             ^
"header_temp\audio_def.h", line 612: Warning:  #47-D: incompatible redefinition of macro "VS_CENTER_FREQ" (declared at line 1459 of "header_temp\dpram_6261.h")
     #define VS_CENTER_FREQ                   DP_AUDIO_PP_CTRL_base(0x7)
             ^
"header_temp\audio_def.h", line 613: Warning:  #47-D: incompatible redefinition of macro "VS_DIGI_GAIN" (declared at line 1460 of "header_temp\dpram_6261.h")
     #define VS_DIGI_GAIN                     DP_AUDIO_PP_CTRL_base(0x8)
             ^
"header_temp\afe_def.h", line 588: Warning:  #47-D: incompatible redefinition of macro "VSBST_CON5" (declared at line 587)
     #define VSBST_CON5          ((APBADDR)(SPEAKER_base + 0x0D40))
             ^
custom\audio\_DEFAULT_BB\MT6261\i2s_input_drv.c: 5 warnings, 0 errors
Compiling custom\drv\Camera_common\image_sensor.c ... 
Compiling custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c ... 
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 625: Warning:  #177-D: variable "temp_ae_reg" was declared but never referenced
  	kal_uint16 temp_ae_reg;
  	           ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 724: Warning:  #550-D: variable "LineLength" was set but never used
      kal_uint32 LineLength, FrameLength;
                 ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 724: Warning:  #550-D: variable "FrameLength" was set but never used
      kal_uint32 LineLength, FrameLength;
                             ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2169: Warning:  #223-D: function "GPIO_ModeSetup" declared implicitly
      GPIO_ModeSetup(27, 1);// CMCSD0
      ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2357: Warning:  #550-D: variable "PvClk" was set but never used
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                 ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2357: Warning:  #550-D: variable "PvLineLength" was set but never used
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                        ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2357: Warning:  #177-D: variable "CapShutter" was declared but never referenced
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                                      ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2357: Warning:  #177-D: variable "CapLineLength" was declared but never referenced
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                                                  ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2950: Warning:  #940-D: missing return statement at end of non-void function "Get_CAM_ID_String"
  {}
   ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 231: Warning:  #177-D: variable "CATSTestPattern" was declared but never referenced
  static const unsigned char CATSTestPattern[] = { 0 };
                             ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 489: Warning:  #177-D: function "GC0310_SERIALSetClock" was declared but never referenced
  static void GC0310_SERIALSetClock(kal_uint32 InternalClock)
              ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 600: Warning:  #177-D: function "GC0310_SERIALReadGain" was declared but never referenced
  static kal_uint32 GC0310_SERIALReadGain(void)
                    ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 765: Warning:  #177-D: function "GC0310_SERIALSetMinFps" was declared but never referenced
  static void GC0310_SERIALSetMinFps(kal_uint16 Fps)
              ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 832: Warning:  #177-D: function "GC0310_SERIALSetVideoFps" was declared but never referenced
  static void GC0310_SERIALSetVideoFps(kal_uint16 Fps)
              ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 859: Warning:  #177-D: function "GC0310_SERIALNightMode" was declared but never referenced
  static void GC0310_SERIALNightMode(kal_bool Enable)
              ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 1492: Warning:  #177-D: function "GC0310_SERIALGammaSelect" was declared but never referenced
  static void GC0310_SERIALGammaSelect(kal_uint32 GammaLvl)
              ^
"custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c", line 2142: Warning: C3017W: SensorId may be used before being set
    kal_uint32 SensorId;
               ^
custom\drv\YUV_sensor\GC0310_SERIAL\image_sensor_GC0310_SERIAL.c: 20 warnings, 0 errors
Compiling custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c ... 
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 605: Warning:  #550-D: variable "LineLength" was set but never used
      kal_uint32 LineLength, FrameLength;
                 ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 605: Warning:  #550-D: variable "FrameLength" was set but never used
      kal_uint32 LineLength, FrameLength;
                             ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 1724: Warning:  #223-D: function "GPIO_ModeSetup" declared implicitly
      GPIO_ModeSetup(27, 1);// CMCSD0
      ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 1894: Warning:  #550-D: variable "PvClk" was set but never used
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                 ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 1894: Warning:  #550-D: variable "PvLineLength" was set but never used
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                        ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 1894: Warning:  #177-D: variable "CapShutter" was declared but never referenced
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                                      ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 1894: Warning:  #177-D: variable "CapLineLength" was declared but never referenced
      kal_uint32 PvClk, PvLineLength, CapShutter, CapLineLength, DummyPixel = 0;
                                                  ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 367: Warning:  #177-D: function "GC6133_SERIALSetClock" was declared but never referenced
  static void GC6133_SERIALSetClock(kal_uint32 InternalClock)
              ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 478: Warning:  #177-D: function "GC6133_SERIALReadGain" was declared but never referenced
  static kal_uint32 GC6133_SERIALReadGain(void)
                    ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 646: Warning:  #177-D: function "GC6133_SERIALSetMinFps" was declared but never referenced
  static void GC6133_SERIALSetMinFps(kal_uint16 Fps)
              ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 714: Warning:  #177-D: function "GC6133_SERIALSetVideoFps" was declared but never referenced
  static void GC6133_SERIALSetVideoFps(kal_uint16 Fps)
              ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 741: Warning:  #177-D: function "GC6133_SERIALNightMode" was declared but never referenced
  static void GC6133_SERIALNightMode(kal_bool Enable)
              ^
"custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c", line 1570: Warning:  #177-D: function "GC6133_SERIALCapSetting" was declared but never referenced
  static void GC6133_SERIALCapSetting(void)
              ^
custom\drv\YUV_sensor\GC6133_SERIAL\image_sensor_GC6133_SERIAL.c: 13 warnings, 0 errors
Compiling custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\irda_custom.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\keypad_def.c ... 
Compiling custom\drv\measure\lcd_measure.c ... 
Compiling custom\drv\Camera_common\lens_module.c ... 
Compiling custom\common\ps\lmmi_ind.c ... 
Compiling custom\common\ps\lmmi_rsp.c ... 
Compiling custom\l1_rf\MT6261RF_CUSTOM\m12193.c ... 
Compiling custom\system\KEYTAK61D_GB_11C_BB\maui_MBA_info.c ... 
Compiling custom\common\hal\meta_customize.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\meta_customize.c: 1 warning, 0 errors
Compiling custom\common\mmi_gps_nvram_def.c ... 
Compiling custom\common\mmi_msg_context.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\mmi_msg_context.c: 3 warnings, 0 errors
Compiling custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c ... 
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 206: Warning:  #111-D: statement is unreachable
  			break;
  			^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 209: Warning:  #111-D: statement is unreachable
  			break;
  			^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 214: Warning:  #111-D: statement is unreachable
  			break;
  			^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 217: Warning:  #111-D: statement is unreachable
  			break;
  			^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 220: Warning:  #111-D: statement is unreachable
  			break;
  			^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 223: Warning:  #111-D: statement is unreachable
  			break;
  			^
"custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c", line 226: Warning:  #111-D: statement is unreachable
  			break;
  			^
custom\drv\misc_drv\KEYTAK61D_GB_11C_BB\msdc_custom.c: 7 warnings, 0 errors
Compiling custom\drv\common_drv\nld_central_ctrl.c ... 
Compiling custom\common\PLUTO_MMI\nvram_common_config.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\PLUTO_MMI\nvram_common_config.c: 4 warnings, 0 errors
Compiling custom\common\PLUTO_MMI\nvram_common_custpack.c ... 
Compiling custom\common\hal\nvram\nvram_cust_pack.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\hal\nvram\nvram_cust_pack.c: 4 warnings, 0 errors
Compiling custom\common\PLUTO_MMI\nvram_custpack_table.c ... 
Compiling custom\common\hal\nvram\nvram_custpack_table_lid.c ... 
Compiling custom\common\hal\nvram\nvram_data_items.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\nvram\nvram_data_items.c: 1 warning, 0 errors
Compiling custom\audio\KEYTAK61D_GB_11C_BB\nvram_default_audio.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"custom\audio\KEYTAK61D_GB_11C_BB\nvram_default_audio.c", line 247: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 140 of "custom/common/hal/aud_common_config.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN1_H)
          ^
custom\audio\KEYTAK61D_GB_11C_BB\nvram_default_audio.c: 2 warnings, 0 errors
Compiling custom\common\PLUTO_MMI\nvram_default_value.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\PLUTO_MMI\nvram_default_value.c: 4 warnings, 0 errors
Compiling custom\app\KEYTAK61D_GB_11C_BB\nvram_user_config.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\app\KEYTAK61D_GB_11C_BB\nvram_user_config.c: 4 warnings, 0 errors
Compiling custom\app\KEYTAK61D_GB_11C_BB\nvram_user_custpack.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmic_custom.c ... 
Compiling custom\codegen\KEYTAK61D_GB_11C_BB\pmic_drv.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c ... 
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c", line 183: Warning:  #177-D: variable "kpledSetSel" was declared but never referenced
  		PMU_CTRL_KPLED_SET_SEL kpledSetSel;
  		                       ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c", line 204: Warning:  #550-D: variable "isinkCtrlMode" was set but never used
  		PMU_CTRL_ISINK_SET_MODE isinkCtrlMode;
  		                        ^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c: 2 warnings, 0 errors
Compiling custom\drv\common_drv\pwic_cust.c ... 
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning:  #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
  #define DCL_NONE   DCL_PWM4
          ^
custom\drv\common_drv\pwic_cust.c: 1 warning, 0 errors
Compiling custom\drv\measure\pwm_measure.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\pwmdrv.c ... 
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning:  #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
  #define DCL_NONE   DCL_PWM4
          ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pwmdrv.c", line 172: Warning:  #177-D: variable "pwm_handle" was declared but never referenced
  	 DCL_HANDLE pwm_handle;
  	            ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pwmdrv.c", line 173: Warning:  #177-D: variable "config" was declared but never referenced
  	 DCL_CONFIGURE_T config;
  	                 ^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pwmdrv.c", line 174: Warning:  #177-D: variable "owner" was declared but never referenced
  	 kal_uint32 owner;
  	            ^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\pwmdrv.c: 4 warnings, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\pxs_custom.c ... 
Compiling custom\common\resource_audio.c ... 
Compiling custom\app\KEYTAK61D_GB_11C_BB\resource_custpack_jtbl.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\app\KEYTAK61D_GB_11C_BB\resource_custpack_jtbl.c: 4 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\resource_custpack_preamble.c ... 
Compiling custom\system\KEYTAK61D_GB_11C_BB\resource_lang_pack_preamble.c ... 
Compiling custom\atci\src\rmmi_ats.c ... 
Compiling custom\atci\src\rmmi_msgbased_at.c ... 
Compiling custom\atci\src\rmmi_validator_custom_op01.c ... 
Compiling custom\atci\src\rmmi_validator_custom_tc01.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\rtc_custom.c ... 
Compiling custom\drv\Camera_common\sensor_frame_rate_lut.c ... 
Compiling custom\common\ps\supc_common_config.c ... 
"custom\common\ps\supc_common_config.c", line 117: Warning:  #188-D: enumerated type mixed with another type
        return ((check_sim_card_status(SIM1) != NORMAL_SIM_PRESENCE) && (check_sim_card_status(SIM1) != TEST_SIM_PRESENCE));
               ^
custom\common\ps\supc_common_config.c: 1 warning, 0 errors
Compiling custom\common\syncml_common_customize.c ... 
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\syncml_common_customize.c: 4 warnings, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\touch_panel_custom.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\touch_panel_spi.c ... 
Compiling custom\common\hal\touchpanel_nvram_def.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
custom\common\hal\touchpanel_nvram_def.c: 1 warning, 0 errors
Compiling custom\tst\tst_custom_config_misc.c ... 
Compiling custom\tst\tst_export_config.c ... 
Compiling custom\tst\tst_file_default_Catcher_filter.c ... 
Compiling custom\tst\tst_file_log_write.c ... 
Compiling custom\tst\tst_file_trans_export.c ... 
Compiling custom\tst\tst_file_transferrer.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\uart_def.c ... 
Compiling custom\codegen\KEYTAK61D_GB_11C_BB\uem_drv.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\uem_gpio.c ... 
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning:  #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
  #define DCL_NONE   DCL_PWM4
          ^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\uem_gpio.c: 1 warning, 0 errors
Compiling custom\common\ps\ul1_nvram_def.c ... 
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\usb_custom.c ... 
Compiling custom\drv\YUV_sensor\GC0310_SERIAL\usbvideo_attr_GC0310_SERIAL.c ... 
Compiling custom\drv\YUV_sensor\GC6133_SERIAL\usbvideo_attr_GC6133_SERIAL.c ... 
Compiling custom\common\userprofile_nvram_def.c ... 
"custom/common/hal/aud_common_config.h", line 140: Warning:  #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
  #define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
          ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
      #define    CFG_TOPWELL_MENU_LAYOUT_CURRENCY  (__MENU_ORGANIZE__)
                 ^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning:  #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
      #define CFG_TOPWELL_MENU_LAYOUT_CURRENCY                            (__MENU_DEFAULT__)
              ^
custom\common\userprofile_nvram_def.c: 4 warnings, 0 errors
Compiling custom\common\hal\wifi_common_config.c ... 
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 -D__BL_ENABLE__ -DREMAPPING -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "__UCS2_ENCODING SETL {TRUE}" -pd "MMI_ON_HARDWARE_P SETL {TRUE}" -pd "APCS_INTWORK SETL {TRUE}" -pd "USE_JAM=0 SETL {TRUE}" -pd "COMPILER_SUPPORTS_LONG=1 SETL {TRUE}" -pd "__BL_ENABLE__ SETL {TRUE}" -pd "REMAPPING SETL {TRUE}" -pd "REMAPPING SETL {TRUE}" -pd "__NVRAM_SPLIT__ SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__BL_ENABLE__ SETL {TRUE}" -pd "REMAPPING SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/custom.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\custom\custom_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/custom.lib is updated

.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\adc_channel.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\adc_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\adc_var.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\afe.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\alerterdrv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\alerter_tone.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\apm_TaskDef.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\AR1000.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ast_hif_hw.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ata_at_command_customer_hdlr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\audcoeff.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\audio_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\aud_common.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\aud_I2S_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\aux_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\battery_measure.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\brt_drv_init.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\btmtk_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\bt_common_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\camera_hw.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\camera_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\camera_sccb.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\camera_tuning_oper.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\camera_tuning_para.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\certman_cert_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\certman_gadget_certs.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\CharsetTable.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\chr_parameter.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\color_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_flash_init.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_flash_nor.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X160_T303_ST7735S_ZGD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X160_T305_GC9101_YC_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X160_T305_GC9102_KD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X160_T305_ST7735S_ZGD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X160_T3181_ILI9163V_SL.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X160_T3181_ST7735S_ZGD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_128X168_T305_NV3021C.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_176X220_T308_GC9201_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_176X220_T308_ILI9225G_BBM_IVO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_176X220_T308_NV3038B_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T303_GC9301_YC_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T303_GC9302_SC_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T303_ILI9341_WT_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T303_ST7789S_LT_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T306_NV3029E_KR_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T306_NV3029E_KR_IVO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T306_ST7789V_BBM_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T306_ST7789V_BBM_HSD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T306_ST7789V_SC_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T310_GC9302_SC_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T310_GC9303_YC_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T310_ILI9340L_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T310_NV3029E_KR_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T310_ST7789V_SL_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3183_GC9304_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3183_GC9305_HLT.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3183_ST7789V_FC_LC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3183_ST7789V_HLT_HSD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3183_ST7789V_SL_SC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3183_ST7789V_ZGD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3185_ST7789V_HLT_HSD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3185_ST7789V_SL_SC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3211_ILI9341_JD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3212_ILI9341V_BASE_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3243_GC9304_SHY_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3243_NV3029E_SHY_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3243_ST7789V_CMI.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3245_GC9303_GC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3245_GC9304_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_GC9301_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_GC9302_SC_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_GC9304_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_ILI9341_ZJGD.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_NV3029E_KD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_NV3029G_KD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T326_ST7789S_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3281_GC9304_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T3286_ST7789V_DC_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T333_GC9302_SC_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T333_GC9303_YC_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T333_GC9305_KHD_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T333_ILI9340L_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T333_NV3029E_KR_CTC.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T333_ST7789V_SL_CMO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T337_ILI9340L_IVO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T337_NV3029E_KR_IVO.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T351_GC9301_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T351_GC9302_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T351_ILI9341_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\combo_lcm_240X320_T351_ST7789S_BASE.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\common_mmi_cache_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\Conversions.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_at_command.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_band_block_default_setting.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_cmux_setting.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_cm_retry_count.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_email_num.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_l4c_msghdlr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_operator_name.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_pwr_level_report.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\Customer_sim_voltage_support.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_sms_discard_patent.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_sms_msg_box_num.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_sms_prefer_order.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_sms_tl_retry.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\customer_supc_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_abm_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_atcmd_parse.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_blconfig.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_cloud_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_config_account.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_data_account.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_dcd.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_demp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_drv_init.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_ecc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_ehplmn_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_em.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_EMI_MT6250.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_EMI_MT6255.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_EMI_MT6256.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_EMI_MT6260.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_EMI_MT6261.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_EMI_SP.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_ems_context.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_em_dummyDrv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_equipment.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_events_notify.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_fdn.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_flash.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_flash_norfdm5.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_flc_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_fm.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_fota.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_gadget_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_gas_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_gprs_pdp_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_gprs_pdp_value_check.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_hw_default.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_img_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_imps_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_imps_cust.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_jump_tbl.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_kuro_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_l4_utility.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_led_patterns.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_mbbms.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_mmi_cache_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_mm_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_ntp_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_cat.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_extra.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_int_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_restore.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_sec.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_secro.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_nvram_secro_tbl.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_poc_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_recovery_timer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_rec_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_rrce_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_scatstruct.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_scatstruct_fota.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_sds_dp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_SFI.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_sim_driver.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_sms_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_SNAND.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_sns_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_sso_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_tcpip_wifi.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_uc_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_uem.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_ups_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_ussd.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_util.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_video.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_videocall.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_voip_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_vrender.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_wap_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_wap_cust_pack.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custom_wlan_ui_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custpack_certs.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\custpack_java_certs.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\cust_ocsp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\dm_common_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\eint_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\eint_measure.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\eint_var.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\exif_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ext_drv_assert_hdlr_if.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\fmr_config_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\fmr_sw_features.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\fs_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\fs_quota.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ft_bt_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ft_cct_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ft_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\gpio_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\gpio_measure.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\gpio_setting.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\gpio_var.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\gps_common_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\hal_custom_video_if.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\i2s_input_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\image_sensor.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\image_sensor_GC0310_SERIAL.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\image_sensor_GC6133_SERIAL.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\irda_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\keypad_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\lcd_measure.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\lens_module.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\lmmi_ind.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\lmmi_rsp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\m12193.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\maui_MBA_info.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\meta_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\mmi_gps_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\mmi_msg_context.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\msdc_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT5192FM.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT5193FM.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT6188.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT6189.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT6302_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT6306_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT6616.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\MT6626.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nld_central_ctrl.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\NS953_SerialComm.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_common_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_common_custpack.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_custpack_table.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_custpack_table_lid.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_cust_pack.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_data_items.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_default_audio.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_default_value.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_user_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\nvram_user_custpack.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pmic_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pmic_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pmu_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pwic_cust.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pwmdrv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pwm_measure.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\pxs_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\resource_audio.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\resource_custpack_jtbl.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\resource_custpack_preamble.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\resource_lang_pack_preamble.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\rmmi_ats.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\rmmi_msgbased_at.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\rmmi_validator_custom_op01.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\rmmi_validator_custom_tc01.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\rtc_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\sensor_frame_rate_lut.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\supc_common_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\syncml_common_customize.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\TEA5761UK.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\TEA5767HN.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\touchpanel_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\touch_panel_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\touch_panel_spi.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\tst_custom_config_misc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\tst_export_config.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\tst_file_default_Catcher_filter.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\tst_file_log_write.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\tst_file_transferrer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\tst_file_trans_export.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\uart_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\uem_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\uem_gpio.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\ul1_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\usbvideo_attr_GC0310_SERIAL.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\usbvideo_attr_GC6133_SERIAL.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\usb_custom.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\userprofile_nvram_def.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\custom_dep\wifi_common_config.det


Processing adc_channel.det adc_nvram_def.det adc_var.det afe.det alerterdrv.det alerter_tone.det apm_TaskDef.det AR1000.det ast_hif_hw.det ata_at_command_customer_hdlr.det audcoeff.det audio_nvram_def.det aud_common.det aud_I2S_config.det aux_custom.det battery_measure.det brt_drv_init.det btmtk_config.det bt_common_config.det camera_hw.det camera_nvram_def.det camera_sccb.det camera_tuning_oper.det camera_tuning_para.det certman_cert_config.det certman_gadget_certs.det CharsetTable.det chr_parameter.det color_custom.det combo_flash_init.det combo_flash_nor.det combo_lcm.det combo_lcm_128X160_T303_ST7735S_ZGD.det combo_lcm_128X160_T305_GC9101_YC_CTC.det combo_lcm_128X160_T305_GC9102_KD_CTC.det combo_lcm_128X160_T305_ST7735S_ZGD_CTC.det combo_lcm_128X160_T3181_ILI9163V_SL.det combo_lcm_128X160_T3181_ST7735S_ZGD_CTC.det combo_lcm_128X168_T305_NV3021C.det combo_lcm_176X220_T308_GC9201_BASE.det combo_lcm_176X220_T308_ILI9225G_BBM_IVO.det combo_lcm_176X220_T308_NV3038B_BASE.det combo_lcm_240X320_T303_GC9301_YC_CMO.det combo_lcm_240X320_T303_GC9302_SC_CMO.det combo_lcm_240X320_T303_ILI9341_WT_CTC.det combo_lcm_240X320_T303_ST7789S_LT_CTC.det combo_lcm_240X320_T306_NV3029E_KR_CTC.det combo_lcm_240X320_T306_NV3029E_KR_IVO.det combo_lcm_240X320_T306_ST7789V_BBM_CMO.det combo_lcm_240X320_T306_ST7789V_BBM_HSD.det combo_lcm_240X320_T306_ST7789V_SC_CTC.det combo_lcm_240X320_T310_GC9302_SC_CMO.det combo_lcm_240X320_T310_GC9303_YC_CMO.det combo_lcm_240X320_T310_ILI9340L_CTC.det combo_lcm_240X320_T310_NV3029E_KR_CTC.det combo_lcm_240X320_T310_ST7789V_SL_CMO.det combo_lcm_240X320_T3183_GC9304_CTC.det combo_lcm_240X320_T3183_GC9305_HLT.det combo_lcm_240X320_T3183_ST7789V_FC_LC.det combo_lcm_240X320_T3183_ST7789V_HLT_HSD.det combo_lcm_240X320_T3183_ST7789V_SL_SC.det combo_lcm_240X320_T3183_ST7789V_ZGD_CTC.det combo_lcm_240X320_T3185_ST7789V_HLT_HSD.det combo_lcm_240X320_T3185_ST7789V_SL_SC.det combo_lcm_240X320_T3211_ILI9341_JD.det combo_lcm_240X320_T3212_ILI9341V_BASE_CTC.det combo_lcm_240X320_T3243_GC9304_SHY_CTC.det combo_lcm_240X320_T3243_NV3029E_SHY_CTC.det combo_lcm_240X320_T3243_ST7789V_CMI.det combo_lcm_240X320_T3245_GC9303_GC.det combo_lcm_240X320_T3245_GC9304_CTC.det combo_lcm_240X320_T326_GC9301_BASE.det combo_lcm_240X320_T326_GC9302_SC_CMO.det combo_lcm_240X320_T326_GC9304_CTC.det combo_lcm_240X320_T326_ILI9341_ZJGD.det combo_lcm_240X320_T326_NV3029E_KD_CTC.det combo_lcm_240X320_T326_NV3029G_KD_CTC.det combo_lcm_240X320_T326_ST7789S_BASE.det combo_lcm_240X320_T3281_GC9304_CTC.det combo_lcm_240X320_T3286_ST7789V_DC_CTC.det combo_lcm_240X320_T333_GC9302_SC_CTC.det combo_lcm_240X320_T333_GC9303_YC_CMO.det combo_lcm_240X320_T333_GC9305_KHD_CTC.det combo_lcm_240X320_T333_ILI9340L_CTC.det combo_lcm_240X320_T333_NV3029E_KR_CTC.det combo_lcm_240X320_T333_ST7789V_SL_CMO.det combo_lcm_240X320_T337_ILI9340L_IVO.det combo_lcm_240X320_T337_NV3029E_KR_IVO.det combo_lcm_240X320_T351_GC9301_BASE.det combo_lcm_240X320_T351_GC9302_BASE.det combo_lcm_240X320_T351_ILI9341_BASE.det combo_lcm_240X320_T351_ST7789S_BASE.det common_mmi_cache_config.det Conversions.det customer_at_command.det customer_band_block_default_setting.det customer_cmux_setting.det customer_cm_retry_count.det customer_email_num.det customer_l4c_msghdlr.det customer_operator_name.det customer_pwr_level_report.det Customer_sim_voltage_support.det customer_sms_discard_patent.det customer_sms_msg_box_num.det customer_sms_prefer_order.det customer_sms_tl_retry.det customer_supc_config.det custom_abm_config.det custom_atcmd_parse.det custom_blconfig.det custom_cloud_config.det custom_config.det custom_config_account.det custom_data_account.det custom_dcd.det custom_demp.det custom_drv_init.det custom_ecc.det custom_ehplmn_config.det custom_em.det custom_EMI_MT6250.det custom_EMI_MT6255.det custom_EMI_MT6256.det custom_EMI_MT6260.det custom_EMI_MT6261.det custom_EMI_SP.det custom_ems_context.det custom_em_dummyDrv.det custom_equipment.det custom_events_notify.det custom_fdn.det custom_flash.det custom_flash_norfdm5.det custom_flc_config.det custom_fm.det custom_fota.det custom_gadget_config.det custom_gas_config.det custom_gprs_pdp_config.det custom_gprs_pdp_value_check.det custom_hw_default.det custom_img_config.det custom_imps_config.det custom_imps_cust.det custom_jump_tbl.det custom_kuro_config.det custom_l4_utility.det custom_led_patterns.det custom_mbbms.det custom_mmi_cache_config.det custom_mm_config.det custom_ntp_config.det custom_nvram_cat.det custom_nvram_config.det custom_nvram_extra.det custom_nvram_int_config.det custom_nvram_restore.det custom_nvram_sec.det custom_nvram_secro.det custom_nvram_secro_tbl.det custom_poc_config.det custom_recovery_timer.det custom_rec_config.det custom_rrce_config.det custom_scatstruct.det custom_scatstruct_fota.det custom_sds_dp.det custom_SFI.det custom_sim_driver.det custom_sms_config.det custom_SNAND.det custom_sns_config.det custom_sso_config.det custom_tcpip_wifi.det custom_uc_config.det custom_uem.det custom_ups_config.det custom_ussd.det custom_util.det custom_video.det custom_videocall.det custom_voip_config.det custom_vrender.det custom_wap_config.det custom_wap_cust_pack.det custom_wlan_ui_config.det custpack_certs.det custpack_java_certs.det cust_ocsp.det dm_common_customize.det eint_def.det eint_measure.det eint_var.det exif_custom.det ext_drv_assert_hdlr_if.det fmr_config_customize.det fmr_sw_features.det fs_config.det fs_quota.det ft_bt_customize.det ft_cct_customize.det ft_customize.det gpio_drv.det gpio_measure.det gpio_setting.det gpio_var.det gps_common_config.det hal_custom_video_if.det i2s_input_drv.det image_sensor.det image_sensor_GC0310_SERIAL.det image_sensor_GC6133_SERIAL.det irda_custom.det keypad_def.det lcd_measure.det lens_module.det lmmi_ind.det lmmi_rsp.det m12193.det maui_MBA_info.det meta_customize.det mmi_gps_nvram_def.det mmi_msg_context.det msdc_custom.det MT5192FM.det MT5193FM.det MT6188.det MT6189.det MT6302_custom.det MT6306_custom.det MT6616.det MT6626.det nld_central_ctrl.det NS953_SerialComm.det nvram_common_config.det nvram_common_custpack.det nvram_custpack_table.det nvram_custpack_table_lid.det nvram_cust_pack.det nvram_data_items.det nvram_default_audio.det nvram_default_value.det nvram_user_config.det nvram_user_custpack.det pmic_custom.det pmic_drv.det pmu_custom.det pwic_cust.det pwmdrv.det pwm_measure.det pxs_custom.det resource_audio.det resource_custpack_jtbl.det resource_custpack_preamble.det resource_lang_pack_preamble.det rmmi_ats.det rmmi_msgbased_at.det rmmi_validator_custom_op01.det rmmi_validator_custom_tc01.det rtc_custom.det sensor_frame_rate_lut.det supc_common_config.det syncml_common_customize.det TEA5761UK.det TEA5767HN.det touchpanel_nvram_def.det touch_panel_custom.det touch_panel_spi.det tst_custom_config_misc.det tst_export_config.det tst_file_default_Catcher_filter.det tst_file_log_write.det tst_file_transferrer.det tst_file_trans_export.det uart_def.det uem_drv.det uem_gpio.det ul1_nvram_def.det usbvideo_attr_GC0310_SERIAL.det usbvideo_attr_GC6133_SERIAL.det usb_custom.det userprofile_nvram_def.det wifi_common_config.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'