audio.log 131 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
Module audio is in DEFALUT mode
Compiling hal\audio\src\v1\comp\PBMG\AacDspDecoder.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)
             ^
"hal\audio\src\v1\comp\PBMG\AacDspDecoder.c", line 927: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
hal\audio\src\v1\comp\PBMG\AacDspDecoder.c: 5 warnings, 0 errors
Compiling hal\audio\src\common\src\AacParser.c ... 
"hal\audio\src\common\src\AacParser.c", line 279: Warning:  #550-D: variable "uBitrate" was set but never used
        kal_uint32 uBitrate;
                   ^
hal\audio\src\common\src\AacParser.c: 1 warning, 0 errors
Compiling hal\audio\src\v1\comp\PBMG\AmrDspDecoder.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)
             ^
"hal\audio\src\v1\comp\PBMG\AmrDspDecoder.c", line 924: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
hal\audio\src\v1\comp\PBMG\AmrDspDecoder.c: 5 warnings, 0 errors
Compiling hal\audio\src\common\src\AmrParser.c ... 
Compiling hal\audio\src\common\src\AudComUtil.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)
             ^
hal\audio\src\common\src\AudComUtil.c: 4 warnings, 0 errors
Compiling hal\audio\src\common\src\AudioDrain.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)
             ^
hal\audio\src\common\src\AudioDrain.c: 4 warnings, 0 errors
Compiling hal\audio\src\v1\BT_PcmLoopback.c ... 
Compiling hal\audio\src\common\src\DafDecoder.c ... 
Compiling hal\audio\src\common\src\DafParser.c ... 
Compiling hal\audio\src\common\src\M4aParser.c ... 
Compiling hal\audio\src\common\src\MedAdapt.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)
             ^
"hal\audio\src\common\src\MedAdapt.c", line 259: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
"hal\audio\src\common\src\MedAdapt.c", line 310: Warning:  #223-D: function "AUDLP_Check_LowPower_Status" declared implicitly
      if(AUDLP_Check_LowPower_Status())
         ^
"hal\audio\src\common\src\MedAdapt.c", line 311: Warning:  #223-D: function "AUDLP_Mode" declared implicitly
         AUDLP_Mode(KAL_FALSE, 1);     
         ^
"hal\audio\src\common\src\MedAdapt.c", line 394: Warning:  #223-D: function "Media_A2V_NOTIFY_MEDIA_END" declared implicitly
           Media_A2V_NOTIFY_MEDIA_END(hdl->Stop, hdl);
           ^
hal\audio\src\common\src\MedAdapt.c: 8 warnings, 0 errors
Compiling hal\audio\src\common\src\melody\MelodyParser.c ... 
"hal\audio\src\common\src\melody\MelodyParser.c", line 148: Warning:  #177-D: variable "chantype" was declared but never referenced
  const static int8 chantype[] = {
                    ^
hal\audio\src\common\src\melody\MelodyParser.c: 1 warning, 0 errors
Compiling hal\audio\src\common\src\melody\MelodySynthesizer.c ... 
Compiling hal\audio\src\v1\PcmMixer.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/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)
          ^
hal\audio\src\v1\PcmMixer.c: 6 warnings, 0 errors
Compiling hal\audio\src\common\src\PcmRouteSrc.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)
             ^
hal\audio\src\common\src\PcmRouteSrc.c: 4 warnings, 0 errors
Compiling hal\audio\src\v1\comp\PBMG\PcmSink.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/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)
          ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 793: Warning:  #167-D: argument of type "volatile uint16 *" is incompatible with parameter of type "volatile kal_int16 *"
     pcmsink_ReadFromDSP_16to32(pDst, pIdmaPtr, uSrcLen);
                                      ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 800: Warning:  #167-D: argument of type "volatile uint16 *" is incompatible with parameter of type "volatile kal_int16 *"
        pcmsink_ReadFromDSP_16to32(pDst, pIdmaPtr, uSrcLen);
                                         ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 822: Warning:  #167-D: argument of type "volatile uint16 *" is incompatible with parameter of type "volatile kal_int16 *"
        pcmsink_WriteToDSP_32to16(pIdmaPtr, pSrc32, pSrc16, uDspLen, fWriteZeroToDsp);
                                  ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 897: Warning:  #167-D: argument of type "kal_int32 *" is incompatible with parameter of type "kal_uint32 *"
        PcmRut_GetPcmFromDSP(PcmSinkStatic.pSoundBuffer, uSpace);
                             ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 935: Warning:  #188-D: enumerated type mixed with another type
        PcmRut_PutPcmToDSP(PcmSinkStatic.pSoundBuffer, (kal_int16*)PcmSinkStatic.pSoundBuffer, uSpace, fWriteZeroToDsp);
                                                                                                       ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 939: Warning:  #188-D: enumerated type mixed with another type
        pcmsink_DspSound_PutPcmToDSP(uSpace, fWriteZeroToDsp);
                                             ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 972: Warning:  #223-D: function "BT_SCO_AudioWriteData" declared implicitly
           BT_SCO_AudioWriteData((kal_int16*)PcmSinkStatic.pSoundBuffer, uSamples, fMono2Stereo);
           ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 834: Warning:  #177-D: variable "uMixerDataCount" was declared but never referenced
     kal_uint32 uToneDataCount=0, uMixerDataCount=0, uSpace=0, uCurrentAudioData=0, uNextHisrSamples = 0, uDspSpace=0, uValidAudioData = 0, uDspData = 0;
                                  ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 834: Warning:  #550-D: variable "uDspSpace" was set but never used
     kal_uint32 uToneDataCount=0, uMixerDataCount=0, uSpace=0, uCurrentAudioData=0, uNextHisrSamples = 0, uDspSpace=0, uValidAudioData = 0, uDspData = 0;
                                                                                                          ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1204: Warning:  #188-D: enumerated type mixed with another type
     kal_bool fFillData = (PcmSinkStatic.uPcmFunction & PCM_FUNC_AUDIO) && pIntCompHandle;
                          ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1245: Warning:  #223-D: function "AUDLP_StartTimer" declared implicitly
        AUDLP_StartTimer();
        ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1259: Warning:  #188-D: enumerated type mixed with another type
        kal_uint32 uMovedToDspWord = pcmsink_PutData(pIntCompHandle, (PcmSink.uChannelNumber==1));
                                                                     ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1441: Warning:  #223-D: function "AUDLP_SW_Trigger_Event_Setting" declared implicitly
        AUDLP_SW_Trigger_Event_Setting(KAL_TRUE);
        ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1458: Warning:  #223-D: function "AUDLP_SetTimerPeriod" declared implicitly
        AUDLP_SetTimerPeriod((kal_uint32)PcmSink.uSampleRate);
        ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1528: Warning:  #223-D: function "AUDLP_SW_Trigger_Event_Setting" declared implicitly
        AUDLP_SW_Trigger_Event_Setting(KAL_FALSE);
        ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1737: Warning:  #140-D: too many arguments in function call
     pcmsink_OpenDevice( NULL );
                         ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1815: Warning:  #117-D: non-void function "pcmsink_Stop_Audio" should return a value
        return;
              ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1960: Warning:  #188-D: enumerated type mixed with another type
     return (PcmSinkStatic.uState != PCMSINK_STATE_IDLE);
            ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 2004: Warning:  #223-D: function "BT_SCO_Mute" declared implicitly
     BT_SCO_Mute(fMute);
     ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 329: Warning:  #177-D: function "pcmsink_GetFreqIndex" was declared but never referenced
  static kal_uint32 pcmsink_GetFreqIndex(kal_uint32 uSampleRate)
                    ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 710: Warning:  #177-D: function "pcmsink_DspSound_AddFromMixer" was declared but never referenced
  static void pcmsink_DspSound_AddFromMixer(const kal_uint32 uSpace)
              ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 717: Warning:  #177-D: function "pcmsink_DspSound_AddFromVoice" was declared but never referenced
  static void pcmsink_DspSound_AddFromVoice(kal_int16 *src ,kal_uint32 uSpace)
              ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 368: Warning: C3017W: aud_id may be used before being set
   kal_uint16 aud_id;
              ^
"hal\audio\src\v1\comp\PBMG\PcmSink.c", line 1415: Warning: C3017W: uMovedToDspWord may be used before being set
   kal_uint32 uMovedToDspWord;
              ^
hal\audio\src\v1\comp\PBMG\PcmSink.c: 30 warnings, 0 errors
Compiling hal\audio\src\common\src\SeekEngine.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)
             ^
hal\audio\src\common\src\SeekEngine.c: 4 warnings, 0 errors
Compiling hal\audio\src\common\src\WavDecoder.c ... 
Compiling hal\audio\src\common\src\WavParser.c ... 
"hal\audio\src\common\src\WavParser.c", line 480: Warning:  #127-D: expected a statement
              }
              ^
"hal\audio\src\common\src\WavParser.c", line 389: Warning:  #177-D: variable "pPBhdl" was declared but never referenced
     MHPB_Internal *pPBhdl = (MHPB_Internal *)ihdl->mhdl;
                    ^
hal\audio\src\common\src\WavParser.c: 2 warnings, 0 errors
Compiling hal\audio\src\v1\Wavetable_SW.c ... 
Compiling hal\audio\src\v1\cmpdrv\aac_comp_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)
             ^
"hal\audio\src\v1\cmpdrv\aac_comp_drv.c", line 573: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
"hal\audio\src\v1\cmpdrv\aac_comp_drv.c", line 665: Warning:  #223-D: function "Media_A2V_NOTIFY_MEDIA_END" declared implicitly
              Media_A2V_NOTIFY_MEDIA_END(hdl->Stop, hdl);
              ^
hal\audio\src\v1\cmpdrv\aac_comp_drv.c: 6 warnings, 0 errors
Compiling hal\audio\src\v1\comp\aac_sbr.c ... 
Compiling hal\audio\src\v1\comp\aac_seek.c ... 
Compiling hal\audio\src\v1\afes\afe_6261.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/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)
          ^
"hal\audio\src\v1\afes\afe_6261.c", line 784: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
     PcmSink_SetGain(DG_DAF);
     ^
"hal\audio\src\v1\afes\afe_6261.c", line 785: Warning:  #223-D: function "PcmSink_InitDigitalGain" declared implicitly
     PcmSink_InitDigitalGain();
     ^
"hal\audio\src\v1\afes\afe_6261.c", line 2500: Warning:  #223-D: function "DTMF_MCU_IsPlaying" declared implicitly
        afe.Pre_InSrc = (DTMF_MCU_IsPlaying()) ? SRC_AUDIO_DAC : SRC_VOICE_DAC;
                         ^
"hal\audio\src\v1\afes\afe_6261.c", line 2531: Warning:  #223-D: function "DTMF_MCU_IsPlaying" declared implicitly
        afe.Pre_InSrc = (DTMF_MCU_IsPlaying()) ? SRC_AUDIO_DAC : SRC_VOICE_DAC;
                         ^
"hal\audio\src\v1\afes\afe_6261.c", line 901: Warning:  #177-D: function "Convert_DC_offset_sum_to_DC_offset_val" was declared but never referenced
  static kal_int32 Convert_DC_offset_sum_to_DC_offset_val(kal_int32 DC_offset_sum, kal_int32 cali_times, kal_int32 pre_offset_val)
                   ^
"hal\audio\src\v1\afes\afe_6261.c", line 922: Warning:  #177-D: function "Convert_DC_offset_val_to_DC_comp_val" was declared but never referenced
  static kal_uint16 Convert_DC_offset_val_to_DC_comp_val(kal_int32 curr_DC_offset_val)
                    ^
"hal\audio\src\v1\afes\afe_6261.c", line 950: Warning:  #177-D: function "Convert_DC_offset_val_to_DC_offset_mV" was declared but never referenced
  static kal_int16 Convert_DC_offset_val_to_DC_offset_mV(kal_int32 DC_offset_val)
                   ^
"hal\audio\src\v1\afes\afe_6261.c", line 957: Warning:  #177-D: function "Sum_AuxADC_Value" was declared but never referenced
  static kal_int32 Sum_AuxADC_Value(kal_uint16 *p_buf, kal_int32 count)
                   ^
hal\audio\src\v1\afes\afe_6261.c: 14 warnings, 0 errors
Compiling hal\audio\src\v1\afe_common.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/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)
          ^
"hal\audio\src\v1\afe_common.c", line 181: Warning:  #223-D: function "L1Audio_CheckFlag_MD2G" declared implicitly
     if(!L1Audio_CheckFlag_MD2G(afe.aud_id))
         ^
"hal\audio\src\v1\afe_common.c", line 182: Warning:  #223-D: function "L1Audio_SetFlag_MD2G" declared implicitly
        L1Audio_SetFlag_MD2G(afe.aud_id);
        ^
"hal\audio\src\v1\afe_common.c", line 188: Warning:  #223-D: function "L1Audio_CheckFlag_MD2G" declared implicitly
     if( (!afe.fgIdleOffTimerSet)&& (afe.md2glock_num == 1) && (L1Audio_CheckFlag_MD2G(afe.aud_id)) ){
                                                                ^
"hal\audio\src\v1\afe_common.c", line 192: Warning:  #223-D: function "L1Audio_ClearFlag_MD2G" declared implicitly
           L1Audio_ClearFlag_MD2G(afe.aud_id);
           ^
"hal\audio\src\v1\afe_common.c", line 471: Warning:  #223-D: function "DTMF_MCU_IsPlaying" declared implicitly
           if(!DTMF_MCU_IsPlaying())
               ^
"hal\audio\src\v1\afe_common.c", line 473: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
              PcmSink_SetGain(0);
              ^
"hal\audio\src\v1\afe_common.c", line 641: Warning:  #223-D: function "DTMF_MCU_IsPlaying" declared implicitly
           if(DTMF_MCU_IsPlaying()) //MCU DTMF
              ^
"hal\audio\src\v1\afe_common.c", line 644: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
                 PcmSink_SetGain(0);
                 ^
"hal\audio\src\v1\afe_common.c", line 660: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
                 PcmSink_SetGain(0);
                 ^
"hal\audio\src\v1\afe_common.c", line 699: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
              PcmSink_SetGain(dsp_gain);
              ^
"hal\audio\src\v1\afe_common.c", line 719: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
           PcmSink_SetGain(0);
           ^
"hal\audio\src\v1\afe_common.c", line 770: Warning:  #223-D: function "PcmSink_SetGain" declared implicitly
           PcmSink_SetGain(DG_DAF);
           ^
"hal\audio\src\v1\afe_common.c", line 800: Warning:  #223-D: function "PcmSink_GetGain" declared implicitly
        gain = PcmSink_GetGain();
               ^
"hal\audio\src\v1\afe_common.c", line 2253: Warning:  #223-D: function "nvram_external_read_data" declared implicitly
     nvram_external_read_data(NVRAM_EF_AUDIO_DC_CALIBRATION_LID, 1, &dc_temp, sizeof(kal_uint16));
     ^
hal\audio\src\v1\afe_common.c: 20 warnings, 0 errors
Compiling hal\audio\src\v1\am.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/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)
          ^
"hal\audio\src\v1\am.c", line 1712: Warning:  #188-D: enumerated type mixed with another type
          am_set_cod_band(IsWBLink(am.speech_mode));
                          ^
"hal\audio\src\v1\am.c", line 3855: Warning:  #223-D: function "BT_SCO_AudioPath_SetInfo" declared implicitly
     BT_SCO_AudioPath_SetInfo(uSampleRate, 2);
     ^
"hal\audio\src\v1\am.c", line 3858: Warning:  #223-D: function "BT_SCO_AudioPath_ON" declared implicitly
        BT_SCO_AudioPath_ON();
        ^
"hal\audio\src\v1\am.c", line 3877: Warning:  #223-D: function "PcmSink_UpdateGain" declared implicitly
     PcmSink_UpdateGain();
     ^
"hal\audio\src\v1\am.c", line 3919: Warning:  #223-D: function "AFE_TurnOnAudioClock" declared implicitly
        AFE_TurnOnAudioClock( (uint8)asp_fs&0xFF );
        ^
"hal\audio\src\v1\am.c", line 3920: Warning:  #223-D: function "AFE_SetSamplingRate" declared implicitly
        AFE_SetSamplingRate( (uint32)asp_fs );       
        ^
"hal\audio\src\v1\am.c", line 3786: Warning:  #177-D: variable "fForceOffVoice" was declared but never referenced
     kal_bool fForceOffVoice = KAL_FALSE;
              ^
"hal\audio\src\v1\am.c", line 3963: Warning:  #223-D: function "AFE_TurnOffWTDMA" declared implicitly
     AFE_TurnOffWTDMA();
     ^
"hal\audio\src\v1\am.c", line 4012: Warning:  #223-D: function "BT_SCO_Disable_All_APP" declared implicitly
     BT_SCO_Disable_All_APP();
     ^
"hal\audio\src\v1\am.c", line 4013: Warning:  #223-D: function "BT_SCO_AudioPath_SetInfo" declared implicitly
     BT_SCO_AudioPath_SetInfo(0, 0);
     ^
"hal\audio\src\v1\am.c", line 4078: Warning:  #223-D: function "PcmSink_FreeSoundBuffer" declared implicitly
     PcmSink_FreeSoundBuffer();
     ^
"hal\audio\src\v1\am.c", line 4555: Warning:  #188-D: enumerated type mixed with another type
     return (L1SP_GetSpeechMode() == SPH_MODE_BT_CORDLESS);
            ^
"hal\audio\src\v1\am.c", line 4612: Warning:  #188-D: enumerated type mixed with another type
      Pseudo_Sal_PcmBand_Config_t band_t = p_config->bandInfo;
                                           ^
"hal\audio\src\v1\am.c", line 5902: Warning:  #177-D: variable "ptr" was declared but never referenced
      volatile uint16 *ptr = 0;
                       ^
"hal\audio\src\v1\am.c", line 6085: Warning:  #188-D: enumerated type mixed with another type
              ret = ((*DSP_SPH_PNW_CTRL_DL & 0xf) == sta);
                  ^
"hal\audio\src\v1\am.c", line 6089: Warning:  #188-D: enumerated type mixed with another type
              ret = ((*DSP_SPH_PNW_CTRL_UL & 0xf) == sta);
                  ^
"hal\audio\src\v1\am.c", line 6096: Warning:  #188-D: enumerated type mixed with another type
              ret = ((*DSP_SPH_DACA_CTRL >> 4 & 0xf) == sta);
                  ^
"hal\audio\src\v1\am.c", line 6100: Warning:  #188-D: enumerated type mixed with another type
              ret = ((*DSP_SPH_DACA_CTRL      & 0xf) == sta);
                  ^
"hal\audio\src\v1\am.c", line 6206: Warning:  #188-D: enumerated type mixed with another type
      Pseudo_SALI_Set_Sph_Nml_Mod(on);
                                  ^
"hal\audio\src\v1\am.c", line 6221: Warning:  #188-D: enumerated type mixed with another type
  	Pseudo_SALI_3G_SetDtx(dtx);
  	                      ^
"hal\audio\src\v1\am.c", line 2739: Warning:  #177-D: function "AM_DSP_Melody" was declared but never referenced
  static void AM_DSP_Melody( uint32 data )
              ^
"hal\audio\src\v1\am.c", line 5416: Warning:  #177-D: function "AM_DSP_VBI_END" was declared but never referenced
  static void AM_DSP_VBI_END()
              ^
"hal\audio\src\v1\am.c", line 5486: Warning:  #550-D: variable "pseudo_sal_impl" was set but never used
  } pseudo_sal_impl;
    ^
"hal\audio\src\v1\am.c", line 4519: Warning: C3017W: aud_id may be used before being set
    kal_uint16 aud_id;
               ^
hal\audio\src\v1\am.c: 30 warnings, 0 errors
Compiling hal\audio\src\v1\amr.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/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)
          ^
hal\audio\src\v1\amr.c: 6 warnings, 0 errors
Compiling hal\audio\src\v1\cmpdrv\amr_comp_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)
             ^
"hal\audio\src\v1\cmpdrv\amr_comp_drv.c", line 222: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
"hal\audio\src\v1\cmpdrv\amr_comp_drv.c", line 298: Warning:  #223-D: function "Media_A2V_NOTIFY_MEDIA_END" declared implicitly
              Media_A2V_NOTIFY_MEDIA_END(hdl->Stop, hdl);
              ^
hal\audio\src\v1\cmpdrv\amr_comp_drv.c: 6 warnings, 0 errors
Compiling hal\audio\src\v1\comp\amr_seek.c ... 
Compiling hal\audio\src\v1\amr_table.c ... 
Compiling hal\audio\src\common\src\apm_comp.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/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)
          ^
"hal\audio\src\common\src\apm_comp.c", line 1695: Warning:  #223-D: function "mhdlUnHookPcmRut" declared implicitly
     mhdlUnHookPcmRut(); 
     ^
"hal\audio\src\common\src\apm_comp.c", line 1833: Warning:  #223-D: function "mhdlHookPcmRut" declared implicitly
           mhdlHookPcmRut(); 
           ^
"hal\audio\src\common\src\apm_comp.c", line 1835: Warning:  #223-D: function "AudioPP_IsDisableInVideo" declared implicitly
        else if(APM.BesSound_disable || (APM.BesSound_disable_in_Video && AudioPP_IsDisableInVideo(taskID)))
                                                                          ^
"hal\audio\src\common\src\apm_comp.c", line 1840: Warning:  #223-D: function "mhdlHookPcmRut" declared implicitly
           mhdlHookPcmRut();
           ^
"hal\audio\src\common\src\apm_comp.c", line 1858: Warning:  #223-D: function "AudioPP_IsDisableInVideo" declared implicitly
           if(APM.BesSound_disable_in_Video && AudioPP_IsDisableInVideo(taskID))
                                               ^
"hal\audio\src\common\src\apm_comp.c", line 1931: Warning:  #223-D: function "Is_PutPcmrutOn" declared implicitly
     	  if ( Is_PutPcmrutOn() && !Media_IsAlwaysRoute() )
     	       ^
"hal\audio\src\common\src\apm_comp.c", line 1932: Warning:  #223-D: function "mhdlUnHookPcmRut" declared implicitly
     	      mhdlUnHookPcmRut();
     	      ^
"hal\audio\src\common\src\apm_comp.c", line 2042: Warning:  #177-D: variable "ihdl" was declared but never referenced
     AudComHdlInt *ihdl = (AudComHdlInt *)hdl;
                   ^
"hal\audio\src\common\src\apm_comp.c", line 2420: Warning:  #223-D: function "AudioPP_IsDisableInVideo" declared implicitly
           else if(!AudioPP_IsDisableInVideo((APM_TaskID)taskID))
                    ^
"hal\audio\src\common\src\apm_comp.c", line 2447: Warning:  #223-D: function "AudioPP_IsDisableInVideo" declared implicitly
           if( AudioPP_IsDisableInVideo((APM_TaskID)taskID) )
               ^
"hal\audio\src\common\src\apm_comp.c", line 2480: Warning:  #223-D: function "mhdlHookPcmRut" declared implicitly
     	  mhdlHookPcmRut();
     	  ^
hal\audio\src\common\src\apm_comp.c: 17 warnings, 0 errors
Compiling hal\audio\src\v1\comp\ast.c ... 
Compiling hal\audio\src\v1\audioCF.c ... 
Compiling hal\audio\src\v1\audioPP.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))
             ^
"hal\audio\src\v1\audioPP.c", line 888: Warning:  #111-D: statement is unreachable
     return 6;
     ^
"hal\audio\src\v1\audioPP.c", line 927: Warning:  #223-D: function "Media_AllowPostProcessingOnMidi" declared implicitly
     Media_AllowPostProcessingOnMidi(BesLoudness_Ringtone_Activate);
     ^
"hal\audio\src\v1\audioPP.c", line 934: Warning:  #223-D: function "Media_AllowPostProcessingOnMidi" declared implicitly
     Media_AllowPostProcessingOnMidi(BesLoudness_Ringtone_Activate);
     ^
hal\audio\src\v1\audioPP.c: 8 warnings, 0 errors
Compiling interface\hal\audio\audio_create.c ... 
"interface\hal\audio\audio_create.c", line 262: Warning:  #223-D: function "AFE_DC_Calibration_In_Initial" declared implicitly
     AFE_DC_Calibration_In_Initial();
     ^
interface\hal\audio\audio_create.c: 1 warning, 0 errors
Compiling hal\audio\src\v1\audio_idma.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)
             ^
hal\audio\src\v1\audio_idma.c: 4 warnings, 0 errors
Compiling hal\audio\src\v1\audio_service.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/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)
          ^
"hal\audio\src\v1\audio_service.c", line 875: Warning:  #550-D: variable "temp" was set but never used
        kal_uint16 temp;
                   ^
"hal\audio\src\v1\audio_service.c", line 958: Warning:  #550-D: variable "dump_param" was set but never used
           ASSERT_DUMP_PARAM_T dump_param;
                               ^
"hal\audio\src\v1\audio_service.c", line 1357: Warning:  #223-D: function "AFE_Init" declared implicitly
     AFE_Init();
     ^
"hal\audio\src\v1\audio_service.c", line 1360: Warning:  #223-D: function "AVsync_Init" declared implicitly
     AVsync_Init();
     ^
"hal\audio\src\v1\audio_service.c", line 1615: Warning:  #550-D: variable "audio_get_meta_file" was set but never used
  static fp_get_meta_data_file       audio_get_meta_file = NULL;
                                     ^
"hal\audio\src\v1\audio_service.c", line 1616: Warning:  #550-D: variable "audio_get_meta_array" was set but never used
  static fp_get_meta_data_array      audio_get_meta_array = NULL;
                                     ^
hal\audio\src\v1\audio_service.c: 12 warnings, 0 errors
Compiling hal\audio\src\v1\comp\audioeq.c ... 
Compiling hal\audio\src\v1\audlp2_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)
             ^
hal\audio\src\v1\audlp2_drv.c: 4 warnings, 0 errors
Compiling hal\audio\src\v1\avb_drv.c ... 
Compiling hal\audio\src\v1\bt_sco_app.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)
             ^
"hal\audio\src\v1\bt_sco_app.c", line 170: Warning:  #223-D: function "BT_SCO_Open" declared implicitly
     BT_SCO_Open(BT_SCO_MODE_CVSD, BT_SCO_LINK_BOTH);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 171: Warning:  #223-D: function "BT_SCO_SetCallback_TX" declared implicitly
     BT_SCO_SetCallback_TX(NULL, (void *)pSpStruct, 8000, 1, SPEECH_TX_FILTER);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 172: Warning:  #223-D: function "BT_SCO_SetCallback_RX" declared implicitly
     BT_SCO_SetCallback_RX(NULL, (void *)pSpStruct, 8000, 1, SPEECH_RX_FILTER, SPEECH_RX_PLC);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 173: Warning:  #223-D: function "BT_SCO_Start" declared implicitly
     BT_SCO_Start();
     ^
"hal\audio\src\v1\bt_sco_app.c", line 179: Warning:  #223-D: function "BT_SCO_GetUserData" declared implicitly
     pSpStruct = (BT_SCO_NB_SPEECH*)BT_SCO_GetUserData(BT_SCO_LINK_TX_ONLY);
                                    ^
"hal\audio\src\v1\bt_sco_app.c", line 180: Warning:  #223-D: function "BT_SCO_Stop" declared implicitly
     BT_SCO_Stop();
     ^
"hal\audio\src\v1\bt_sco_app.c", line 182: Warning:  #223-D: function "BT_SCO_Close" declared implicitly
     BT_SCO_Close();
     ^
"hal\audio\src\v1\bt_sco_app.c", line 242: Warning:  #223-D: function "BT_SCO_GetUserData" declared implicitly
     pSpStruct = (BT_SCO_NB_SPEECH*)BT_SCO_GetUserData(BT_SCO_LINK_TX_ONLY);
                                    ^
"hal\audio\src\v1\bt_sco_app.c", line 243: Warning:  #223-D: function "BT_SCO_GetWriteBuffer_TX" declared implicitly
     BT_SCO_GetWriteBuffer_TX(&pDst, &uOutByte);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 244: Warning:  #223-D: function "BT_SCO_GetFreeSpace_TX" declared implicitly
     uFreeSpace = BT_SCO_GetFreeSpace_TX();
                  ^
"hal\audio\src\v1\bt_sco_app.c", line 270: Warning:  #223-D: function "DACA_GetFromSD" declared implicitly
        DACA_GetFromSD((kal_uint16*)pSrc);
        ^
"hal\audio\src\v1\bt_sco_app.c", line 275: Warning:  #223-D: function "BT_SCO_WriteDataDone_TX" declared implicitly
        BT_SCO_WriteDataDone_TX(NB_SPEECH_FRAME_SIZE);
        ^
"hal\audio\src\v1\bt_sco_app.c", line 280: Warning:  #223-D: function "BT_SCO_WriteDataDone_TX" declared implicitly
        BT_SCO_WriteDataDone_TX(uOutByte);
        ^
"hal\audio\src\v1\bt_sco_app.c", line 296: Warning:  #223-D: function "BT_SCO_GetUserData" declared implicitly
     pSpStruct = (BT_SCO_NB_SPEECH*)BT_SCO_GetUserData(BT_SCO_LINK_RX_ONLY);
                                    ^
"hal\audio\src\v1\bt_sco_app.c", line 297: Warning:  #223-D: function "BT_SCO_GetReadBuffer_RX" declared implicitly
     BT_SCO_GetReadBuffer_RX(&pSrc, &uInByte);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 298: Warning:  #223-D: function "BT_SCO_GetDataCount_RX" declared implicitly
     uDataCount = BT_SCO_GetDataCount_RX();
                  ^
"hal\audio\src\v1\bt_sco_app.c", line 312: Warning:  #223-D: function "BT_SCO_ReadDataDone_RX" declared implicitly
        BT_SCO_ReadDataDone_RX(uInByte);
        ^
"hal\audio\src\v1\bt_sco_app.c", line 331: Warning:  #223-D: function "DACA_PutToSE" declared implicitly
        DACA_PutToSE((const kal_uint16*)pSrc);
        ^
"hal\audio\src\v1\bt_sco_app.c", line 336: Warning:  #223-D: function "BT_SCO_ReadDataDone_RX" declared implicitly
        BT_SCO_ReadDataDone_RX(NB_SPEECH_FRAME_SIZE);
        ^
"hal\audio\src\v1\bt_sco_app.c", line 509: Warning:  #223-D: function "DACA_Start" declared implicitly
         DACA_Start(BT_SCO_Speech_TX_HISR, BT_SCO_Speech_RX_HISR, BT_SCO_APP.uDACAType);
         ^
"hal\audio\src\v1\bt_sco_app.c", line 519: Warning:  #223-D: function "DACA_Stop" declared implicitly
         DACA_Stop(BT_SCO_APP.uDACAType);
         ^
"hal\audio\src\v1\bt_sco_app.c", line 581: Warning:  #223-D: function "BT_SCO_GetWriteBuffer_TX" declared implicitly
        BT_SCO_GetWriteBuffer_TX(&pDst, &uOutByte);  
        ^
"hal\audio\src\v1\bt_sco_app.c", line 588: Warning:  #223-D: function "BT_SCO_WriteDataDone_TX" declared implicitly
        BT_SCO_WriteDataDone_TX(uOutWord<<1);  
        ^
"hal\audio\src\v1\bt_sco_app.c", line 580: Warning:  #177-D: variable "pBuf" was declared but never referenced
        kal_int16 *pBuf;
                   ^
"hal\audio\src\v1\bt_sco_app.c", line 571: Warning:  #177-D: variable "j" was declared but never referenced
     kal_uint32 uCopyWord=0, uOutByte=0, i, j, uOrigSrcWord, uChannelNumber, uOutWord;
                                            ^
"hal\audio\src\v1\bt_sco_app.c", line 571: Warning:  #550-D: variable "uOrigSrcWord" was set but never used
     kal_uint32 uCopyWord=0, uOutByte=0, i, j, uOrigSrcWord, uChannelNumber, uOutWord;
                                               ^
"hal\audio\src\v1\bt_sco_app.c", line 571: Warning:  #177-D: variable "uChannelNumber" was declared but never referenced
     kal_uint32 uCopyWord=0, uOutByte=0, i, j, uOrigSrcWord, uChannelNumber, uOutWord;
                                                             ^
"hal\audio\src\v1\bt_sco_app.c", line 608: Warning:  #223-D: function "BT_SCO_GetWriteBuffer_TX" declared implicitly
        BT_SCO_GetWriteBuffer_TX(&pDst, &uOutByte);  
        ^
"hal\audio\src\v1\bt_sco_app.c", line 624: Warning:  #223-D: function "BT_SCO_WriteDataDone_TX" declared implicitly
           BT_SCO_WriteDataDone_TX(uOutWord<<2);  
           ^
"hal\audio\src\v1\bt_sco_app.c", line 635: Warning:  #223-D: function "BT_SCO_WriteDataDone_TX" declared implicitly
           BT_SCO_WriteDataDone_TX(uOutWord<<1);  
           ^
"hal\audio\src\v1\bt_sco_app.c", line 598: Warning:  #550-D: variable "uOrigSrcWord" was set but never used
     kal_uint32 uCopyWord=0, uOutByte=0, i, j, uOrigSrcWord=0, uOutWord=0;
                                               ^
"hal\audio\src\v1\bt_sco_app.c", line 646: Warning:  #223-D: function "PcmSink_StartBT" declared implicitly
     PcmSink_StartBT(PCMSINK_BT_SCO);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 664: Warning:  #223-D: function "mhdlHookPcmRut" declared implicitly
     mhdlHookPcmRut();
     ^
"hal\audio\src\v1\bt_sco_app.c", line 665: Warning:  #223-D: function "BT_SCO_Open" declared implicitly
     BT_SCO_Open(BT_SCO_MODE_CVSD, BT_SCO_LINK_TX_ONLY);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 666: Warning:  #223-D: function "BT_SCO_SetCallback_TX" declared implicitly
     BT_SCO_SetCallback_TX(NULL, NULL, BT_SCO_APP.uSampleRate, BT_SCO_APP.uChannelNumber, AUDIO_TX_FILTER);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 667: Warning:  #223-D: function "BT_SCO_Start" declared implicitly
     BT_SCO_Start();
     ^
"hal\audio\src\v1\bt_sco_app.c", line 675: Warning:  #223-D: function "PcmSink_StopBT" declared implicitly
     PcmSink_StopBT(PCMSINK_BT_SCO);
     ^
"hal\audio\src\v1\bt_sco_app.c", line 677: Warning:  #223-D: function "BT_SCO_Stop" declared implicitly
     BT_SCO_Stop();
     ^
"hal\audio\src\v1\bt_sco_app.c", line 678: Warning:  #223-D: function "BT_SCO_Close" declared implicitly
     BT_SCO_Close();
     ^
hal\audio\src\v1\bt_sco_app.c: 43 warnings, 0 errors
Compiling hal\audio\src\v1\bt_sco_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)
             ^
"hal\audio\src\v1\bt_sco_drv.c", line 283: Warning:  #188-D: enumerated type mixed with another type
           btsco.pRX->PacketValid[btsco.pRX->iPacket_w & SCO_RX_PACKET_MASK] = 1 ; //packet valid
                                                                             ^
"hal\audio\src\v1\bt_sco_drv.c", line 287: Warning:  #188-D: enumerated type mixed with another type
           btsco.pRX->PacketValid[btsco.pRX->iPacket_w & SCO_RX_PACKET_MASK] = 0 ; //packet lost
                                                                             ^
"hal\audio\src\v1\bt_sco_drv.c", line 339: Warning:  #61-D: integer operation result is out of range
        *BT_SCO_HW_REG_CONTROL &= ~BT_CVSD_CLEAR;
                                   ^
"hal\audio\src\v1\bt_sco_drv.c", line 347: Warning:  #61-D: integer operation result is out of range
        *BT_SCO_HW_REG_CONTROL &= ~BT_CVSD_CLEAR;
                                   ^
"hal\audio\src\v1\bt_sco_drv.c", line 369: Warning:  #188-D: enumerated type mixed with another type
           btsco_ReadFromBT(uPacketType, uPacketLength, uPacketNumber, uBufferCount_RX, uControl);
                            ^
"hal\audio\src\v1\bt_sco_drv.c", line 396: Warning:  #188-D: enumerated type mixed with another type
  	     btsco_WriteToBT(uPacketType, uPacketLength, uPacketNumber, uBufferCount_TX, KAL_TRUE);
  	                     ^
"hal\audio\src\v1\bt_sco_drv.c", line 400: Warning:  #188-D: enumerated type mixed with another type
  	     btsco_WriteToBT(uPacketType, uPacketLength, uPacketNumber, uBufferCount_TX, KAL_FALSE);
  	                     ^
"hal\audio\src\v1\bt_sco_drv.c", line 403: Warning:  #61-D: integer operation result is out of range
     *BT_SCO_HW_REG_CONTROL &= ~BT_CVSD_CLEAR;
                                ^
"hal\audio\src\v1\bt_sco_drv.c", line 444: Warning:  #223-D: function "BLI_GetMemSize" declared implicitly
              BLI_GetMemSize(btsco.pTX->uSampleRate,btsco.pTX->uChannelNumber,64000,1,&uSize);
              ^
"hal\audio\src\v1\bt_sco_drv.c", line 452: Warning:  #223-D: function "BLI_GetMemSize" declared implicitly
           BLI_GetMemSize(64000,1,8000,1,&uSize);
           ^
"hal\audio\src\v1\bt_sco_drv.c", line 482: Warning:  #223-D: function "BLI_Close" declared implicitly
           BLI_Close(btsco.pTX->pSRCHandle, audio_free_ext_mem_simplified);
           ^
"hal\audio\src\v1\bt_sco_drv.c", line 491: Warning:  #223-D: function "BLI_Close" declared implicitly
           BLI_Close(btsco.pRX->pSRCHandle_1, audio_free_ext_mem_simplified);
           ^
"hal\audio\src\v1\bt_sco_drv.c", line 495: Warning:  #223-D: function "BLI_Close" declared implicitly
           BLI_Close(btsco.pRX->pSRCHandle_2, audio_free_ext_mem_simplified);
           ^
"hal\audio\src\v1\bt_sco_drv.c", line 507: Warning:  #167-D: argument of type "kal_int8 *" is incompatible with parameter of type "char *"
           btsco.pTX->pEncHandle = CVSD_ENC_Init((kal_int8*)pBuf);
                                                 ^
"hal\audio\src\v1\bt_sco_drv.c", line 510: Warning:  #167-D: argument of type "kal_int8 *" is incompatible with parameter of type "char *"
           btsco.pRX->pDecHandle = CVSD_DEC_Init((kal_int8*)pBuf);
                                                 ^
"hal\audio\src\v1\bt_sco_drv.c", line 513: Warning:  #167-D: argument of type "kal_int8 *" is incompatible with parameter of type "char *"
           btsco.pTX->pHPFHandle = Audio_IIRHPF_Init((kal_int8*)pBuf, btsco_FilterCoeff_8K, 1);
                                                     ^
"hal\audio\src\v1\bt_sco_drv.c", line 516: Warning:  #167-D: argument of type "kal_int8 *" is incompatible with parameter of type "char *"
           btsco.pRX->pHPFHandle = Audio_IIRHPF_Init((kal_int8*)pBuf, btsco_FilterCoeff_64K, 1);
                                                     ^
"hal\audio\src\v1\bt_sco_drv.c", line 541: Warning:  #223-D: function "BLI_Open" declared implicitly
              btsco.pTX->pSRCHandle = (void*)BLI_Open(btsco.pTX->uSampleRate,btsco.pTX->uChannelNumber,64000,1,(kal_int8*)pBuf, audio_alloc_ext_mem_cacheable_simplified);
                                             ^
"hal\audio\src\v1\bt_sco_drv.c", line 547: Warning:  #223-D: function "BLI_Open" declared implicitly
           btsco.pRX->pSRCHandle_1 = (void*)BLI_Open(64000,1,8000,1,(kal_int8*)pBuf, audio_alloc_ext_mem_cacheable_simplified);
                                            ^
"hal\audio\src\v1\bt_sco_drv.c", line 593: Warning:  #188-D: enumerated type mixed with another type
        btsco.pTX->fEnableFilter  = uEnableFilter;
                                  ^
"hal\audio\src\v1\bt_sco_drv.c", line 602: Warning:  #188-D: enumerated type mixed with another type
        btsco.pRX->fEnableFilter  = uEnableFilter;
                                  ^
"hal\audio\src\v1\bt_sco_drv.c", line 628: Warning:  #940-D: missing return statement at end of non-void function "btsco_GetFreeSpace_RX"
  }
  ^
"hal\audio\src\v1\bt_sco_drv.c", line 682: Warning:  #223-D: function "BLI_Convert" declared implicitly
                 uConsumeByte = BLI_Convert(btsco.pTX->pSRCHandle, (kal_int16 *)pInBuf, &uInByte, (kal_int16 *)(&btsco.pTX->PcmBuf_64k[btsco.pTX->uPcmBuf_w]), &uOutByte);
                                ^
"hal\audio\src\v1\bt_sco_drv.c", line 708: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "char *"
                 CVSD_ENC_Process(btsco.pTX->pEncHandle, (kal_int16*)btsco.pTX->PcmBuf_64k, &iInSample, &btsco.pTX->PacketBuf[btsco.pTX->iPacket_w & SCO_TX_PACKET_MASK][0], &iOutByte, iGain);
                                                                                                        ^
"hal\audio\src\v1\bt_sco_drv.c", line 737: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "char *"
              CVSD_DEC_Process(btsco.pRX->pDecHandle, &btsco.pRX->PacketBuf[btsco.pRX->iPacket_r & SCO_RX_PACKET_MASK][0], &iInByte, (kal_int16*)btsco.pRX->PcmBuf_64k, &iOutSample);
                                                      ^
"hal\audio\src\v1\bt_sco_drv.c", line 755: Warning:  #223-D: function "BLI_Convert" declared implicitly
                 uConsumeByte = BLI_Convert(btsco.pRX->pSRCHandle_1, (kal_int16 *)btsco.pRX->PcmBuf_64k, &uInByte, (kal_int16 *)btsco.pRX->PcmBuf_8k, &uOutByte);  
                                ^
"hal\audio\src\v1\bt_sco_drv.c", line 731: Warning:  #177-D: variable "pDst" was declared but never referenced
              kal_int16 *pDst, *pSrc;
                         ^
"hal\audio\src\v1\bt_sco_drv.c", line 731: Warning:  #177-D: variable "pSrc" was declared but never referenced
              kal_int16 *pDst, *pSrc;
                                ^
"hal\audio\src\v1\bt_sco_drv.c", line 732: Warning:  #550-D: variable "fPacketValid" was set but never used
              kal_bool fPacketValid = KAL_FALSE;
                       ^
"hal\audio\src\v1\bt_sco_drv.c", line 733: Warning:  #177-D: variable "I" was declared but never referenced
              kal_int32 iOutSample=0, iInByte=0, I;
                                                 ^
"hal\audio\src\v1\bt_sco_drv.c", line 804: Warning:  #223-D: function "BLI_Convert" declared implicitly
              uConsumeByte = BLI_Convert(btsco.pRX->pSRCHandle_2, (short *)(btsco.pRX->PcmBuf_8k + btsco.pRX->uPcmBuf_r), &uInByte, (short *)pOutBuf, &uOutByte);  
                             ^
"hal\audio\src\v1\bt_sco_drv.c", line 788: Warning:  #550-D: variable "uTotalSpace" was set but never used
           kal_uint32 uInByte=0, uOutByte=0, uConsumeByte=0, uTotalSpace=0;
                                                             ^
"hal\audio\src\v1\bt_sco_drv.c", line 872: Warning:  #940-D: missing return statement at end of non-void function "BT_SCO_GetDataCount_RX"
  }
  ^
"hal\audio\src\v1\bt_sco_drv.c", line 890: Warning:  #940-D: missing return statement at end of non-void function "BT_SCO_GetFreeSpace_TX"
  }
  ^
"hal\audio\src\v1\bt_sco_drv.c", line 944: Warning:  #188-D: enumerated type mixed with another type
        btsco.pRX->fEnablePLC = 1;
                              ^
"hal\audio\src\v1\bt_sco_drv.c", line 1110: Warning:  #167-D: argument of type "void (*)(void *)" is incompatible with parameter of type "void (*)(void)"
     EINT_Registration(BT_EINT, KAL_FALSE, KAL_FALSE, btsco_hisr, KAL_TRUE ); //auto unmask
                                                      ^
hal\audio\src\v1\bt_sco_drv.c: 40 warnings, 0 errors
Compiling hal\audio\src\v1\cmpdrv\daf_comp_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/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)
          ^
"hal\audio\src\v1\cmpdrv\daf_comp_drv.c", line 471: Warning:  #223-D: function "Media_A2V_NOTIFY_MEDIA_END" declared implicitly
           Media_A2V_NOTIFY_MEDIA_END(GenCompStop, hdl);
           ^
"hal\audio\src\v1\cmpdrv\daf_comp_drv.c", line 479: Warning:  #177-D: variable "I" was declared but never referenced
           kal_uint32 I;
                      ^
"hal\audio\src\v1\cmpdrv\daf_comp_drv.c", line 527: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
"hal\audio\src\v1\cmpdrv\daf_comp_drv.c", line 613: Warning:  #513-D: a value of type "void (*)(MHdl *, kal_uint8 *, void *)" cannot be assigned to an entity of type "void (*)(MHdl *, kal_uint8 *, kal_uint32)"
     hdl->SetCacheTbl      = DafAstSetCacheTbl;
                           ^
"hal\audio\src\v1\cmpdrv\daf_comp_drv.c", line 621: Warning:  #177-D: variable "parseInfo" was declared but never referenced
        AcuFileParam parseInfo;
                     ^
hal\audio\src\v1\cmpdrv\daf_comp_drv.c: 11 warnings, 0 errors
Compiling hal\audio\src\v1\comp\daf_seek.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)
             ^
"hal\audio\src\v1\comp\daf_seek.c", line 939: Warning:  #167-D: argument of type "AST_Status (*)(void *, kal_uint32 *)" is incompatible with parameter of type "AST_Status (*)(void *, unsigned int *, unsigned int *)"
        AST_InitTable(ihdl->AudioSeekTbl,DAF_AST_MIN_ENTRY_SIZE,usize,dafASTParseFrame,dafASTParseFileHeader);
                                                                                       ^
hal\audio\src\v1\comp\daf_seek.c: 5 warnings, 0 errors
Compiling hal\audio\src\v1\dpmgr.c ... 
"hal\audio\src\v1\dpmgr.c", line 447: Warning:  #68-D: integer conversion resulted in a change of sign
     return DYNAMIC_CODE_COMPRESS_NONE;
            ^
hal\audio\src\v1\dpmgr.c: 1 warning, 0 errors
Compiling hal\audio\src\v1\dtmf_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)
             ^
"hal\audio\src\v1\dtmf_drv.c", line 213: Warning:  #69-D: integer conversion resulted in truncation
        uDuration = DTMF_MAX_DURATION;
                    ^
"hal\audio\src\v1\dtmf_drv.c", line 426: Warning:  #223-D: function "PcmSink_IsAudioRuning" declared implicitly
     kal_bool fIsAudioRunning = PcmSink_IsAudioRuning() || PcmSink_IsMixerRuning();
                                ^
"hal\audio\src\v1\dtmf_drv.c", line 426: Warning:  #223-D: function "PcmSink_IsMixerRuning" declared implicitly
     kal_bool fIsAudioRunning = PcmSink_IsAudioRuning() || PcmSink_IsMixerRuning();
                                                           ^
"hal\audio\src\v1\dtmf_drv.c", line 426: Warning:  #188-D: enumerated type mixed with another type
     kal_bool fIsAudioRunning = PcmSink_IsAudioRuning() || PcmSink_IsMixerRuning();
                                ^
"hal\audio\src\v1\dtmf_drv.c", line 441: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
           PcmSink_Mute(KAL_TRUE, PCMSINK_MUTE_TONE);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 446: Warning:  #223-D: function "PcmSink_StopSound" declared implicitly
           PcmSink_StopSound(PCM_FUNC_KEYTONE);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 450: Warning:  #223-D: function "PcmSink_StopSound" declared implicitly
           PcmSink_StopSound(PCM_FUNC_TONE);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 461: Warning:  #223-D: function "PcmSink_DepopUnMute" declared implicitly
        PcmSink_DepopUnMute( NULL );
        ^
"hal\audio\src\v1\dtmf_drv.c", line 462: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
        PcmSink_Mute(KAL_FALSE, PCMSINK_MUTE_TONE);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 476: Warning:  #223-D: function "rbGetWriteBuffer" declared implicitly
     rbGetWriteBuffer(&DTMF_SW.RingBuffer, &pBuf, &uBufLen);
     ^
"hal\audio\src\v1\dtmf_drv.c", line 493: Warning:  #140-D: too many arguments in function call
        dtmf_mcu_ActivatNewKey(uPreIndex1, uPreIndex2);
                               ^
"hal\audio\src\v1\dtmf_drv.c", line 499: Warning:  #223-D: function "rbGetDataCount" declared implicitly
        uCurrentData = rbGetDataCount(&DTMF_SW.RingBuffer);
                       ^
"hal\audio\src\v1\dtmf_drv.c", line 504: Warning:  #223-D: function "rbWriteDataDone" declared implicitly
           rbWriteDataDone(&DTMF_SW.RingBuffer, DTMF_SW.uFrameByte);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 509: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
           PcmSink_Mute(KAL_TRUE, PCMSINK_MUTE_TONE);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 511: Warning:  #223-D: function "L1Audio_InProcCall" declared implicitly
           L1Audio_InProcCall(dtmf_mcu_Destroy, NULL, NULL);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 521: Warning:  #223-D: function "rbWriteDataDone" declared implicitly
        rbWriteDataDone(&DTMF_SW.RingBuffer, DTMF_SW.uFrameByte);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 544: Warning:  #188-D: enumerated type mixed with another type
     DTMF_SR uSr=0;
                 ^
"hal\audio\src\v1\dtmf_drv.c", line 628: Warning:  #223-D: function "rbReadDataDone" declared implicitly
        rbReadDataDone(&DTMF_SW.RingBuffer, uDataWord<<1);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 640: Warning:  #223-D: function "rbGetReadBuffer" declared implicitly
        rbGetReadBuffer(&DTMF_SW.RingBuffer, &pBuf_8b, &uDataByte);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 653: Warning:  #223-D: function "rbGetDataCount" declared implicitly
        uDataWord = (rbGetDataCount(&DTMF_SW.RingBuffer))>>1;
                     ^
"hal\audio\src\v1\dtmf_drv.c", line 681: Warning:  #223-D: function "PcmSink_IsSoundRuning" declared implicitly
           if(DTMF_SW.fEnding == KAL_TRUE || AM_IsAudioPlaybackOn() == -1 || !PcmSink_IsSoundRuning())
                                                                              ^
"hal\audio\src\v1\dtmf_drv.c", line 712: Warning:  #223-D: function "PcmSink_IsAudioRuning" declared implicitly
     kal_bool fIsAudioRunning = PcmSink_IsAudioRuning() || PcmSink_IsMixerRuning();
                                ^
"hal\audio\src\v1\dtmf_drv.c", line 712: Warning:  #223-D: function "PcmSink_IsMixerRuning" declared implicitly
     kal_bool fIsAudioRunning = PcmSink_IsAudioRuning() || PcmSink_IsMixerRuning();
                                                           ^
"hal\audio\src\v1\dtmf_drv.c", line 712: Warning:  #188-D: enumerated type mixed with another type
     kal_bool fIsAudioRunning = PcmSink_IsAudioRuning() || PcmSink_IsMixerRuning();
                                ^
"hal\audio\src\v1\dtmf_drv.c", line 722: Warning:  #223-D: function "PcmSink_GetCurrentPcmInfo" declared implicitly
        PcmSink_GetCurrentPcmInfo(&uSampleRate, &uChannelNumber);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 728: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
        PcmSink_Mute(KAL_TRUE, PCMSINK_MUTE_TONE);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 731: Warning:  #223-D: function "PcmSink_DepopMute" declared implicitly
           PcmSink_DepopMute(uMuteLength);
           ^
"hal\audio\src\v1\dtmf_drv.c", line 750: Warning:  #223-D: function "PcmSink_StartSound" declared implicitly
        PcmSink_StartSound(PCM_FUNC_KEYTONE, DTMF_SW.uSampleRate, 2);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 759: Warning:  #223-D: function "PcmSink_StartSound" declared implicitly
        PcmSink_StartSound(PCM_FUNC_TONE, DTMF_SW.uSampleRate, 2);
        ^
"hal\audio\src\v1\dtmf_drv.c", line 765: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
     PcmSink_Mute(KAL_FALSE, PCMSINK_MUTE_TONE);
     ^
hal\audio\src\v1\dtmf_drv.c: 34 warnings, 0 errors
Compiling hal\audio\src\v1\i2s_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/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)
          ^
"hal\audio\src\v1\i2s_drv.c", line 316: Warning:  #223-D: function "Media_SetBesLoudnessCustomCoeff_I2S" declared implicitly
     Media_SetBesLoudnessCustomCoeff_I2S( &Audio_Compensation_hsf_Coeffs_for_I2S[0][0] );
     ^
"hal\audio\src\v1\i2s_drv.c", line 359: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
"hal\audio\src\v1\i2s_drv.c", line 373: Warning:  #223-D: function "AudioPP_Loudness_Registry" declared implicitly
     AudioPP_Loudness_Registry();
     ^
"hal\audio\src\v1\i2s_drv.c", line 382: Warning:  #223-D: function "AUDLP_Mode" declared implicitly
        AUDLP_Mode(KAL_TRUE, 1);
        ^
"hal\audio\src\v1\i2s_drv.c", line 385: Warning:  #223-D: function "AUDLP_Check_LowPower_Status" declared implicitly
     if(AUDLP_Check_LowPower_Status())
        ^
"hal\audio\src\v1\i2s_drv.c", line 387: Warning:  #223-D: function "L1Audio_SetFlag_MD2G" declared implicitly
        L1Audio_SetFlag_MD2G( i2s.aud_id );
        ^
"hal\audio\src\v1\i2s_drv.c", line 389: Warning:  #223-D: function "AUDLP_Set_ClkSwitchMode" declared implicitly
        AUDLP_Set_ClkSwitchMode(KAL_TRUE);
        ^
"hal\audio\src\v1\i2s_drv.c", line 390: Warning:  #223-D: function "AUDLP_SW_Trigger_Event_Setting" declared implicitly
        AUDLP_SW_Trigger_Event_Setting(KAL_TRUE);
        ^
"hal\audio\src\v1\i2s_drv.c", line 391: Warning:  #223-D: function "AUDLP_SetClkSwitch_26M" declared implicitly
        AUDLP_SetClkSwitch_26M(KAL_TRUE);
        ^
"hal\audio\src\v1\i2s_drv.c", line 452: Warning:  #223-D: function "AFE_IsSpeakerMuted" declared implicitly
        if(!AFE_IsSpeakerMuted())
            ^
"hal\audio\src\v1\i2s_drv.c", line 466: Warning:  #223-D: function "PcmSink_DepopMute" declared implicitly
     PcmSink_DepopMute(400); //depop
     ^
"hal\audio\src\v1\i2s_drv.c", line 515: Warning:  #223-D: function "Is_PutPcmrutOn" declared implicitly
  if(Is_PutPcmrutOn())
     ^
"hal\audio\src\v1\i2s_drv.c", line 531: Warning:  #223-D: function "AudioPP_Loudness_Registry" declared implicitly
     AudioPP_Loudness_Registry();
     ^
"hal\audio\src\v1\i2s_drv.c", line 539: Warning:  #223-D: function "AUDLP_Check_LowPower_Status" declared implicitly
     if(AUDLP_Check_LowPower_Status())
        ^
"hal\audio\src\v1\i2s_drv.c", line 542: Warning:  #223-D: function "AUDLP_SetClkSwitch_26M" declared implicitly
        AUDLP_SetClkSwitch_26M(KAL_FALSE);
        ^
"hal\audio\src\v1\i2s_drv.c", line 543: Warning:  #223-D: function "AUDLP_SW_Trigger_Event_Setting" declared implicitly
        AUDLP_SW_Trigger_Event_Setting(KAL_FALSE);
        ^
"hal\audio\src\v1\i2s_drv.c", line 544: Warning:  #223-D: function "AUDLP_Set_ClkSwitchMode" declared implicitly
        AUDLP_Set_ClkSwitchMode(KAL_FALSE);
        ^
"hal\audio\src\v1\i2s_drv.c", line 546: Warning:  #223-D: function "AUDLP_Mode" declared implicitly
        AUDLP_Mode(KAL_FALSE, 1);
        ^
"hal\audio\src\v1\i2s_drv.c", line 547: Warning:  #223-D: function "L1Audio_ClearFlag_MD2G" declared implicitly
        L1Audio_ClearFlag_MD2G( i2s.aud_id );
        ^
"hal\audio\src\v1\i2s_drv.c", line 659: Warning:  #177-D: variable "bliMemSize" was declared but never referenced
     kal_uint32 bliMemSize = 0;
                ^
"hal\audio\src\v1\i2s_drv.c", line 760: Warning:  #223-D: function "Media_SetRecordedTime" declared implicitly
     Media_SetRecordedTime( i2s.uEncodeSamples*1000/i2s.uEncodeSampleRate );
     ^
"hal\audio\src\v1\i2s_drv.c", line 856: Warning:  #223-D: function "mediaSetWaitingFlag" declared implicitly
     mediaSetWaitingFlag(KAL_FALSE);
     ^
hal\audio\src\v1\i2s_drv.c: 28 warnings, 0 errors
Compiling hal\audio\src\v1\comp\jamr.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/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)
          ^
hal\audio\src\v1\comp\jamr.c: 6 warnings, 0 errors
Compiling hal\audio\src\common\src\melody\jimy_comp.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))
             ^
hal\audio\src\common\src\melody\jimy_comp.c: 5 warnings, 0 errors
Compiling hal\audio\src\common\src\melody\jsmf_comp.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))
             ^
"hal\audio\src\common\src\melody\jsmf_comp.c", line 541: Warning:  #940-D: missing return statement at end of non-void function "JMidi_SendLongMsg"
  }
  ^
"hal\audio\src\common\src\melody\jsmf_comp.c", line 548: Warning:  #940-D: missing return statement at end of non-void function "JMidi_SendShortMsg"
  }
  ^
"hal\audio\src\common\src\melody\jsmf_comp.c", line 602: Warning:  #188-D: enumerated type mixed with another type
     return 0;
            ^
hal\audio\src\common\src\melody\jsmf_comp.c: 8 warnings, 0 errors
Compiling hal\audio\src\common\src\melody\jtone_comp.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)
             ^
hal\audio\src\common\src\melody\jtone_comp.c: 4 warnings, 0 errors
Compiling hal\audio\src\common\src\melody\jwav_comp.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)
             ^
"hal\audio\src\common\src\melody\jwav_comp.c", line 194: Warning:  #167-D: argument of type "Media_Event (*)(MHdl *, Media_Event)" is incompatible with parameter of type "in_proc_call_type"
           L1Audio_InProcCall(handle->Process, (kal_uint32)handle, (void*)event );
                              ^
"hal\audio\src\common\src\melody\jwav_comp.c", line 202: Warning:  #167-D: argument of type "Media_Event (*)(MHdl *, Media_Event)" is incompatible with parameter of type "in_proc_call_type"
           L1Audio_InProcCall(handle->Process, (kal_uint32)handle, (void*)event );
                              ^
"hal\audio\src\common\src\melody\jwav_comp.c", line 215: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound(); 
     ^
hal\audio\src\common\src\melody\jwav_comp.c: 7 warnings, 0 errors
Compiling hal\audio\src\v1\comp\kt_Detect.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)
             ^
hal\audio\src\v1\comp\kt_Detect.c: 4 warnings, 0 errors
Compiling hal\audio\src\v1\l1audio_sph_srv.c ... 
Compiling hal\audio\src\v1\l1audio_trace.c ... 
Compiling hal\audio\src\v1\media.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/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)
          ^
"hal\audio\src\v1\media.c", line 1349: Warning:  #188-D: enumerated type mixed with another type
          MelodyComp_SetUsage(!fEnable);   //true: sound effect, false: music sound
                              ^
"hal\audio\src\v1\media.c", line 1614: Warning:  #111-D: statement is unreachable
           break;
           ^
"hal\audio\src\v1\media.c", line 1619: Warning:  #111-D: statement is unreachable
           break;
           ^
"hal\audio\src\v1\media.c", line 2385: Warning:  #167-D: argument of type "void (*)(uint16)" is incompatible with parameter of type "L1Audio_EventHandler"
      L1Audio_HookHisrHandler(magic_no, mediaHisr, userData);
                                        ^
"hal\audio\src\v1\media.c", line 2410: Warning:  #111-D: statement is unreachable
     return MEDIA_SUCCESS;
     ^
"hal\audio\src\v1\media.c", line 2445: Warning:  #223-D: function "PcmSink_UpdateGain" declared implicitly
     PcmSink_UpdateGain();
     ^
"hal\audio\src\v1\media.c", line 2511: Warning:  #188-D: enumerated type mixed with another type
     media.calibration_type = 0;
                            ^
"hal\audio\src\v1\media.c", line 3073: Warning:  #513-D: a value of type "void *" cannot be assigned to an entity of type "kal_bool (*)(void *, void *)"
           pStrmStruct->EmptyBufferDone = pParam;
                                        ^
"hal\audio\src\v1\media.c", line 3122: Warning:  #513-D: a value of type "void (*)(kal_uint8 *, kal_uint32)" cannot be assigned to an entity of type "void (*)(void *, kal_uint32)"
              pStrmStruct->UpdateHeader = aacUpdateADTSHeader;
                                        ^
"hal\audio\src\v1\media.c", line 3572: Warning:  #223-D: function "ACU_SendMediaEvent" declared implicitly
     ACU_SendMediaEvent(hdl);
     ^
"hal\audio\src\v1\media.c", line 3818: Warning:  #513-D: a value of type "Media_Status (*)(MHdl *, Audio_Param_Type, void *)" cannot be assigned to an entity of type "Media_Status (*)(MHdl *, kal_uint32, void *)"
     hdl->SetParameter = mhdlSetParameter;
                       ^
"hal\audio\src\v1\media.c", line 4422: Warning:  #940-D: missing return statement at end of non-void function "autGetSampleRateIdx"
  }
  ^
"hal\audio\src\v1\media.c", line 5599: Warning:  #940-D: missing return statement at end of non-void function "Media_GetKaraRecMixChannel"
  }
  ^
"hal\audio\src\v1\media.c", line 5615: Warning:  #940-D: missing return statement at end of non-void function "Media_GetKaraOperationMode"
  }
  ^
"hal\audio\src\v1\media.c", line 3556: Warning:  #177-D: function "mhdlEndHandler" was declared but never referenced
  static void mhdlEndHandler( void *data, Media_Event event )
              ^
hal\audio\src\v1\media.c: 21 warnings, 0 errors
Compiling hal\audio\src\v1\comp\media_avsync.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)
             ^
"hal\audio\src\v1\comp\media_avsync.c", line 650: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();
     ^
"hal\audio\src\v1\comp\media_avsync.c", line 842: Warning:  #111-D: statement is unreachable
     return 0;
     ^
"hal\audio\src\v1\comp\media_avsync.c", line 864: Warning:  #111-D: statement is unreachable
     return 0;
     ^
hal\audio\src\v1\comp\media_avsync.c: 7 warnings, 0 errors
Compiling hal\audio\src\common\src\melody\melody_common.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))
             ^
"hal\audio\src\common\src\melody\melody_common.c", line 1239: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
     PcmSink_TerminateSound();  
     ^
"hal\audio\src\common\src\melody\melody_common.c", line 1340: Warning:  #177-D: variable "parsedata" was declared but never referenced
     MelodyParseParam *parsedata;
                       ^
"hal\audio\src\common\src\melody\melody_common.c", line 1343: Warning:  #177-D: variable "mhdl_ms" was declared but never referenced
     Media_Handle_MIDICTRL *mhdl_ms, *mhdl_se;
                            ^
"hal\audio\src\common\src\melody\melody_common.c", line 1343: Warning:  #177-D: variable "mhdl_se" was declared but never referenced
     Media_Handle_MIDICTRL *mhdl_ms, *mhdl_se;
                                      ^
"hal\audio\src\common\src\melody\melody_common.c", line 1345: Warning:  #177-D: variable "I" was declared but never referenced
     kal_uint8 I;
               ^
"hal\audio\src\common\src\melody\melody_common.c", line 1465: Warning:  #940-D: missing return statement at end of non-void function "MelodyComp_SendShortMsg"
  }
  ^
"hal\audio\src\common\src\melody\melody_common.c", line 1492: Warning:  #940-D: missing return statement at end of non-void function "MelodyComp_SendLongMsg"
  }
  ^
"hal\audio\src\common\src\melody\melody_common.c", line 1647: Warning:  #550-D: variable "MelodyParFunc" was set but never used
        MHPB_CompList MelodyParFunc, MelodySynFunc, SinkFunc;
                      ^
"hal\audio\src\common\src\melody\melody_common.c", line 1647: Warning:  #550-D: variable "MelodySynFunc" was set but never used
        MHPB_CompList MelodyParFunc, MelodySynFunc, SinkFunc;
                                     ^
"hal\audio\src\common\src\melody\melody_common.c", line 1647: Warning:  #550-D: variable "SinkFunc" was set but never used
        MHPB_CompList MelodyParFunc, MelodySynFunc, SinkFunc;
                                                    ^
"hal\audio\src\common\src\melody\melody_common.c", line 2191: Warning:  #550-D: variable "tmpduration" was set but never used
     kal_int32 tmpduration;
               ^
"hal\audio\src\common\src\melody\melody_common.c", line 2277: Warning:  #550-D: variable "forcestopflag" was set but never used
     kal_bool forcestopflag;
              ^
"hal\audio\src\common\src\melody\melody_common.c", line 300: Warning:  #177-D: function "DummyHisr" was declared but never referenced
  static void DummyHisr( void *data ){}
              ^
"hal\audio\src\common\src\melody\melody_common.c", line 1165: Warning:  #177-D: function "MelodyComp_DPMGR_Load" was declared but never referenced
  static void MelodyComp_DPMGR_Load( Media_Handle_MIDICTRL *ihandle )
              ^
"hal\audio\src\common\src\melody\melody_common.c", line 1175: Warning:  #177-D: function "MelodyComp_DPMGR_Unload" was declared but never referenced
  static void MelodyComp_DPMGR_Unload( Media_Handle_MIDICTRL *ihandle )
              ^
hal\audio\src\common\src\melody\melody_common.c: 20 warnings, 0 errors
Compiling hal\audio\src\v1\pcm.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/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)
          ^
"hal\audio\src\v1\pcm.c", line 541: Warning:  #177-D: function "pcmGetSample" was declared but never referenced
  static kal_uint16 pcmGetSample( const kal_uint16 **pbuf )
                    ^
"hal\audio\src\v1\pcm.c", line 561: Warning:  #177-D: function "alawGetSample" was declared but never referenced
  static kal_uint16 alawGetSample( const kal_uint16 **pbuf )
                    ^
"hal\audio\src\v1\pcm.c", line 592: Warning:  #177-D: function "ulawGetSample" was declared but never referenced
  static kal_uint16 ulawGetSample( const kal_uint16 **pbuf )
                    ^
"hal\audio\src\v1\pcm.c", line 623: Warning:  #177-D: function "dviGetSample" was declared but never referenced
  static kal_uint16 dviGetSample( const kal_uint16 **pbuf )
                    ^
hal\audio\src\v1\pcm.c: 10 warnings, 0 errors
Compiling hal\audio\src\v1\pcm4way.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))
             ^
hal\audio\src\v1\pcm4way.c: 5 warnings, 0 errors
Compiling hal\audio\src\common\src\pcmRouteService.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)
             ^
"hal\audio\src\common\src\pcmRouteService.c", line 251: Warning:  #111-D: statement is unreachable
     return 0;
     ^
"hal\audio\src\common\src\pcmRouteService.c", line 336: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
        PcmSink_Mute(KAL_FALSE, PCMSINK_MUTE_PCMRUT);
        ^
"hal\audio\src\common\src\pcmRouteService.c", line 560: Warning:  #223-D: function "AUDLP_SetClkSwitch_26M" declared implicitly
     AUDLP_SetClkSwitch_26M(KAL_FALSE);
     ^
"hal\audio\src\common\src\pcmRouteService.c", line 564: Warning:  #223-D: function "APM_IsRWtaskRuning" declared implicitly
     pcmRut.fIsReadOnly = (!APM_IsRWtaskRuning() && !Media_IsAlwaysRoute());
                            ^
"hal\audio\src\common\src\pcmRouteService.c", line 564: Warning:  #188-D: enumerated type mixed with another type
     pcmRut.fIsReadOnly = (!APM_IsRWtaskRuning() && !Media_IsAlwaysRoute());
                        ^
"hal\audio\src\common\src\pcmRouteService.c", line 606: Warning:  #223-D: function "PcmSink_IsSoundRuning" declared implicitly
     fIsSoundPlaying = PcmSink_IsSoundRuning();
                       ^
"hal\audio\src\common\src\pcmRouteService.c", line 606: Warning:  #188-D: enumerated type mixed with another type
     fIsSoundPlaying = PcmSink_IsSoundRuning();
                     ^
"hal\audio\src\common\src\pcmRouteService.c", line 638: Warning:  #223-D: function "PcmSink_MixSoundToDsp" declared implicitly
     PcmSink_MixSoundToDsp();
     ^
"hal\audio\src\common\src\pcmRouteService.c", line 683: Warning:  #513-D: a value of type "DPRAMADDR" cannot be assigned to an entity of type "volatile kal_int16 *"
     pSrc16 = DSP_DM_ADDR(pcmRut.pageNum, pcmRut.uCurWrite);
            ^
"hal\audio\src\common\src\pcmRouteService.c", line 704: Warning:  #513-D: a value of type "DPRAMADDR" cannot be assigned to an entity of type "volatile kal_int16 *"
     pSrc16 = DSP_DM_ADDR(pcmRut.pageNum, uNextBuf);
            ^
"hal\audio\src\common\src\pcmRouteService.c", line 726: Warning:  #513-D: a value of type "DPRAMADDR" cannot be assigned to an entity of type "volatile kal_int16 *"
     pDst16 = DSP_DM_ADDR(pcmRut.pageNum, uCurrWrite);
            ^
"hal\audio\src\common\src\pcmRouteService.c", line 767: Warning:  #177-D: variable "pDst16" was declared but never referenced
     volatile kal_int16 *pDst16;
                         ^
"hal\audio\src\common\src\pcmRouteService.c", line 768: Warning:  #177-D: variable "I" was declared but never referenced
     kal_int32 I, iSample, uDstWord;
               ^
"hal\audio\src\common\src\pcmRouteService.c", line 768: Warning:  #177-D: variable "iSample" was declared but never referenced
     kal_int32 I, iSample, uDstWord;
                  ^
"hal\audio\src\common\src\pcmRouteService.c", line 835: Warning:  #223-D: function "PcmSink_IsSoundRuning" declared implicitly
     if(pcmRut.pHisrCallback || PcmSink_IsSoundRuning())
                                ^
"hal\audio\src\common\src\pcmRouteService.c", line 866: Warning:  #223-D: function "APM_IsRWtaskRuning" declared implicitly
     pcmRut.fIsReadOnly = (!APM_IsRWtaskRuning() && !Media_IsAlwaysRoute());
                            ^
"hal\audio\src\common\src\pcmRouteService.c", line 866: Warning:  #188-D: enumerated type mixed with another type
     pcmRut.fIsReadOnly = (!APM_IsRWtaskRuning() && !Media_IsAlwaysRoute());
                        ^
"hal\audio\src\common\src\pcmRouteService.c", line 880: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
           PcmSink_Mute(KAL_TRUE, PCMSINK_MUTE_PCMRUT);
           ^
"hal\audio\src\common\src\pcmRouteService.c", line 897: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
           PcmSink_Mute(KAL_TRUE, PCMSINK_MUTE_PCMRUT);
           ^
"hal\audio\src\common\src\pcmRouteService.c", line 900: Warning:  #223-D: function "PcmSink_Mute" declared implicitly
        PcmSink_Mute(KAL_FALSE, PCMSINK_MUTE_PCMRUT);      
        ^
hal\audio\src\common\src\pcmRouteService.c: 24 warnings, 0 errors
Compiling hal\audio\src\v1\pcm_strm_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)
             ^
"hal\audio\src\v1\pcm_strm_drv.c", line 894: Warning:  #177-D: variable "ihdl" was declared but never referenced
     pcmStrmMediaHdl *ihdl = (pcmStrmMediaHdl *)hdl;
                      ^
"hal\audio\src\v1\pcm_strm_drv.c", line 937: Warning:  #177-D: variable "ihdl" was declared but never referenced
     pcmStrmMediaHdl *ihdl = (pcmStrmMediaHdl *)hdl;
                      ^
hal\audio\src\v1\pcm_strm_drv.c: 6 warnings, 0 errors
Compiling hal\audio\src\v1\sp_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/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)
          ^
"hal\audio\src\v1\sp_drv.c", line 3159: Warning:  #177-D: variable "module_id" was declared but never referenced
     kal_uint32 module_id = MOD_L1AUDIO_SPH_SRV;
                ^
"hal\audio\src\v1\sp_drv.c", line 3161: Warning:  #177-D: variable "voc_ptr" was declared but never referenced
     kal_uint32 *voc_ptr = &voc_pattern;
                 ^
"hal\audio\src\v1\sp_drv.c", line 3902: Warning:  #186-D: pointless comparison of unsigned integer with zero
          record_intensity = BOUNDED(record_intensity, MIC_MAX_VALUE_FOR_INTENSITY, MIC_MIN_VALUE_FOR_INTENSITY);
                             ^
hal\audio\src\v1\sp_drv.c: 9 warnings, 0 errors
Compiling hal\audio\src\v1\sp_enhance.c ... 
Compiling hal\audio\src\v1\spe_custom_drv.c ... 
Compiling hal\audio\src\v1\tone_debug.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/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)
          ^
hal\audio\src\v1\tone_debug.c: 6 warnings, 0 errors
Compiling hal\audio\src\v1\tone_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/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)
          ^
"hal\audio\src\v1\tone_drv.c", line 348: Warning:  #550-D: variable "TONE_CTRL1" was set but never used
           kal_uint16 TONE_CTRL1, TONE_CTRL2;
                      ^
"hal\audio\src\v1\tone_drv.c", line 348: Warning:  #550-D: variable "TONE_CTRL2" was set but never used
           kal_uint16 TONE_CTRL1, TONE_CTRL2;
                                  ^
"hal\audio\src\v1\tone_drv.c", line 427: Warning:  #223-D: function "BT_SCO_GetCurrentMode" declared implicitly
        if(( uCurrentSpMode == SPH_MODE_BT_EARPHONE || uCurrentSpMode == SPH_MODE_BT_CARKIT ) && BT_SCO_GetCurrentMode() == BT_SCO_APP_MODE_DISABLE)
                                                                                                 ^
"hal\audio\src\v1\tone_drv.c", line 429: Warning:  #223-D: function "BT_SCO_SpeechPath_ON" declared implicitly
           BT_SCO_SpeechPath_ON(BT_SCO_APP_SPEECH_PATH_BTUL);
           ^
"hal\audio\src\v1\tone_drv.c", line 465: Warning:  #167-D: argument of type "kal_uint8 *" is incompatible with parameter of type "kal_int8 *"
          AFE_GetOutputVolume(L1SP_SPEECH, &volume_sph, &digi_gain_idx_sph);
                                                        ^
"hal\audio\src\v1\tone_drv.c", line 467: Warning:  #223-D: function "AFE_IsSpeakerMuted" declared implicitly
          if (AFE_IsSpeakerMuted(L1SP_SPEECH) || volume_sph == 0)
              ^
"hal\audio\src\v1\tone_drv.c", line 632: Warning:  #223-D: function "DTMF_MCU_Play" declared implicitly
        DTMF_MCU_Play((const L1SP_Tones *)pToneList, DTMF_DSP.fIsQTMF, KAL_FALSE);
        ^
"hal\audio\src\v1\tone_drv.c", line 653: Warning:  #223-D: function "DTMF_MCU_Stop" declared implicitly
        DTMF_MCU_Stop(KAL_FALSE);
        ^
"hal\audio\src\v1\tone_drv.c", line 660: Warning:  #177-D: variable "I" was declared but never referenced
     kal_int32 I;
               ^
"hal\audio\src\v1\tone_drv.c", line 716: Warning:  #223-D: function "DTMF_MCU_IsKeytonePlaying" declared implicitly
     if(DTMF_MCU_IsKeytonePlaying() && device != AFE_GetOutputDevice(L1SP_KEYTONE))
        ^
"hal\audio\src\v1\tone_drv.c", line 716: Warning:  #223-D: function "AFE_GetOutputDevice" declared implicitly
     if(DTMF_MCU_IsKeytonePlaying() && device != AFE_GetOutputDevice(L1SP_KEYTONE))
                                                 ^
"hal\audio\src\v1\tone_drv.c", line 757: Warning:  #223-D: function "PcmSink_IsAudioRuning" declared implicitly
     if(PcmSink_IsAudioRuning() || DTMF_MCU_IsTonePlaying() || AM_IsAfeOn())
        ^
"hal\audio\src\v1\tone_drv.c", line 757: Warning:  #223-D: function "DTMF_MCU_IsTonePlaying" declared implicitly
     if(PcmSink_IsAudioRuning() || DTMF_MCU_IsTonePlaying() || AM_IsAfeOn())
                                   ^
"hal\audio\src\v1\tone_drv.c", line 762: Warning:  #223-D: function "MelodyComp_PlayerActivate" declared implicitly
     if(MelodyComp_PlayerActivate()) return;
        ^
"hal\audio\src\v1\tone_drv.c", line 798: Warning:  #223-D: function "DTMF_MCU_Play" declared implicitly
        DTMF_MCU_Play((const L1SP_Tones *)&keytone.dtmf, KAL_FALSE, KAL_TRUE);
        ^
"hal\audio\src\v1\tone_drv.c", line 812: Warning:  #223-D: function "DTMF_MCU_Stop" declared implicitly
        DTMF_MCU_Stop(KAL_TRUE);
        ^
"hal\audio\src\v1\tone_drv.c", line 823: Warning:  #177-D: variable "I" was declared but never referenced
     kal_int32 I;
               ^
"hal\audio\src\v1\tone_drv.c", line 861: Warning:  #223-D: function "PcmSink_IsAudioRuning" declared implicitly
        if(PcmSink_IsAudioRuning() || tone.fDspToneRunning || keytone.fDspToneRunning)
           ^
"hal\audio\src\v1\tone_drv.c", line 866: Warning:  #223-D: function "MelodyComp_PlayerActivate" declared implicitly
        if(MelodyComp_PlayerActivate()) return KAL_FALSE;
           ^
"hal\audio\src\v1\tone_drv.c", line 875: Warning:  #940-D: missing return statement at end of non-void function "KT_IsPlayable"
  }
  ^
hal\audio\src\v1\tone_drv.c: 26 warnings, 0 errors
Compiling hal\audio\src\v1\tone_loopback_rec.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/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)
          ^
hal\audio\src\v1\tone_loopback_rec.c: 6 warnings, 0 errors
Compiling hal\audio\src\v1\comp\tonedect.c ... 
"hal\audio\src\v1\comp\tonedect.c", line 236: Warning:  #550-D: variable "idx3" was set but never used
     int idx1, idx2, idx3;
                     ^
hal\audio\src\v1\comp\tonedect.c: 1 warning, 0 errors
Compiling hal\audio\src\v1\comp\tonesyn.c ... 
Compiling hal\audio\src\v1\wav.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)
             ^
hal\audio\src\v1\wav.c: 4 warnings, 0 errors
Compiling hal\audio\src\v1\wav_codec.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)
             ^
"hal\audio\src\v1\wav_codec.c", line 530: Warning:  #177-D: variable "stepAdjustTable" was declared but never referenced
  static const short stepAdjustTable[] = {
                     ^
hal\audio\src\v1\wav_codec.c: 5 warnings, 0 errors
Compiling hal\audio\src\v1\cmpdrv\wav_comp_drv.c ... 
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 631: Warning:  #223-D: function "PcmSink_TerminateSound" declared implicitly
        PcmSink_TerminateSound();
        ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 803: Warning:  #223-D: function "Media_A2V_NOTIFY_MEDIA_END" declared implicitly
              Media_A2V_NOTIFY_MEDIA_END(hdl->Stop, hdl);
              ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 787: Warning:  #177-D: variable "pInfo" was declared but never referenced
     WAV_FileInfo *pInfo = (WAV_FileInfo*)ihdl->pPublicInfo;
                   ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 880: Warning:  #177-D: variable "pArray" was declared but never referenced
        MHPB_CompList const *pArray[4];
                             ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 579: Warning:  #177-D: function "wavMedGetCurrentTime" was declared but never referenced
  static kal_uint32 wavMedGetCurrentTime( MHdl *hdl )
                    ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 600: Warning:  #177-D: function "wavMedSetLevel" was declared but never referenced
  static Media_Status wavMedSetLevel( MHdl *hdl, kal_uint8 level )
                      ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 608: Warning:  #177-D: function "wavMedGetLevel" was declared but never referenced
  static kal_uint8 wavMedGetLevel( MHdl *hdl )
                   ^
"hal\audio\src\v1\cmpdrv\wav_comp_drv.c", line 851: Warning:  #177-D: variable "WavParRendFunc" was declared but never referenced
  static const MHPB_CompList WavParRendFunc = {
                             ^
hal\audio\src\v1\cmpdrv\wav_comp_drv.c: 8 warnings, 0 errors
Compiling hal\audio\src\v1\wav_thumb.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/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)
          ^
"hal\audio\src\v1\wav_thumb.c", line 225: Warning:  #223-D: function "BLI_Convert" declared implicitly
     uConsumeByte = BLI_Convert( wav.pSRC_Handle, wav.pTempPcmBuf, &uInByte, pOutBuf, &uOutByte);  
                    ^
"hal\audio\src\v1\wav_thumb.c", line 256: Warning:  #223-D: function "BLI_GetMemSize" declared implicitly
        BLI_GetMemSize(8000,1,16000,1,&uBufSize);
        ^
"hal\audio\src\v1\wav_thumb.c", line 266: Warning:  #223-D: function "BLI_Open" declared implicitly
        wav.pSRC_Handle = (void*)BLI_Open(8000,1,16000,1,(kal_int8*)pBuf, audio_alloc_ext_mem_cacheable_simplified);
                                 ^
"hal\audio\src\v1\wav_thumb.c", line 281: Warning:  #223-D: function "BLI_Close" declared implicitly
        BLI_Close(wav.pSRC_Handle, audio_free_ext_mem_simplified);
        ^
hal\audio\src\v1\wav_thumb.c: 10 warnings, 0 errors
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "APCS_INTWORK SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/audio.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\audio\audio_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/audio.lib is updated

.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\AacDspDecoder.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\AacParser.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\aac_comp_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\aac_sbr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\aac_seek.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\afe_6261.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\afe_common.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\am.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\amr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\AmrDspDecoder.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\AmrParser.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\amr_comp_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\amr_seek.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\amr_table.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\apm_comp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\ast.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\AudComUtil.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audioCF.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\AudioDrain.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audioeq.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audioPP.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audio_create.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audio_idma.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audio_service.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\audlp2_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\avb_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\BT_PcmLoopback.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\bt_sco_app.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\bt_sco_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\DafDecoder.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\DafParser.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\daf_comp_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\daf_seek.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\dpmgr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\dtmf_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\i2s_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\jamr.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\jimy_comp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\jsmf_comp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\jtone_comp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\jwav_comp.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\kt_Detect.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\l1audio_sph_srv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\l1audio_trace.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\M4aParser.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\MedAdapt.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\media.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\media_avsync.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\MelodyParser.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\MelodySynthesizer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\melody_common.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\pcm.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\pcm4way.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\PcmMixer.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\pcmRouteService.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\PcmRouteSrc.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\PcmSink.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\pcm_strm_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\SeekEngine.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\spe_custom_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\sp_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\sp_enhance.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\tonedect.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\tonesyn.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\tone_debug.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\tone_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\tone_loopback_rec.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\wav.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\WavDecoder.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\Wavetable_SW.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\WavParser.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\wav_codec.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\wav_comp_drv.det



.\build\KEYTAK61D_GB_11C\gprs\MT6261r\audio_dep\wav_thumb.det


Processing apm_comp.det audioPP.det audio_service.det aac_sbr.det i2s_drv.det afe_common.det WavDecoder.det afe_6261.det media.det amr_comp_drv.det audio_create.det PcmRouteSrc.det amr_table.det audioCF.det l1audio_sph_srv.det sp_enhance.det MelodyParser.det SeekEngine.det daf_seek.det amr_seek.det tone_loopback_rec.det l1audio_trace.det dpmgr.det wav_thumb.det bt_sco_app.det aac_seek.det jwav_comp.det wav_comp_drv.det DafDecoder.det WavParser.det PcmSink.det dtmf_drv.det audlp2_drv.det Wavetable_SW.det wav_codec.det am.det melody_common.det MedAdapt.det amr.det PcmMixer.det AudioDrain.det pcm_strm_drv.det ast.det bt_sco_drv.det audio_idma.det jimy_comp.det jtone_comp.det kt_Detect.det tonedect.det pcm4way.det AmrDspDecoder.det tone_drv.det pcm.det aac_comp_drv.det MelodySynthesizer.det tonesyn.det AudComUtil.det tone_debug.det M4aParser.det media_avsync.det spe_custom_drv.det jsmf_comp.det pcmRouteService.det wav.det audioeq.det AmrParser.det daf_comp_drv.det sp_drv.det DafParser.det AacParser.det BT_PcmLoopback.det jamr.det AacDspDecoder.det avb_drv.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'