1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2011-2014 Intel Corporation
* Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org>
* Copyright 2023 NXP
*
*
*/
#include <stdint.h>
#define BT_HCI_CMD_BIT(_byte, _bit) ((8 * _byte) + _bit)
struct bt_ll_hdr {
uint8_t preamble;
uint32_t access_addr;
} __attribute__ ((packed));
#define BT_LL_CONN_UPDATE_REQ 0x00
struct bt_ll_conn_update_req {
uint8_t win_size;
uint16_t win_offset;
uint16_t interval;
uint16_t latency;
uint16_t timeout;
uint16_t instant;
} __attribute__ ((packed));
#define BT_LL_CHANNEL_MAP_REQ 0x01
struct bt_ll_channel_map_req {
uint8_t map[5];
uint16_t instant;
} __attribute__ ((packed));
#define BT_LL_TERMINATE_IND 0x02
struct bt_ll_terminate_ind {
uint8_t error;
} __attribute__ ((packed));
#define BT_LL_ENC_REQ 0x03
struct bt_ll_enc_req {
uint64_t rand;
uint16_t ediv;
uint64_t skd;
uint32_t iv;
} __attribute__ ((packed));
#define BT_LL_ENC_RSP 0x04
struct bt_ll_enc_rsp {
uint64_t skd;
uint32_t iv;
} __attribute__ ((packed));
#define BT_LL_START_ENC_REQ 0x05
#define BT_LL_START_ENC_RSP 0x06
#define BT_LL_UNKNOWN_RSP 0x07
struct bt_ll_unknown_rsp {
uint8_t type;
} __attribute__ ((packed));
#define BT_LL_FEATURE_REQ 0x08
struct bt_ll_feature_req {
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LL_FEATURE_RSP 0x09
struct bt_ll_feature_rsp {
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LL_PAUSE_ENC_REQ 0x0a
#define BT_LL_PAUSE_ENC_RSP 0x0b
#define BT_LL_VERSION_IND 0x0c
struct bt_ll_version_ind {
uint8_t version;
uint16_t company;
uint16_t subversion;
} __attribute__ ((packed));
#define BT_LL_REJECT_IND 0x0d
struct bt_ll_reject_ind {
uint8_t error;
} __attribute__ ((packed));
#define BT_LL_PERIPHERAL_FEATURE_REQ 0x0e
struct bt_ll_peripheral_feature_req {
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LL_CONN_PARAM_REQ 0x0f
struct bt_ll_conn_param_req {
uint16_t interval_min;
uint16_t interval_max;
uint16_t latency;
uint16_t timeout;
uint8_t pref_period;
uint16_t pref_conn_evt_count;
uint8_t offset_0;
uint8_t offset_1;
uint8_t offset_2;
uint8_t offset_3;
uint8_t offset_4;
uint8_t offset_5;
} __attribute__ ((packed));
#define BT_LL_CONN_PARAM_RSP 0x10
struct bt_ll_conn_param_rsp {
uint16_t interval_min;
uint16_t interval_max;
uint16_t latency;
uint16_t timeout;
uint8_t pref_period;
uint16_t pref_conn_evt_count;
uint8_t offset_0;
uint8_t offset_1;
uint8_t offset_2;
uint8_t offset_3;
uint8_t offset_4;
uint8_t offset_5;
} __attribute__ ((packed));
#define BT_LL_REJECT_IND_EXT 0x11
struct bt_ll_reject_ind_ext {
uint8_t opcode;
uint8_t error;
} __attribute__ ((packed));
#define BT_LL_PING_REQ 0x12
#define BT_LL_PING_RSP 0x13
#define BT_LL_LENGTH_REQ 0x14
struct bt_ll_length {
uint16_t rx_len;
uint16_t rx_time;
uint16_t tx_len;
uint16_t tx_time;
} __attribute__ ((packed));
#define BT_LL_LENGTH_RSP 0x15
#define BT_LL_PHY_REQ 0x16
struct bt_ll_phy {
uint8_t tx_phys;
uint8_t rx_phys;
} __attribute__ ((packed));
#define BT_LL_PHY_RSP 0x17
#define BT_LL_PHY_UPDATE_IND 0x18
struct bt_ll_phy_update_ind {
uint8_t c_phy;
uint8_t p_phy;
uint16_t instant;
} __attribute__ ((packed));
#define BT_LL_MIN_USED_CHANNELS 0x19
struct bt_ll_min_used_channels {
uint8_t phys;
uint8_t min_channels;
} __attribute__ ((packed));
#define BT_LL_CTE_REQ 0x1a
struct bt_ll_cte_req {
uint8_t cte;
} __attribute__ ((packed));
#define BT_LL_CTE_RSP 0x1b
#define BT_LL_PERIODIC_SYNC_IND 0x1c
struct bt_ll_periodic_sync_ind {
uint16_t id;
uint8_t info[18];
uint16_t event_count;
uint16_t last_counter;
uint8_t adv_info;
uint8_t phy;
uint8_t adv_addr[6];
uint16_t sync_counter;
} __attribute__ ((packed));
#define BT_LL_CLOCK_ACCURACY_REQ 0x1d
struct bt_ll_clock_acc {
uint8_t sca;
} __attribute__ ((packed));
#define BT_LL_CLOCK_ACCURACY_RSP 0x1e
#define BT_LL_CIS_REQ 0x1f
struct bt_ll_cis_req {
uint8_t cig;
uint8_t cis;
uint8_t c_phy;
uint8_t p_phy;
uint16_t c_sdu;
uint16_t p_sdu;
uint8_t c_interval[3];
uint8_t p_interval[3];
uint8_t c_pdu;
uint8_t p_pdu;
uint8_t nse;
uint8_t sub_interval[3];
uint8_t bn;
uint8_t c_ft;
uint8_t p_ft;
uint16_t iso_interval;
uint8_t offset_min[3];
uint8_t offset_max[3];
uint16_t conn_event_count;
} __attribute__ ((packed));
#define BT_LL_CIS_RSP 0x20
struct bt_ll_cis_rsp {
uint8_t offset_min[3];
uint8_t offset_max[3];
uint16_t conn_event_count;
} __attribute__ ((packed));
#define BT_LL_CIS_IND 0x21
struct bt_ll_cis_ind {
uint32_t addr;
uint8_t cis_offset[3];
uint8_t cig_sync_delay[3];
uint8_t cis_sync_delay[3];
uint16_t conn_event_count;
} __attribute__ ((packed));
#define BT_LL_CIS_TERMINATE_IND 0x22
struct bt_ll_cis_term_ind {
uint8_t cig;
uint8_t cis;
uint8_t reason;
} __attribute__ ((packed));
#define LMP_ESC4(x) ((127 << 8) | (x))
#define BT_LMP_NAME_REQ 1
struct bt_lmp_name_req {
uint8_t offset;
} __attribute__ ((packed));
#define BT_LMP_NAME_RSP 2
struct bt_lmp_name_rsp {
uint8_t offset;
uint8_t length;
uint8_t fragment[14];
} __attribute__ ((packed));
#define BT_LMP_ACCEPTED 3
struct bt_lmp_accepted {
uint8_t opcode;
} __attribute__ ((packed));
#define BT_LMP_NOT_ACCEPTED 4
struct bt_lmp_not_accepted {
uint8_t opcode;
uint8_t error;
} __attribute__ ((packed));
#define BT_LMP_CLKOFFSET_REQ 5
#define BT_LMP_CLKOFFSET_RSP 6
struct bt_lmp_clkoffset_rsp {
uint16_t offset;
} __attribute__ ((packed));
#define BT_LMP_DETACH 7
struct bt_lmp_detach {
uint8_t error;
} __attribute__ ((packed));
#define BT_LMP_AU_RAND 11
struct bt_lmp_au_rand {
uint8_t number[16];
} __attribute__ ((packed));
#define BT_LMP_SRES 12
struct bt_lmp_sres {
uint8_t response[4];
} __attribute__ ((packed));
#define BT_LMP_ENCRYPTION_MODE_REQ 15
struct bt_lmp_encryption_mode_req {
uint8_t mode;
} __attribute__ ((packed));
#define BT_LMP_ENCRYPTION_KEY_SIZE_REQ 16
struct bt_lmp_encryption_key_size_req {
uint8_t key_size;
} __attribute__ ((packed));
#define BT_LMP_START_ENCRYPTION_REQ 17
struct bt_lmp_start_encryption_req {
uint8_t number[16];
} __attribute__ ((packed));
#define BT_LMP_STOP_ENCRYPTION_REQ 18
#define BT_LMP_SWITCH_REQ 19
struct bt_lmp_switch_req {
uint32_t instant;
} __attribute__ ((packed));
#define BT_LMP_UNSNIFF_REQ 24
#define BT_LMP_MAX_POWER 33
#define BT_LMP_MIN_POWER 34
#define BT_LMP_AUTO_RATE 35
#define BT_LMP_PREFERRED_RATE 36
struct bt_lmp_preferred_rate {
uint8_t rate;
} __attribute__ ((packed));
#define BT_LMP_VERSION_REQ 37
struct bt_lmp_version_req {
uint8_t version;
uint16_t company;
uint16_t subversion;
} __attribute__ ((packed));
#define BT_LMP_VERSION_RES 38
struct bt_lmp_version_res {
uint8_t version;
uint16_t company;
uint16_t subversion;
} __attribute__ ((packed));
#define BT_LMP_FEATURES_REQ 39
struct bt_lmp_features_req {
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LMP_FEATURES_RES 40
struct bt_lmp_features_res {
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LMP_MAX_SLOT 45
struct bt_lmp_max_slot {
uint8_t slots;
} __attribute__ ((packed));
#define BT_LMP_MAX_SLOT_REQ 46
struct bt_lmp_max_slot_req {
uint8_t slots;
} __attribute__ ((packed));
#define BT_LMP_TIMING_ACCURACY_REQ 47
#define BT_LMP_TIMING_ACCURACY_RES 48
struct bt_lmp_timing_accuracy_res {
uint8_t drift;
uint8_t jitter;
} __attribute__ ((packed));
#define BT_LMP_SETUP_COMPLETE 49
#define BT_LMP_USE_SEMI_PERMANENT_KEY 50
#define BT_LMP_HOST_CONNECTION_REQ 51
#define BT_LMP_SLOT_OFFSET 52
struct bt_lmp_slot_offset {
uint16_t offset;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_LMP_PAGE_SCAN_MODE_REQ 54
struct bt_lmp_page_scan_mode_req {
uint8_t scheme;
uint8_t settings;
} __attribute__ ((packed));
#define BT_LMP_TEST_ACTIVATE 56
#define BT_LMP_ENCRYPTION_KEY_SIZE_MASK_REQ 58
#define BT_LMP_SET_AFH 60
struct bt_lmp_set_afh {
uint32_t instant;
uint8_t mode;
uint8_t map[10];
} __attribute__ ((packed));
#define BT_LMP_ENCAPSULATED_HEADER 61
struct bt_lmp_encapsulated_header {
uint8_t major;
uint8_t minor;
uint8_t length;
} __attribute__ ((packed));
#define BT_LMP_ENCAPSULATED_PAYLOAD 62
struct bt_lmp_encapsulated_payload {
uint8_t data[16];
} __attribute__ ((packed));
#define BT_LMP_SIMPLE_PAIRING_CONFIRM 63
struct bt_lmp_simple_pairing_confirm {
uint8_t value[16];
} __attribute__ ((packed));
#define BT_LMP_SIMPLE_PAIRING_NUMBER 64
struct bt_lmp_simple_pairing_number {
uint8_t value[16];
} __attribute__ ((packed));
#define BT_LMP_DHKEY_CHECK 65
struct bt_lmp_dhkey_check {
uint8_t value[16];
} __attribute__ ((packed));
#define BT_LMP_PAUSE_ENCRYPTION_AES_REQ 66
#define BT_LMP_ACCEPTED_EXT LMP_ESC4(1)
struct bt_lmp_accepted_ext {
uint8_t escape;
uint8_t opcode;
} __attribute__ ((packed));
#define BT_LMP_NOT_ACCEPTED_EXT LMP_ESC4(2)
struct bt_lmp_not_accepted_ext {
uint8_t escape;
uint8_t opcode;
uint8_t error;
} __attribute__ ((packed));
#define BT_LMP_FEATURES_REQ_EXT LMP_ESC4(3)
struct bt_lmp_features_req_ext {
uint8_t page;
uint8_t max_page;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LMP_FEATURES_RES_EXT LMP_ESC4(4)
struct bt_lmp_features_res_ext {
uint8_t page;
uint8_t max_page;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_LMP_PACKET_TYPE_TABLE_REQ LMP_ESC4(11)
struct bt_lmp_packet_type_table_req {
uint8_t table;
} __attribute__ ((packed));
#define BT_LMP_CHANNEL_CLASSIFICATION_REQ LMP_ESC4(16)
struct bt_lmp_channel_classification_req {
uint8_t mode;
uint16_t min_interval;
uint16_t max_interval;
} __attribute__ ((packed));
#define BT_LMP_CHANNEL_CLASSIFICATION LMP_ESC4(17)
struct bt_lmp_channel_classification {
uint8_t classification[10];
} __attribute__ ((packed));
#define BT_LMP_PAUSE_ENCRYPTION_REQ LMP_ESC4(23)
#define BT_LMP_RESUME_ENCRYPTION_REQ LMP_ESC4(24)
#define BT_LMP_IO_CAPABILITY_REQ LMP_ESC4(25)
struct bt_lmp_io_capability_req {
uint8_t capability;
uint8_t oob_data;
uint8_t authentication;
} __attribute__ ((packed));
#define BT_LMP_IO_CAPABILITY_RES LMP_ESC4(26)
struct bt_lmp_io_capability_res {
uint8_t capability;
uint8_t oob_data;
uint8_t authentication;
} __attribute__ ((packed));
#define BT_LMP_NUMERIC_COMPARISON_FAILED LMP_ESC(27)
#define BT_LMP_PASSKEY_FAILED LMP_ESC4(28)
#define BT_LMP_OOB_FAILED LMP_ESC(29)
#define BT_LMP_POWER_CONTROL_REQ LMP_ESC4(31)
struct bt_lmp_power_control_req {
uint8_t request;
} __attribute__ ((packed));
#define BT_LMP_POWER_CONTROL_RES LMP_ESC4(32)
struct bt_lmp_power_control_res {
uint8_t response;
} __attribute__ ((packed));
#define BT_LMP_PING_REQ LMP_ESC4(33)
#define BT_LMP_PING_RES LMP_ESC4(34)
#define BT_H4_CMD_PKT 0x01
#define BT_H4_ACL_PKT 0x02
#define BT_H4_SCO_PKT 0x03
#define BT_H4_EVT_PKT 0x04
#define BT_H4_ISO_PKT 0x05
struct bt_hci_cmd_hdr {
uint16_t opcode;
uint8_t plen;
} __attribute__ ((packed));
struct bt_hci_acl_hdr {
uint16_t handle;
uint16_t dlen;
uint8_t data[];
} __attribute__ ((packed));
struct bt_hci_sco_hdr {
uint16_t handle;
uint8_t dlen;
uint8_t data[];
} __attribute__ ((packed));
struct bt_hci_iso_hdr {
uint16_t handle;
uint16_t dlen;
uint8_t data[];
} __attribute__ ((packed));
struct bt_hci_iso_data_start {
uint16_t sn;
uint16_t slen;
uint8_t data[];
} __attribute__ ((packed));
struct bt_hci_evt_hdr {
uint8_t evt;
uint8_t plen;
} __attribute__ ((packed));
#define BT_HCI_CMD_NOP 0x0000
#define BT_HCI_CMD_INQUIRY 0x0401
struct bt_hci_cmd_inquiry {
uint8_t lap[3];
uint8_t length;
uint8_t num_resp;
} __attribute__ ((packed));
#define BT_HCI_CMD_INQUIRY_CANCEL 0x0402
#define BT_HCI_CMD_PERIODIC_INQUIRY 0x0403
struct bt_hci_cmd_periodic_inquiry {
uint16_t max_period;
uint16_t min_period;
uint8_t lap[3];
uint8_t length;
uint8_t num_resp;
} __attribute__ ((packed));
#define BT_HCI_CMD_EXIT_PERIODIC_INQUIRY 0x0404
#define BT_HCI_CMD_CREATE_CONN 0x0405
struct bt_hci_cmd_create_conn {
uint8_t bdaddr[6];
uint16_t pkt_type;
uint8_t pscan_rep_mode;
uint8_t pscan_mode;
uint16_t clock_offset;
uint8_t role_switch;
} __attribute__ ((packed));
#define BT_HCI_CMD_DISCONNECT 0x0406
struct bt_hci_cmd_disconnect {
uint16_t handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_CMD_ADD_SCO_CONN 0x0407
struct bt_hci_cmd_add_sco_conn {
uint16_t handle;
uint16_t pkt_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_CREATE_CONN_CANCEL 0x0408
struct bt_hci_cmd_create_conn_cancel {
uint8_t bdaddr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_create_conn_cancel {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_ACCEPT_CONN_REQUEST 0x0409
struct bt_hci_cmd_accept_conn_request {
uint8_t bdaddr[6];
uint8_t role;
} __attribute__ ((packed));
#define BT_HCI_CMD_REJECT_CONN_REQUEST 0x040a
struct bt_hci_cmd_reject_conn_request {
uint8_t bdaddr[6];
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_CMD_LINK_KEY_REQUEST_REPLY 0x040b
struct bt_hci_cmd_link_key_request_reply {
uint8_t bdaddr[6];
uint8_t link_key[16];
} __attribute__ ((packed));
struct bt_hci_rsp_link_key_request_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LINK_KEY_REQUEST_NEG_REPLY 0x040c
struct bt_hci_cmd_link_key_request_neg_reply {
uint8_t bdaddr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_link_key_request_neg_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_PIN_CODE_REQUEST_REPLY 0x040d
struct bt_hci_cmd_pin_code_request_reply {
uint8_t bdaddr[6];
uint8_t pin_len;
uint8_t pin_code[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_PIN_CODE_REQUEST_NEG_REPLY 0x040e
struct bt_hci_cmd_pin_code_request_neg_reply {
uint8_t bdaddr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_pin_code_request_neg_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_CHANGE_CONN_PKT_TYPE 0x040f
struct bt_hci_cmd_change_conn_pkt_type {
uint16_t handle;
uint16_t pkt_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_AUTH_REQUESTED 0x0411
struct bt_hci_cmd_auth_requested {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_CONN_ENCRYPT 0x0413
struct bt_hci_cmd_set_conn_encrypt {
uint16_t handle;
uint8_t encr_mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_CHANGE_CONN_LINK_KEY 0x0415
struct bt_hci_cmd_change_conn_link_key {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LINK_KEY_SELECTION 0x0417
struct bt_hci_cmd_link_key_selection {
uint8_t key_flag;
} __attribute__ ((packed));
#define BT_HCI_CMD_REMOTE_NAME_REQUEST 0x0419
struct bt_hci_cmd_remote_name_request {
uint8_t bdaddr[6];
uint8_t pscan_rep_mode;
uint8_t pscan_mode;
uint16_t clock_offset;
} __attribute__ ((packed));
#define BT_HCI_CMD_REMOTE_NAME_REQUEST_CANCEL 0x041a
struct bt_hci_cmd_remote_name_request_cancel {
uint8_t bdaddr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_remote_name_request_cancel {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_REMOTE_FEATURES 0x041b
struct bt_hci_cmd_read_remote_features {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_REMOTE_EXT_FEATURES 0x041c
struct bt_hci_cmd_read_remote_ext_features {
uint16_t handle;
uint8_t page;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_REMOTE_VERSION 0x041d
struct bt_hci_cmd_read_remote_version {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_CLOCK_OFFSET 0x041f
struct bt_hci_cmd_read_clock_offset {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LMP_HANDLE 0x0420
struct bt_hci_cmd_read_lmp_handle {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_lmp_handle {
uint8_t status;
uint16_t handle;
uint8_t lmp_handle;
uint32_t reserved;
} __attribute__ ((packed));
#define BT_HCI_CMD_SETUP_SYNC_CONN 0x0428
struct bt_hci_cmd_setup_sync_conn {
uint16_t handle;
uint32_t tx_bandwidth;
uint32_t rx_bandwidth;
uint16_t max_latency;
uint16_t voice_setting;
uint8_t retrans_effort;
uint16_t pkt_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_ACCEPT_SYNC_CONN_REQUEST 0x0429
struct bt_hci_cmd_accept_sync_conn_request {
uint8_t bdaddr[6];
uint32_t tx_bandwidth;
uint32_t rx_bandwidth;
uint16_t max_latency;
uint16_t voice_setting;
uint8_t retrans_effort;
uint16_t pkt_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_REJECT_SYNC_CONN_REQUEST 0x042a
struct bt_hci_cmd_reject_sync_conn_request {
uint8_t bdaddr[6];
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_CMD_IO_CAPABILITY_REQUEST_REPLY 0x042b
struct bt_hci_cmd_io_capability_request_reply {
uint8_t bdaddr[6];
uint8_t capability;
uint8_t oob_data;
uint8_t authentication;
} __attribute__ ((packed));
struct bt_hci_rsp_io_capability_request_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_USER_CONFIRM_REQUEST_REPLY 0x042c
struct bt_hci_cmd_user_confirm_request_reply {
uint8_t bdaddr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_user_confirm_request_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_USER_CONFIRM_REQUEST_NEG_REPLY 0x042d
struct bt_hci_cmd_user_confirm_request_neg_reply {
uint8_t bdaddr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_user_confirm_request_neg_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_USER_PASSKEY_REQUEST_REPLY 0x042e
struct bt_hci_cmd_user_passkey_request_reply {
uint8_t bdaddr[6];
uint32_t passkey;
} __attribute__ ((packed));
#define BT_HCI_CMD_USER_PASSKEY_REQUEST_NEG_REPLY 0x042f
struct bt_hci_cmd_user_passkey_request_neg_reply {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_REMOTE_OOB_DATA_REQUEST_REPLY 0x0430
struct bt_hci_cmd_remote_oob_data_request_reply {
uint8_t bdaddr[6];
uint8_t hash[16];
uint8_t randomizer[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_REMOTE_OOB_DATA_REQUEST_NEG_REPLY 0x0433
struct bt_hci_cmd_remote_oob_data_request_neg_reply {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_IO_CAPABILITY_REQUEST_NEG_REPLY 0x0434
struct bt_hci_cmd_io_capability_request_neg_reply {
uint8_t bdaddr[6];
uint8_t reason;
} __attribute__ ((packed));
struct bt_hci_rsp_io_capability_request_neg_reply {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_CREATE_PHY_LINK 0x0435
struct bt_hci_cmd_create_phy_link {
uint8_t phy_handle;
uint8_t key_len;
uint8_t key_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_ACCEPT_PHY_LINK 0x0436
struct bt_hci_cmd_accept_phy_link {
uint8_t phy_handle;
uint8_t key_len;
uint8_t key_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_DISCONN_PHY_LINK 0x0437
struct bt_hci_cmd_disconn_phy_link {
uint8_t phy_handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_CMD_CREATE_LOGIC_LINK 0x0438
struct bt_hci_cmd_create_logic_link {
uint8_t phy_handle;
uint8_t tx_flow_spec[16];
uint8_t rx_flow_spec[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_ACCEPT_LOGIC_LINK 0x0439
struct bt_hci_cmd_accept_logic_link {
uint8_t phy_handle;
uint8_t tx_flow_spec[16];
uint8_t rx_flow_spec[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_DISCONN_LOGIC_LINK 0x043a
struct bt_hci_cmd_disconn_logic_link {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LOGIC_LINK_CANCEL 0x043b
struct bt_hci_cmd_logic_link_cancel {
uint8_t phy_handle;
uint8_t flow_spec;
} __attribute__ ((packed));
struct bt_hci_rsp_logic_link_cancel {
uint8_t status;
uint8_t phy_handle;
uint8_t flow_spec;
} __attribute__ ((packed));
#define BT_HCI_CMD_FLOW_SPEC_MODIFY 0x043c
struct bt_hci_cmd_flow_spec_modify {
uint16_t handle;
uint8_t tx_flow_spec[16];
uint8_t rx_flow_spec[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_ENHANCED_SETUP_SYNC_CONN 0x043d
struct bt_hci_cmd_enhanced_setup_sync_conn {
uint16_t handle;
uint32_t tx_bandwidth;
uint32_t rx_bandwidth;
uint8_t tx_coding_format[5];
uint8_t rx_coding_format[5];
uint16_t tx_codec_frame_size;
uint16_t rx_codec_frame_size;
uint32_t input_bandwidth;
uint32_t output_bandwidth;
uint8_t input_coding_format[5];
uint8_t output_coding_format[5];
uint16_t input_coded_data_size;
uint16_t output_coded_data_size;
uint8_t input_pcm_data_format;
uint8_t output_pcm_data_format;
uint8_t input_pcm_msb_position;
uint8_t output_pcm_msb_position;
uint8_t input_data_path;
uint8_t output_data_path;
uint8_t input_unit_size;
uint8_t output_unit_size;
uint16_t max_latency;
uint16_t pkt_type;
uint8_t retrans_effort;
} __attribute__ ((packed));
#define BT_HCI_CMD_ENHANCED_ACCEPT_SYNC_CONN_REQUEST 0x043e
struct bt_hci_cmd_enhanced_accept_sync_conn_request {
uint8_t bdaddr[6];
uint32_t tx_bandwidth;
uint32_t rx_bandwidth;
uint8_t tx_coding_format[5];
uint8_t rx_coding_format[5];
uint16_t tx_codec_frame_size;
uint16_t rx_codec_frame_size;
uint32_t input_bandwidth;
uint32_t output_bandwidth;
uint8_t input_coding_format[5];
uint8_t output_coding_format[5];
uint16_t input_coded_data_size;
uint16_t output_coded_data_size;
uint8_t input_pcm_data_format;
uint8_t output_pcm_data_format;
uint8_t input_pcm_msb_position;
uint8_t output_pcm_msb_position;
uint8_t input_data_path;
uint8_t output_data_path;
uint8_t input_unit_size;
uint8_t output_unit_size;
uint16_t max_latency;
uint16_t pkt_type;
uint8_t retrans_effort;
} __attribute__ ((packed));
#define BT_HCI_CMD_TRUNCATED_PAGE 0x043f
struct bt_hci_cmd_truncated_page {
uint8_t bdaddr[6];
uint8_t pscan_rep_mode;
uint16_t clock_offset;
} __attribute__ ((packed));
#define BT_HCI_CMD_TRUNCATED_PAGE_CANCEL 0x0440
struct bt_hci_cmd_truncated_page_cancel {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_PERIPHERAL_BROADCAST 0x0441
struct bt_hci_cmd_set_peripheral_broadcast {
uint8_t enable;
uint8_t lt_addr;
uint8_t lpo_allowed;
uint16_t pkt_type;
uint16_t min_interval;
uint16_t max_interval;
uint16_t timeout;
} __attribute__ ((packed));
struct bt_hci_rsp_set_peripheral_broadcast {
uint8_t status;
uint8_t lt_addr;
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_PERIPHERAL_BROADCAST_RECEIVE 0x0442
struct bt_hci_cmd_set_peripheral_broadcast_receive {
uint8_t enable;
uint8_t bdaddr[6];
uint8_t lt_addr;
uint16_t interval;
uint32_t offset;
uint32_t instant;
uint16_t timeout;
uint8_t accuracy;
uint8_t skip;
uint16_t pkt_type;
uint8_t map[10];
} __attribute__ ((packed));
struct bt_hci_rsp_set_peripheral_broadcast_receive {
uint8_t status;
uint8_t bdaddr[6];
uint8_t lt_addr;
} __attribute__ ((packed));
#define BT_HCI_CMD_START_SYNC_TRAIN 0x0443
#define BT_HCI_CMD_RECEIVE_SYNC_TRAIN 0x0444
struct bt_hci_cmd_receive_sync_train {
uint8_t bdaddr[6];
uint16_t timeout;
uint16_t window;
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_REMOTE_OOB_EXT_DATA_REQUEST_REPLY 0x0445
struct bt_hci_cmd_remote_oob_ext_data_request_reply {
uint8_t bdaddr[6];
uint8_t hash192[16];
uint8_t randomizer192[16];
uint8_t hash256[16];
uint8_t randomizer256[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_HOLD_MODE 0x0801
struct bt_hci_cmd_hold_mode {
uint16_t handle;
uint16_t max_interval;
uint16_t min_interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_SNIFF_MODE 0x0803
struct bt_hci_cmd_sniff_mode {
uint16_t handle;
uint16_t max_interval;
uint16_t min_interval;
uint16_t attempt;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_EXIT_SNIFF_MODE 0x0804
struct bt_hci_cmd_exit_sniff_mode {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_PARK_STATE 0x0805
struct bt_hci_cmd_park_state {
uint16_t handle;
uint16_t max_interval;
uint16_t min_interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_EXIT_PARK_STATE 0x0806
struct bt_hci_cmd_exit_park_state {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_QOS_SETUP 0x0807
struct bt_hci_cmd_qos_setup {
uint16_t handle;
uint8_t flags;
uint8_t service_type;
uint32_t token_rate;
uint32_t peak_bandwidth;
uint32_t latency;
uint32_t delay_variation;
} __attribute__ ((packed));
#define BT_HCI_CMD_ROLE_DISCOVERY 0x0809
struct bt_hci_cmd_role_discovery {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_role_discovery {
uint8_t status;
uint16_t handle;
uint8_t role;
} __attribute__ ((packed));
#define BT_HCI_CMD_SWITCH_ROLE 0x080b
struct bt_hci_cmd_switch_role {
uint8_t bdaddr[6];
uint8_t role;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LINK_POLICY 0x080c
struct bt_hci_cmd_read_link_policy {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_link_policy {
uint8_t status;
uint16_t handle;
uint16_t policy;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_LINK_POLICY 0x080d
struct bt_hci_cmd_write_link_policy {
uint16_t handle;
uint16_t policy;
} __attribute__ ((packed));
struct bt_hci_rsp_write_link_policy {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_DEFAULT_LINK_POLICY 0x080e
struct bt_hci_rsp_read_default_link_policy {
uint8_t status;
uint16_t policy;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_DEFAULT_LINK_POLICY 0x080f
struct bt_hci_cmd_write_default_link_policy {
uint16_t policy;
} __attribute__ ((packed));
#define BT_HCI_CMD_FLOW_SPEC 0x0810
struct bt_hci_cmd_flow_spec {
uint16_t handle;
uint8_t flags;
uint8_t direction;
uint8_t service_type;
uint32_t token_rate;
uint32_t token_bucket_size;
uint32_t peak_bandwidth;
uint32_t access_latency;
} __attribute__ ((packed));
#define BT_HCI_CMD_SNIFF_SUBRATING 0x0811
struct bt_hci_cmd_sniff_subrating {
uint16_t handle;
uint16_t max_latency;
uint16_t min_remote_timeout;
uint16_t min_local_timeout;
} __attribute__ ((packed));
struct bt_hci_rsp_sniff_subrating {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_EVENT_MASK 0x0c01
struct bt_hci_cmd_set_event_mask {
uint8_t mask[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_RESET 0x0c03
#define BT_HCI_CMD_SET_EVENT_FILTER 0x0c05
struct bt_hci_cmd_set_event_filter {
uint8_t type;
uint8_t cond_type;
uint8_t cond[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_FLUSH 0x0c08
struct bt_hci_cmd_flush {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_flush {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_PIN_TYPE 0x0c09
struct bt_hci_rsp_read_pin_type {
uint8_t status;
uint8_t pin_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_PIN_TYPE 0x0c0a
struct bt_hci_cmd_write_pin_type {
uint8_t pin_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_CREATE_NEW_UNIT_KEY 0x0c0b
#define BT_HCI_CMD_READ_STORED_LINK_KEY 0x0c0d
struct bt_hci_cmd_read_stored_link_key {
uint8_t bdaddr[6];
uint8_t read_all;
} __attribute__ ((packed));
struct bt_hci_rsp_read_stored_link_key {
uint8_t status;
uint16_t max_num_keys;
uint16_t num_keys;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_STORED_LINK_KEY 0x0c11
struct bt_hci_cmd_write_stored_link_key {
uint8_t num_keys;
} __attribute__ ((packed));
struct bt_hci_rsp_write_stored_link_key {
uint8_t status;
uint8_t num_keys;
} __attribute__ ((packed));
#define BT_HCI_CMD_DELETE_STORED_LINK_KEY 0x0c12
struct bt_hci_cmd_delete_stored_link_key {
uint8_t bdaddr[6];
uint8_t delete_all;
} __attribute__ ((packed));
struct bt_hci_rsp_delete_stored_link_key {
uint8_t status;
uint16_t num_keys;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_LOCAL_NAME 0x0c13
struct bt_hci_cmd_write_local_name {
uint8_t name[248];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_NAME 0x0c14
struct bt_hci_rsp_read_local_name {
uint8_t status;
uint8_t name[248];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_CONN_ACCEPT_TIMEOUT 0x0c15
struct bt_hci_rsp_read_conn_accept_timeout {
uint8_t status;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_CONN_ACCEPT_TIMEOUT 0x0c16
struct bt_hci_cmd_write_conn_accept_timeout {
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_PAGE_TIMEOUT 0x0c17
struct bt_hci_rsp_read_page_timeout {
uint8_t status;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_PAGE_TIMEOUT 0x0c18
struct bt_hci_cmd_write_page_timeout {
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_SCAN_ENABLE 0x0c19
struct bt_hci_rsp_read_scan_enable {
uint8_t status;
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_SCAN_ENABLE 0x0c1a
struct bt_hci_cmd_write_scan_enable {
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_PAGE_SCAN_ACTIVITY 0x0c1b
struct bt_hci_rsp_read_page_scan_activity {
uint8_t status;
uint16_t interval;
uint16_t window;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_PAGE_SCAN_ACTIVITY 0x0c1c
struct bt_hci_cmd_write_page_scan_activity {
uint16_t interval;
uint16_t window;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_INQUIRY_SCAN_ACTIVITY 0x0c1d
struct bt_hci_rsp_read_inquiry_scan_activity {
uint8_t status;
uint16_t interval;
uint16_t window;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_INQUIRY_SCAN_ACTIVITY 0x0c1e
struct bt_hci_cmd_write_inquiry_scan_activity {
uint16_t interval;
uint16_t window;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_AUTH_ENABLE 0x0c1f
struct bt_hci_rsp_read_auth_enable {
uint8_t status;
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_AUTH_ENABLE 0x0c20
struct bt_hci_cmd_write_auth_enable {
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_ENCRYPT_MODE 0x0c21
struct bt_hci_rsp_read_encrypt_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_ENCRYPT_MODE 0x0c22
struct bt_hci_cmd_write_encrypt_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_CLASS_OF_DEV 0x0c23
struct bt_hci_rsp_read_class_of_dev {
uint8_t status;
uint8_t dev_class[3];
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_CLASS_OF_DEV 0x0c24
struct bt_hci_cmd_write_class_of_dev {
uint8_t dev_class[3];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_VOICE_SETTING 0x0c25
struct bt_hci_rsp_read_voice_setting {
uint8_t status;
uint16_t setting;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_VOICE_SETTING 0x0c26
struct bt_hci_cmd_write_voice_setting {
uint16_t setting;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_AUTO_FLUSH_TIMEOUT 0x0c27
struct bt_hci_cmd_read_auto_flush_timeout {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_auto_flush_timeout {
uint8_t status;
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_AUTO_FLUSH_TIMEOUT 0x0c28
struct bt_hci_cmd_write_auto_flush_timeout {
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
struct bt_hci_rsp_write_auto_flush_timeout {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_NUM_BROADCAST_RETRANS 0x0c29
struct bt_hci_rsp_read_num_broadcast_retrans {
uint8_t status;
uint8_t num_retrans;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_NUM_BROADCAST_RETRANS 0x0c2a
struct bt_hci_cmd_write_num_broadcast_retrans {
uint8_t num_retrans;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_HOLD_MODE_ACTIVITY 0x0c2b
struct bt_hci_rsp_read_hold_mode_activity {
uint8_t status;
uint8_t activity;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_HOLD_MODE_ACTIVITY 0x0c2c
struct bt_hci_cmd_write_hold_mode_activity {
uint8_t activity;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_TX_POWER 0x0c2d
struct bt_hci_cmd_read_tx_power {
uint16_t handle;
uint8_t type;
} __attribute__ ((packed));
struct bt_hci_rsp_read_tx_power {
uint8_t status;
uint16_t handle;
int8_t level;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_SYNC_FLOW_CONTROL 0x0c2e
struct bt_hci_rsp_read_sync_flow_control {
uint8_t status;
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_SYNC_FLOW_CONTROL 0x0c2f
struct bt_hci_cmd_write_sync_flow_control {
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_HOST_FLOW_CONTROL 0x0c31
struct bt_hci_cmd_set_host_flow_control {
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_HOST_BUFFER_SIZE 0x0c33
struct bt_hci_cmd_host_buffer_size {
uint16_t acl_mtu;
uint8_t sco_mtu;
uint16_t acl_max_pkt;
uint16_t sco_max_pkt;
} __attribute__ ((packed));
#define BT_HCI_CMD_HOST_NUM_COMPLETED_PACKETS 0x0c35
struct bt_hci_cmd_host_num_completed_packets {
uint8_t num_handles;
uint16_t handle;
uint16_t count;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LINK_SUPV_TIMEOUT 0x0c36
struct bt_hci_cmd_read_link_supv_timeout {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_link_supv_timeout {
uint8_t status;
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_LINK_SUPV_TIMEOUT 0x0c37
struct bt_hci_cmd_write_link_supv_timeout {
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
struct bt_hci_rsp_write_link_supv_timeout {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_NUM_SUPPORTED_IAC 0x0c38
struct bt_hci_rsp_read_num_supported_iac {
uint8_t status;
uint8_t num_iac;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_CURRENT_IAC_LAP 0x0c39
struct bt_hci_rsp_read_current_iac_lap {
uint8_t status;
uint8_t num_iac;
uint8_t iac_lap[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_CURRENT_IAC_LAP 0x0c3a
struct bt_hci_cmd_write_current_iac_lap {
uint8_t num_iac;
uint8_t iac_lap[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_PAGE_SCAN_PERIOD_MODE 0x0c3b
struct bt_hci_rsp_read_page_scan_period_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_PAGE_SCAN_PERIOD_MODE 0x0c3c
struct bt_hci_cmd_write_page_scan_period_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_PAGE_SCAN_MODE 0x0c3d
struct bt_hci_rsp_read_page_scan_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_PAGE_SCAN_MODE 0x0c3e
struct bt_hci_cmd_write_page_scan_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_AFH_HOST_CLASSIFICATION 0x0c3f
struct bt_hci_cmd_set_afh_host_classification {
uint8_t map[10];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_INQUIRY_SCAN_TYPE 0x0c42
struct bt_hci_rsp_read_inquiry_scan_type {
uint8_t status;
uint8_t type;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_INQUIRY_SCAN_TYPE 0x0c43
struct bt_hci_cmd_write_inquiry_scan_type {
uint8_t type;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_INQUIRY_MODE 0x0c44
struct bt_hci_rsp_read_inquiry_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_INQUIRY_MODE 0x0c45
struct bt_hci_cmd_write_inquiry_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_PAGE_SCAN_TYPE 0x0c46
struct bt_hci_rsp_read_page_scan_type {
uint8_t status;
uint8_t type;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_PAGE_SCAN_TYPE 0x0c47
struct bt_hci_cmd_write_page_scan_type {
uint8_t type;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_AFH_ASSESSMENT_MODE 0x0c48
struct bt_hci_rsp_read_afh_assessment_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_AFH_ASSESSMENT_MODE 0x0c49
struct bt_hci_cmd_write_afh_assessment_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_EXT_INQUIRY_RESPONSE 0x0c51
struct bt_hci_rsp_read_ext_inquiry_response {
uint8_t status;
uint8_t fec;
uint8_t data[240];
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_EXT_INQUIRY_RESPONSE 0x0c52
struct bt_hci_cmd_write_ext_inquiry_response {
uint8_t fec;
uint8_t data[240];
} __attribute__ ((packed));
#define BT_HCI_CMD_REFRESH_ENCRYPT_KEY 0x0c53
struct bt_hci_cmd_refresh_encrypt_key {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_SIMPLE_PAIRING_MODE 0x0c55
struct bt_hci_rsp_read_simple_pairing_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_SIMPLE_PAIRING_MODE 0x0c56
struct bt_hci_cmd_write_simple_pairing_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_OOB_DATA 0x0c57
struct bt_hci_rsp_read_local_oob_data {
uint8_t status;
uint8_t hash[16];
uint8_t randomizer[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_INQUIRY_RESP_TX_POWER 0x0c58
struct bt_hci_rsp_read_inquiry_resp_tx_power {
uint8_t status;
int8_t level;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_INQUIRY_TX_POWER 0x0c59
struct bt_hci_cmd_write_inquiry_tx_power {
int8_t level;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_ERRONEOUS_REPORTING 0x0c5a
struct bt_hci_rsp_read_erroneous_reporting {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_ERRONEOUS_REPORTING 0x0c5b
struct bt_hci_cmd_write_erroneous_reporting {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_ENHANCED_FLUSH 0x0c5f
struct bt_hci_cmd_enhanced_flush {
uint16_t handle;
uint8_t type;
} __attribute__ ((packed));
#define BT_HCI_CMD_SEND_KEYPRESS_NOTIFY 0x0c60
struct bt_hci_cmd_send_keypress_notify {
uint8_t bdaddr[6];
uint8_t type;
} __attribute__ ((packed));
struct bt_hci_rsp_send_keypress_notify {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_EVENT_MASK_PAGE2 0x0c63
struct bt_hci_cmd_set_event_mask_page2 {
uint8_t mask[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCATION_DATA 0x0c64
struct bt_hci_rsp_read_location_data {
uint8_t status;
uint8_t domain_aware;
uint8_t domain[2];
uint8_t domain_options;
uint8_t options;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_LOCATION_DATA 0x0c65
struct bt_hci_cmd_write_location_data {
uint8_t domain_aware;
uint8_t domain[2];
uint8_t domain_options;
uint8_t options;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_FLOW_CONTROL_MODE 0x0c66
struct bt_hci_rsp_read_flow_control_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_FLOW_CONTROL_MODE 0x0c67
struct bt_hci_cmd_write_flow_control_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_ENHANCED_TX_POWER 0x0c68
struct bt_hci_cmd_read_enhanced_tx_power {
uint16_t handle;
uint8_t type;
} __attribute__ ((packed));
struct bt_hci_rsp_read_enhanced_tx_power {
uint8_t status;
uint16_t handle;
int8_t level_gfsk;
int8_t level_dqpsk;
int8_t level_8dpsk;
} __attribute__ ((packed));
#define BT_HCI_CMD_SHORT_RANGE_MODE 0x0c6b
struct bt_hci_cmd_short_range_mode {
uint8_t phy_handle;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LE_HOST_SUPPORTED 0x0c6c
struct bt_hci_rsp_read_le_host_supported {
uint8_t status;
uint8_t supported;
uint8_t simultaneous;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_LE_HOST_SUPPORTED 0x0c6d
struct bt_hci_cmd_write_le_host_supported {
uint8_t supported;
uint8_t simultaneous;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_RESERVED_LT_ADDR 0x0c74
struct bt_hci_cmd_set_reserved_lt_addr {
uint8_t lt_addr;
} __attribute__ ((packed));
struct bt_hci_rsp_set_reserved_lt_addr {
uint8_t status;
uint8_t lt_addr;
} __attribute__ ((packed));
#define BT_HCI_CMD_DELETE_RESERVED_LT_ADDR 0x0c75
struct bt_hci_cmd_delete_reserved_lt_addr {
uint8_t lt_addr;
} __attribute__ ((packed));
struct bt_hci_rsp_delete_reserved_lt_addr {
uint8_t status;
uint8_t lt_addr;
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_PERIPHERAL_BROADCAST_DATA 0x0c76
struct bt_hci_cmd_set_peripheral_broadcast_data {
uint8_t lt_addr;
uint8_t fragment;
uint8_t length;
} __attribute__ ((packed));
struct bt_hci_rsp_set_peripheral_broadcast_data {
uint8_t status;
uint8_t lt_addr;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_SYNC_TRAIN_PARAMS 0x0c77
struct bt_hci_rsp_read_sync_train_params {
uint8_t status;
uint16_t interval;
uint32_t timeout;
uint8_t service_data;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_SYNC_TRAIN_PARAMS 0x0c78
struct bt_hci_cmd_write_sync_train_params {
uint16_t min_interval;
uint16_t max_interval;
uint32_t timeout;
uint8_t service_data;
} __attribute__ ((packed));
struct bt_hci_rsp_write_sync_train_params {
uint8_t status;
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_SECURE_CONN_SUPPORT 0x0c79
struct bt_hci_rsp_read_secure_conn_support {
uint8_t status;
uint8_t support;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_SECURE_CONN_SUPPORT 0x0c7a
struct bt_hci_cmd_write_secure_conn_support {
uint8_t support;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_AUTH_PAYLOAD_TIMEOUT 0x0c7b
struct bt_hci_cmd_read_auth_payload_timeout {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_auth_payload_timeout {
uint8_t status;
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_AUTH_PAYLOAD_TIMEOUT 0x0c7c
struct bt_hci_cmd_write_auth_payload_timeout {
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
struct bt_hci_rsp_write_auth_payload_timeout {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_OOB_EXT_DATA 0x0c7d
struct bt_hci_rsp_read_local_oob_ext_data {
uint8_t status;
uint8_t hash192[16];
uint8_t randomizer192[16];
uint8_t hash256[16];
uint8_t randomizer256[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_EXT_PAGE_TIMEOUT 0x0c7e
struct bt_hci_rsp_read_ext_page_timeout {
uint8_t status;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_EXT_PAGE_TIMEOUT 0x0c7f
struct bt_hci_cmd_write_ext_page_timeout {
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_EXT_INQUIRY_LENGTH 0x0c80
struct bt_hci_rsp_read_ext_inquiry_length {
uint8_t status;
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_EXT_INQUIRY_LENGTH 0x0c81
struct bt_hci_cmd_write_ext_inquiry_length {
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_CMD_CONFIG_DATA_PATH 0x0c83
#define BT_HCI_BIT_CONFIG_DATA_PATH BT_HCI_CMD_BIT(45, 5)
struct bt_hci_cmd_config_data_path {
uint8_t dir;
uint8_t id;
uint8_t vnd_config_len;
uint8_t vnd_config[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_VERSION 0x1001
struct bt_hci_rsp_read_local_version {
uint8_t status;
uint8_t hci_ver;
uint16_t hci_rev;
uint8_t lmp_ver;
uint16_t manufacturer;
uint16_t lmp_subver;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_COMMANDS 0x1002
struct bt_hci_rsp_read_local_commands {
uint8_t status;
uint8_t commands[64];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_FEATURES 0x1003
struct bt_hci_rsp_read_local_features {
uint8_t status;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_EXT_FEATURES 0x1004
struct bt_hci_cmd_read_local_ext_features {
uint8_t page;
} __attribute__ ((packed));
struct bt_hci_rsp_read_local_ext_features {
uint8_t status;
uint8_t page;
uint8_t max_page;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_BUFFER_SIZE 0x1005
struct bt_hci_rsp_read_buffer_size {
uint8_t status;
uint16_t acl_mtu;
uint8_t sco_mtu;
uint16_t acl_max_pkt;
uint16_t sco_max_pkt;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_COUNTRY_CODE 0x1007
struct bt_hci_rsp_read_country_code {
uint8_t status;
uint8_t code;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_BD_ADDR 0x1009
struct bt_hci_rsp_read_bd_addr {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_DATA_BLOCK_SIZE 0x100a
struct bt_hci_rsp_read_data_block_size {
uint8_t status;
uint16_t max_acl_len;
uint16_t block_len;
uint16_t num_blocks;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_CODECS 0x100b
struct bt_hci_rsp_read_local_codecs {
uint8_t status;
uint8_t num_codecs;
uint8_t codec[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_PAIRING_OPTIONS 0x100c
struct bt_hci_rsp_read_local_pairing_options {
uint8_t status;
uint8_t pairing_options;
uint8_t max_key_size;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_CODECS_V2 0x100d
#define BT_HCI_BIT_READ_LOCAL_CODECS_V2 BT_HCI_CMD_BIT(45, 2)
#define BT_HCI_LOCAL_CODEC_BREDR_ACL BIT(0)
#define BT_HCI_LOCAL_CODEC_BREDR_SCO BIT(1)
#define BT_HCI_LOCAL_CODEC_LE_CIS BIT(2)
#define BT_HCI_LOCAL_CODEC_LE_BIS BIT(3)
struct bt_hci_vnd_codec_v2 {
uint16_t cid;
uint16_t vid;
uint8_t transport;
} __attribute__ ((packed));
struct bt_hci_vnd_codec {
uint8_t id;
uint16_t cid;
uint16_t vid;
uint8_t transport;
} __attribute__ ((packed));
struct bt_hci_codec {
uint8_t id;
uint8_t transport;
} __attribute__ ((packed));
struct bt_hci_rsp_read_local_codecs_v2 {
uint8_t status;
uint8_t num_codecs;
struct bt_hci_codec codec[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_CODEC_CAPS 0x100e
#define BT_HCI_BIT_READ_LOCAL_CODEC_CAPS BT_HCI_CMD_BIT(45, 3)
struct bt_hci_cmd_read_local_codec_caps {
struct bt_hci_vnd_codec codec;
uint8_t dir;
} __attribute__ ((packed));
struct bt_hci_codec_caps {
uint8_t len;
uint8_t data[0];
} __attribute__ ((packed));
struct bt_hci_rsp_read_local_codec_caps {
uint8_t status;
uint8_t num;
struct bt_hci_codec_caps caps[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_CTRL_DELAY 0x100f
#define BT_HCI_BIT_READ_LOCAL_CTRL_DELAY BT_HCI_CMD_BIT(45, 4)
struct bt_hci_cmd_read_local_ctrl_delay {
struct bt_hci_vnd_codec codec;
uint8_t dir;
uint8_t codec_cfg_len;
uint8_t codec_cfg[0];
} __attribute__ ((packed));
struct bt_hci_rsp_read_local_ctrl_delay {
uint8_t status;
uint8_t min_delay[3];
uint8_t max_delay[3];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_FAILED_CONTACT_COUNTER 0x1401
struct bt_hci_cmd_read_failed_contact_counter {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_failed_contact_counter {
uint8_t status;
uint16_t handle;
uint16_t counter;
} __attribute__ ((packed));
#define BT_HCI_CMD_RESET_FAILED_CONTACT_COUNTER 0x1402
struct bt_hci_cmd_reset_failed_contact_counter {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_reset_failed_contact_counter {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LINK_QUALITY 0x1403
struct bt_hci_cmd_read_link_quality {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_link_quality {
uint8_t status;
uint16_t handle;
uint8_t link_quality;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_RSSI 0x1405
struct bt_hci_cmd_read_rssi {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_rssi {
uint8_t status;
uint16_t handle;
int8_t rssi;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_AFH_CHANNEL_MAP 0x1406
struct bt_hci_cmd_read_afh_channel_map {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_afh_channel_map {
uint8_t status;
uint16_t handle;
uint8_t mode;
uint8_t map[10];
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_CLOCK 0x1407
struct bt_hci_cmd_read_clock {
uint16_t handle;
uint8_t type;
} __attribute__ ((packed));
struct bt_hci_rsp_read_clock {
uint8_t status;
uint16_t handle;
uint32_t clock;
uint16_t accuracy;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_ENCRYPT_KEY_SIZE 0x1408
struct bt_hci_cmd_read_encrypt_key_size {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_read_encrypt_key_size {
uint8_t status;
uint16_t handle;
uint8_t key_size;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_AMP_INFO 0x1409
struct bt_hci_rsp_read_local_amp_info {
uint8_t status;
uint8_t amp_status;
uint32_t total_bw;
uint32_t max_bw;
uint32_t min_latency;
uint32_t max_pdu;
uint8_t amp_type;
uint16_t pal_cap;
uint16_t max_assoc_len;
uint32_t max_flush_to;
uint32_t be_flush_to;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOCAL_AMP_ASSOC 0x140a
struct bt_hci_cmd_read_local_amp_assoc {
uint8_t phy_handle;
uint16_t len_so_far;
uint16_t max_assoc_len;
} __attribute__ ((packed));
struct bt_hci_rsp_read_local_amp_assoc {
uint8_t status;
uint8_t phy_handle;
uint16_t remain_assoc_len;
uint8_t assoc_fragment[248];
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_REMOTE_AMP_ASSOC 0x140b
struct bt_hci_cmd_write_remote_amp_assoc {
uint8_t phy_handle;
uint16_t len_so_far;
uint16_t remain_assoc_len;
uint8_t assoc_fragment[248];
} __attribute__ ((packed));
struct bt_hci_rsp_write_remote_amp_assoc {
uint8_t status;
uint8_t phy_handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_GET_MWS_TRANSPORT_CONFIG 0x140c
struct bt_hci_rsp_get_mws_transport_config {
uint8_t status;
uint8_t num_transports;
uint8_t transport[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_TRIGGERED_CLOCK_CAPTURE 0x140d
struct bt_hci_cmd_set_triggered_clock_capture {
uint16_t handle;
uint8_t enable;
uint8_t type;
uint8_t lpo_allowed;
uint8_t num_filter;
} __attribute__ ((packed));
#define BT_HCI_CMD_READ_LOOPBACK_MODE 0x1801
struct bt_hci_rsp_read_loopback_mode {
uint8_t status;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_WRITE_LOOPBACK_MODE 0x1802
struct bt_hci_cmd_write_loopback_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_ENABLE_DUT_MODE 0x1803
#define BT_HCI_CMD_WRITE_SSP_DEBUG_MODE 0x1804
struct bt_hci_cmd_write_ssp_debug_mode {
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EVENT_MASK 0x2001
struct bt_hci_cmd_le_set_event_mask {
uint8_t mask[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_BUFFER_SIZE 0x2002
struct bt_hci_rsp_le_read_buffer_size {
uint8_t status;
uint16_t le_mtu;
uint8_t le_max_pkt;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_LOCAL_FEATURES 0x2003
struct bt_hci_rsp_le_read_local_features {
uint8_t status;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_RANDOM_ADDRESS 0x2005
struct bt_hci_cmd_le_set_random_address {
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_ADV_PARAMETERS 0x2006
struct bt_hci_cmd_le_set_adv_parameters {
uint16_t min_interval;
uint16_t max_interval;
uint8_t type;
uint8_t own_addr_type;
uint8_t direct_addr_type;
uint8_t direct_addr[6];
uint8_t channel_map;
uint8_t filter_policy;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_ADV_TX_POWER 0x2007
struct bt_hci_rsp_le_read_adv_tx_power {
uint8_t status;
int8_t level;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_ADV_DATA 0x2008
struct bt_hci_cmd_le_set_adv_data {
uint8_t len;
uint8_t data[31];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_SCAN_RSP_DATA 0x2009
struct bt_hci_cmd_le_set_scan_rsp_data {
uint8_t len;
uint8_t data[31];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_ADV_ENABLE 0x200a
struct bt_hci_cmd_le_set_adv_enable {
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_SCAN_PARAMETERS 0x200b
struct bt_hci_cmd_le_set_scan_parameters {
uint8_t type;
uint16_t interval;
uint16_t window;
uint8_t own_addr_type;
uint8_t filter_policy;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_SCAN_ENABLE 0x200c
struct bt_hci_cmd_le_set_scan_enable {
uint8_t enable;
uint8_t filter_dup;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CREATE_CONN 0x200d
struct bt_hci_cmd_le_create_conn {
uint16_t scan_interval;
uint16_t scan_window;
uint8_t filter_policy;
uint8_t peer_addr_type;
uint8_t peer_addr[6];
uint8_t own_addr_type;
uint16_t min_interval;
uint16_t max_interval;
uint16_t latency;
uint16_t supv_timeout;
uint16_t min_length;
uint16_t max_length;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CREATE_CONN_CANCEL 0x200e
#define BT_HCI_CMD_LE_READ_ACCEPT_LIST_SIZE 0x200f
struct bt_hci_rsp_le_read_accept_list_size {
uint8_t status;
uint8_t size;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CLEAR_ACCEPT_LIST 0x2010
#define BT_HCI_CMD_LE_ADD_TO_ACCEPT_LIST 0x2011
struct bt_hci_cmd_le_add_to_accept_list {
uint8_t addr_type;
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REMOVE_FROM_ACCEPT_LIST 0x2012
struct bt_hci_cmd_le_remove_from_accept_list {
uint8_t addr_type;
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CONN_UPDATE 0x2013
struct bt_hci_cmd_le_conn_update {
uint16_t handle;
uint16_t min_interval;
uint16_t max_interval;
uint16_t latency;
uint16_t supv_timeout;
uint16_t min_length;
uint16_t max_length;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_HOST_CLASSIFICATION 0x2014
struct bt_hci_cmd_le_set_host_classification {
uint8_t map[5];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_CHANNEL_MAP 0x2015
struct bt_hci_cmd_le_read_channel_map {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_le_read_channel_map {
uint8_t status;
uint16_t handle;
uint8_t map[5];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_REMOTE_FEATURES 0x2016
struct bt_hci_cmd_le_read_remote_features {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_ENCRYPT 0x2017
struct bt_hci_cmd_le_encrypt {
uint8_t key[16];
uint8_t plaintext[16];
} __attribute__ ((packed));
struct bt_hci_rsp_le_encrypt {
uint8_t status;
uint8_t data[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_RAND 0x2018
struct bt_hci_rsp_le_rand {
uint8_t status;
uint64_t number;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_START_ENCRYPT 0x2019
struct bt_hci_cmd_le_start_encrypt {
uint16_t handle;
uint64_t rand;
uint16_t ediv;
uint8_t ltk[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_LTK_REQ_REPLY 0x201a
struct bt_hci_cmd_le_ltk_req_reply {
uint16_t handle;
uint8_t ltk[16];
} __attribute__ ((packed));
struct bt_hci_rsp_le_ltk_req_reply {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_LTK_REQ_NEG_REPLY 0x201b
struct bt_hci_cmd_le_ltk_req_neg_reply {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_le_ltk_req_neg_reply {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_SUPPORTED_STATES 0x201c
struct bt_hci_rsp_le_read_supported_states {
uint8_t status;
uint8_t states[8];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_RECEIVER_TEST 0x201d
struct bt_hci_cmd_le_receiver_test {
uint8_t frequency;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_TRANSMITTER_TEST 0x201e
struct bt_hci_cmd_le_transmitter_test {
uint8_t frequency;
uint8_t data_len;
uint8_t payload;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_TEST_END 0x201f
struct bt_hci_rsp_le_test_end {
uint8_t status;
uint16_t num_packets;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CONN_PARAM_REQ_REPLY 0x2020
struct bt_hci_cmd_le_conn_param_req_reply {
uint16_t handle;
uint16_t min_interval;
uint16_t max_interval;
uint16_t latency;
uint16_t supv_timeout;
uint16_t min_length;
uint16_t max_length;
} __attribute__ ((packed));
struct bt_hci_rsp_le_conn_param_req_reply {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CONN_PARAM_REQ_NEG_REPLY 0x2021
struct bt_hci_cmd_le_conn_param_req_neg_reply {
uint16_t handle;
uint8_t reason;
} __attribute__ ((packed));
struct bt_hci_rsp_le_conn_param_req_neg_reply {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_DATA_LENGTH 0x2022
struct bt_hci_cmd_le_set_data_length {
uint16_t handle;
uint16_t tx_len;
uint16_t tx_time;
} __attribute__ ((packed));
struct bt_hci_rsp_le_set_data_length {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_DEFAULT_DATA_LENGTH 0x2023
struct bt_hci_rsp_le_read_default_data_length {
uint8_t status;
uint16_t tx_len;
uint16_t tx_time;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_WRITE_DEFAULT_DATA_LENGTH 0x2024
struct bt_hci_cmd_le_write_default_data_length {
uint16_t tx_len;
uint16_t tx_time;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_LOCAL_PK256 0x2025
#define BT_HCI_CMD_LE_GENERATE_DHKEY 0x2026
struct bt_hci_cmd_le_generate_dhkey {
uint8_t remote_pk256[64];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_ADD_TO_RESOLV_LIST 0x2027
struct bt_hci_cmd_le_add_to_resolv_list {
uint8_t addr_type;
uint8_t addr[6];
uint8_t peer_irk[16];
uint8_t local_irk[16];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REMOVE_FROM_RESOLV_LIST 0x2028
struct bt_hci_cmd_le_remove_from_resolv_list {
uint8_t addr_type;
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CLEAR_RESOLV_LIST 0x2029
#define BT_HCI_CMD_LE_READ_RESOLV_LIST_SIZE 0x202a
struct bt_hci_rsp_le_read_resolv_list_size {
uint8_t status;
uint8_t size;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_PEER_RESOLV_ADDR 0x202b
struct bt_hci_cmd_le_read_peer_resolv_addr {
uint8_t addr_type;
uint8_t addr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_le_read_peer_resolv_addr {
uint8_t status;
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_LOCAL_RESOLV_ADDR 0x202c
struct bt_hci_cmd_le_read_local_resolv_addr {
uint8_t addr_type;
uint8_t addr[6];
} __attribute__ ((packed));
struct bt_hci_rsp_le_read_local_resolv_addr {
uint8_t status;
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_RESOLV_ENABLE 0x202d
struct bt_hci_cmd_le_set_resolv_enable {
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_RESOLV_TIMEOUT 0x202e
struct bt_hci_cmd_le_set_resolv_timeout {
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_MAX_DATA_LENGTH 0x202f
struct bt_hci_rsp_le_read_max_data_length {
uint8_t status;
uint16_t max_tx_len;
uint16_t max_tx_time;
uint16_t max_rx_len;
uint16_t max_rx_time;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_PHY 0x2030
struct bt_hci_cmd_le_read_phy {
uint16_t handle;
} __attribute__((packed));
struct bt_hci_rsp_le_read_phy {
uint8_t status;
uint16_t handle;
uint8_t tx_phy;
uint8_t rx_phy;
} __attribute__((packed));
#define BT_HCI_CMD_LE_SET_DEFAULT_PHY 0x2031
struct bt_hci_cmd_le_set_default_phy {
uint8_t all_phys;
uint8_t tx_phys;
uint8_t rx_phys;
} __attribute__((packed));
#define BT_HCI_CMD_LE_SET_PHY 0x2032
struct bt_hci_cmd_le_set_phy {
uint16_t handle;
uint8_t all_phys;
uint8_t tx_phys;
uint8_t rx_phys;
uint16_t phy_opts;
} __attribute__((packed));
#define BT_HCI_CMD_LE_ENHANCED_RECEIVER_TEST 0x2033
struct bt_hci_cmd_le_enhanced_receiver_test {
uint8_t rx_channel;
uint8_t phy;
uint8_t modulation_index;
} __attribute__((packed));
#define BT_HCI_CMD_LE_ENHANCED_TRANSMITTER_TEST 0x2034
struct bt_hci_cmd_le_enhanced_transmitter_test {
uint8_t tx_channel;
uint8_t data_len;
uint8_t payload;
uint8_t phy;
} __attribute__((packed));
#define BT_HCI_CMD_LE_SET_ADV_SET_RAND_ADDR 0x2035
struct bt_hci_cmd_le_set_adv_set_rand_addr {
uint8_t handle;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EXT_ADV_PARAMS 0x2036
struct bt_hci_cmd_le_set_ext_adv_params {
uint8_t handle;
uint16_t evt_properties;
uint8_t min_interval[3];
uint8_t max_interval[3];
uint8_t channel_map;
uint8_t own_addr_type;
uint8_t peer_addr_type;
uint8_t peer_addr[6];
uint8_t filter_policy;
uint8_t tx_power;
uint8_t primary_phy;
uint8_t secondary_max_skip;
uint8_t secondary_phy;
uint8_t sid;
uint8_t notif_enable;
} __attribute__ ((packed));
struct bt_hci_rsp_le_set_ext_adv_params {
uint8_t status;
uint8_t tx_power;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EXT_ADV_DATA 0x2037
struct bt_hci_cmd_le_set_ext_adv_data {
uint8_t handle;
uint8_t operation;
uint8_t fragment_preference;
uint8_t data_len;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EXT_SCAN_RSP_DATA 0x2038
struct bt_hci_cmd_le_set_ext_scan_rsp_data {
uint8_t handle;
uint8_t operation;
uint8_t fragment_preference;
uint8_t data_len;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EXT_ADV_ENABLE 0x2039
struct bt_hci_cmd_le_set_ext_adv_enable {
uint8_t enable;
uint8_t num_of_sets;
} __attribute__ ((packed));
struct bt_hci_cmd_ext_adv_set {
uint8_t handle;
uint16_t duration;
uint8_t max_events;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_MAX_ADV_DATA_LEN 0x203a
struct bt_hci_rsp_le_read_max_adv_data_len {
uint8_t status;
uint16_t max_len;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_NUM_SUPPORTED_ADV_SETS 0x203b
struct bt_hci_rsp_le_read_num_supported_adv_sets {
uint8_t status;
uint8_t num_of_sets;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REMOVE_ADV_SET 0x203c
struct bt_hci_cmd_le_remove_adv_set {
uint8_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CLEAR_ADV_SETS 0x203d
#define BT_HCI_CMD_LE_SET_PA_PARAMS 0x203e
struct bt_hci_cmd_le_set_pa_params {
uint8_t handle;
uint16_t min_interval;
uint16_t max_interval;
uint16_t properties;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_PA_DATA 0x203f
struct bt_hci_cmd_le_set_pa_data {
uint8_t handle;
uint8_t operation;
uint8_t data_len;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_PA_ENABLE 0x2040
struct bt_hci_cmd_le_set_pa_enable {
uint8_t enable;
uint8_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EXT_SCAN_PARAMS 0x2041
struct bt_hci_cmd_le_set_ext_scan_params {
uint8_t own_addr_type;
uint8_t filter_policy;
uint8_t num_phys;
uint8_t data[0];
} __attribute__ ((packed));
struct bt_hci_le_scan_phy {
uint8_t type;
uint16_t interval;
uint16_t window;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_EXT_SCAN_ENABLE 0x2042
struct bt_hci_cmd_le_set_ext_scan_enable {
uint8_t enable;
uint8_t filter_dup;
uint16_t duration;
uint16_t period;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_EXT_CREATE_CONN 0x2043
struct bt_hci_cmd_le_ext_create_conn {
uint8_t filter_policy;
uint8_t own_addr_type;
uint8_t peer_addr_type;
uint8_t peer_addr[6];
uint8_t phys;
uint8_t data[0];
} __attribute__ ((packed));
struct bt_hci_le_ext_create_conn {
uint16_t scan_interval;
uint16_t scan_window;
uint16_t min_interval;
uint16_t max_interval;
uint16_t latency;
uint16_t supv_timeout;
uint16_t min_length;
uint16_t max_length;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_PA_CREATE_SYNC 0x2044
struct bt_hci_cmd_le_pa_create_sync {
uint8_t options;
uint8_t sid;
uint8_t addr_type;
uint8_t addr[6];
uint16_t skip;
uint16_t sync_timeout;
uint8_t sync_cte_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_PA_CREATE_SYNC_CANCEL 0x2045
#define BT_HCI_CMD_LE_PA_TERM_SYNC 0x2046
struct bt_hci_cmd_le_pa_term_sync {
uint16_t sync_handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_ADD_DEV_PA_LIST 0x2047
struct bt_hci_cmd_le_add_dev_pa_list {
uint8_t addr_type;
uint8_t addr[6];
uint8_t sid;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REMOVE_DEV_PA_LIST 0x2048
struct bt_hci_cmd_le_remove_dev_pa_list {
uint8_t addr_type;
uint8_t addr[6];
uint8_t sid;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CLEAR_PA_LIST 0x2049
#define BT_HCI_CMD_LE_READ_PA_LIST_SIZE 0x204a
struct bt_hci_rsp_le_read_dev_pa_list_size {
uint8_t status;
uint8_t list_size;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_TX_POWER 0x204b
struct bt_hci_rsp_le_read_tx_power {
uint8_t status;
int8_t min_tx_power;
int8_t max_tx_power;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_RF_PATH_COMPENSATION 0x204c
struct bt_hci_rsp_le_read_rf_path_comp {
uint8_t status;
uint16_t rf_tx_path_comp;
uint16_t rf_rx_path_comp;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_WRITE_RF_PATH_COMPENSATION 0x204d
struct bt_hci_cmd_le_write_rf_path_comp {
uint16_t rf_tx_path_comp;
uint16_t rf_rx_path_comp;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_PRIV_MODE 0x204e
struct bt_hci_cmd_le_set_priv_mode {
uint8_t peer_id_addr_type;
uint8_t peer_id_addr[6];
uint8_t priv_mode;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_RECEIVER_TEST_V3 0x204f
struct bt_hci_cmd_le_receiver_test_v3 {
uint8_t rx_chan;
uint8_t phy;
uint8_t mod_index;
uint8_t cte_len;
uint8_t cte_type;
uint8_t duration;
uint8_t num_antenna_id;
uint8_t antenna_ids[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_TX_TEST_V3 0x2050
struct bt_hci_cmd_le_tx_test_v3 {
uint8_t chan;
uint8_t data_len;
uint8_t payload;
uint8_t phy;
uint8_t cte_len;
uint8_t cte_type;
uint8_t duration;
uint8_t num_antenna_id;
uint8_t antenna_ids[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_SET_PA_REC_ENABLE 0x2059
struct bt_hci_cmd_set_pa_rec_enable {
uint16_t sync_handle;
uint8_t enable;
} __attribute__ ((packed));
#define BT_HCI_CMD_PERIODIC_SYNC_TRANS 0x205a
struct bt_hci_cmd_periodic_sync_trans {
uint16_t handle;
uint16_t service_data;
uint16_t sync_handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_PA_SET_INFO_TRANS 0x205b
struct bt_hci_cmd_pa_set_info_trans {
uint16_t handle;
uint16_t service_data;
uint8_t adv_handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_PA_SYNC_TRANS_PARAMS 0x205c
struct bt_hci_cmd_pa_sync_trans_params {
uint16_t handle;
uint8_t mode;
uint16_t skip;
uint16_t sync_timeout;
uint8_t cte_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_DEFAULT_PA_SYNC_TRANS_PARAMS 0x205d
struct bt_hci_cmd_default_pa_sync_trans_params {
uint8_t mode;
uint16_t skip;
uint16_t sync_timeout;
uint8_t cte_type;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_BUFFER_SIZE_V2 0x2060
#define BT_HCI_BIT_LE_READ_BUFFER_SIZE_V2 BT_HCI_CMD_BIT(41, 5)
struct bt_hci_rsp_le_read_buffer_size_v2 {
uint8_t status;
uint16_t acl_mtu;
uint8_t acl_max_pkt;
uint16_t iso_mtu;
uint8_t iso_max_pkt;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_ISO_TX_SYNC 0x2061
#define BT_HCI_BIT_LE_READ_ISO_TX_SYNC BT_HCI_CMD_BIT(41, 6)
struct bt_hci_cmd_le_read_iso_tx_sync {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_le_read_iso_tx_sync {
uint8_t status;
uint16_t handle;
uint16_t seq;
uint32_t timestamp;
uint8_t offset[3];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_CIG_PARAMS 0x2062
#define BT_HCI_BIT_LE_SET_CIG_PARAMS BT_HCI_CMD_BIT(41, 7)
struct bt_hci_cis_params {
uint8_t cis_id;
uint16_t c_sdu;
uint16_t p_sdu;
uint8_t c_phy;
uint8_t p_phy;
uint8_t c_rtn;
uint8_t p_rtn;
} __attribute__ ((packed));
struct bt_hci_cmd_le_set_cig_params {
uint8_t cig_id;
uint8_t c_interval[3];
uint8_t p_interval[3];
uint8_t sca;
uint8_t packing;
uint8_t framing;
uint16_t c_latency;
uint16_t p_latency;
uint8_t num_cis;
struct bt_hci_cis_params cis[0];
} __attribute__ ((packed));
struct bt_hci_rsp_le_set_cig_params {
uint8_t status;
uint8_t cig_id;
uint8_t num_handles;
uint16_t handle[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SET_CIG_PARAMS_TEST 0x2063
#define BT_HCI_BIT_LE_SET_CIG_PARAMS_TEST BT_HCI_CMD_BIT(42, 0)
struct bt_hci_cis_params_test {
uint8_t cis_id;
uint8_t nse;
uint16_t c_sdu;
uint16_t p_sdu;
uint16_t c_pdu;
uint16_t p_pdu;
uint8_t c_phy;
uint8_t p_phy;
uint8_t c_bn;
uint8_t p_bn;
} __attribute__ ((packed));
struct bt_hci_cmd_le_set_cig_params_test {
uint8_t cig_id;
uint8_t c_interval[3];
uint8_t p_interval[3];
uint8_t c_ft;
uint8_t p_ft;
uint16_t iso_interval;
uint8_t sca;
uint8_t packing;
uint8_t framing;
uint8_t num_cis;
struct bt_hci_cis_params_test cis[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CREATE_CIS 0x2064
#define BT_HCI_BIT_LE_CREATE_CIS BT_HCI_CMD_BIT(42, 1)
struct bt_hci_cis {
uint16_t cis_handle;
uint16_t acl_handle;
} __attribute__ ((packed));
struct bt_hci_cmd_le_create_cis {
uint8_t num_cis;
struct bt_hci_cis cis[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REMOVE_CIG 0x2065
#define BT_HCI_BIT_LE_REMOVE_CIG BT_HCI_CMD_BIT(42, 2)
struct bt_hci_cmd_le_remove_cig {
uint8_t cig_id;
} __attribute__ ((packed));
struct bt_hci_rsp_le_remove_cig {
uint8_t status;
uint8_t cig_id;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_ACCEPT_CIS 0x2066
#define BT_HCI_BIT_LE_ACCEPT_CIS BT_HCI_CMD_BIT(42, 3)
struct bt_hci_cmd_le_accept_cis {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REJECT_CIS 0x2067
#define BT_HCI_BIT_LE_REJECT_CIS BT_HCI_CMD_BIT(42, 4)
struct bt_hci_cmd_le_reject_cis {
uint16_t handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CREATE_BIG 0x2068
#define BT_HCI_BIT_LE_CREATE_BIG BT_HCI_CMD_BIT(42, 5)
struct bt_hci_bis {
uint8_t sdu_interval[3];
uint16_t sdu;
uint16_t latency;
uint8_t rtn;
uint8_t phy;
uint8_t packing;
uint8_t framing;
uint8_t encryption;
uint8_t bcode[16];
} __attribute__ ((packed));
struct bt_hci_cmd_le_create_big {
uint8_t handle;
uint8_t adv_handle;
uint8_t num_bis;
struct bt_hci_bis bis;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_CREATE_BIG_TEST 0x2069
#define BT_HCI_BIT_LE_CREATE_BIG_TEST BT_HCI_CMD_BIT(42, 6)
struct bt_hci_bis_test {
uint8_t sdu_interval[3];
uint16_t iso_interval;
uint8_t nse;
uint16_t sdu;
uint16_t pdu;
uint8_t phy;
uint8_t packing;
uint8_t framing;
uint8_t bn;
uint8_t irc;
uint8_t pto;
uint8_t encryption;
uint8_t bcode[16];
} __attribute__ ((packed));
struct bt_hci_cmd_le_create_big_test {
uint8_t big_handle;
uint8_t adv_handle;
uint8_t num_bis;
struct bt_hci_bis_test bis[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_TERM_BIG 0x206a
#define BT_HCI_BIT_LE_TERM_BIG BT_HCI_CMD_BIT(42, 7)
struct bt_hci_cmd_le_term_big {
uint8_t handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_BIG_CREATE_SYNC 0x206b
#define BT_HCI_BIT_LE_BIG_CREATE_SYNC BT_HCI_CMD_BIT(43, 0)
struct bt_hci_bis_sync {
uint8_t index;
} __attribute__ ((packed));
struct bt_hci_cmd_le_big_create_sync {
uint8_t handle;
uint16_t sync_handle;
uint8_t encryption;
uint8_t bcode[16];
uint8_t mse;
uint16_t timeout;
uint8_t num_bis;
struct bt_hci_bis_sync bis[0];
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_BIG_TERM_SYNC 0x206c
#define BT_HCI_BIT_LE_BIG_TERM_SYNC BT_HCI_CMD_BIT(43, 1)
struct bt_hci_cmd_le_big_term_sync {
uint8_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_le_big_term_sync {
uint8_t status;
uint8_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REQ_PEER_SCA 0x206d
#define BT_HCI_BIT_LE_REQ_PEER_SCA BT_HCI_CMD_BIT(43, 2)
struct bt_hci_cmd_le_req_peer_sca {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_SETUP_ISO_PATH 0x206e
#define BT_HCI_BIT_LE_SETUP_ISO_PATH BT_HCI_CMD_BIT(43, 3)
struct bt_hci_cmd_le_setup_iso_path {
uint16_t handle;
uint8_t direction;
uint8_t path;
uint8_t codec;
uint16_t codec_cid;
uint16_t codec_vid;
uint8_t delay[3];
uint8_t codec_cfg_len;
uint8_t codec_cfg[0];
} __attribute__ ((packed));
struct bt_hci_rsp_le_setup_iso_path {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_REMOVE_ISO_PATH 0x206f
#define BT_HCI_BIT_LE_REMOVE_ISO_PATH BT_HCI_CMD_BIT(43, 4)
struct bt_hci_cmd_le_remove_iso_path {
uint16_t handle;
uint8_t direction;
} __attribute__ ((packed));
struct bt_hci_rsp_le_remove_iso_path {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_ISO_TX_TEST 0x2070
#define BT_HCI_BIT_LE_ISO_TX_TEST BT_HCI_CMD_BIT(43, 5)
#define BT_HCI_CMD_LE_ISO_RX_TEST 0x2071
#define BT_HCI_BIT_LE_ISO_RX_TEST BT_HCI_CMD_BIT(43, 6)
#define BT_HCI_CMD_LE_ISO_READ_TEST_COUNTER 0x2072
#define BT_HCI_BIT_LE_ISO_READ_TEST_COUNTER BT_HCI_CMD_BIT(43, 7)
#define BT_HCI_CMD_LE_ISO_TEST_END 0x2073
#define BT_HCI_BIT_LE_ISO_TEST_END BT_HCI_CMD_BIT(44, 0)
#define BT_HCI_CMD_LE_SET_HOST_FEATURE 0x2074
#define BT_HCI_BIT_LE_SET_HOST_FEATURE BT_HCI_CMD_BIT(44, 1)
struct bt_hci_cmd_le_set_host_feature {
uint8_t bit_number;
uint8_t bit_value;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_READ_ISO_LINK_QUALITY 0x2075
#define BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY BT_HCI_CMD_BIT(45, 1)
struct bt_hci_cmd_le_read_iso_link_quality {
uint16_t handle;
} __attribute__ ((packed));
struct bt_hci_rsp_le_read_iso_link_quality {
uint8_t status;
uint16_t handle;
uint32_t tx_unacked_packets;
uint32_t tx_flushed_packets;
uint32_t tx_last_subevent_packets;
uint32_t retransmitted_packets;
uint32_t crc_error_packets;
uint32_t rx_unreceived_packets;
uint32_t duplicated_packets;
} __attribute__ ((packed));
#define BT_HCI_CMD_LE_FSU 0x209d
#define BT_HCI_BIT_LE_FSU BT_HCI_CMD_BIT(48, 1)
struct bt_hci_cmd_le_fsu {
uint16_t handle;
uint16_t frame_space_min;
uint16_t frame_space_max;
uint8_t phys;
uint8_t types;
} __attribute__ ((packed));
#define BT_HCI_EVT_INQUIRY_COMPLETE 0x01
struct bt_hci_evt_inquiry_complete {
uint8_t status;
} __attribute__ ((packed));
#define BT_HCI_EVT_INQUIRY_RESULT 0x02
struct bt_hci_evt_inquiry_result {
uint8_t num_resp;
uint8_t bdaddr[6];
uint8_t pscan_rep_mode;
uint8_t pscan_period_mode;
uint8_t pscan_mode;
uint8_t dev_class[3];
uint16_t clock_offset;
} __attribute__ ((packed));
#define BT_HCI_EVT_CONN_COMPLETE 0x03
struct bt_hci_evt_conn_complete {
uint8_t status;
uint16_t handle;
uint8_t bdaddr[6];
uint8_t link_type;
uint8_t encr_mode;
} __attribute__ ((packed));
#define BT_HCI_EVT_CONN_REQUEST 0x04
struct bt_hci_evt_conn_request {
uint8_t bdaddr[6];
uint8_t dev_class[3];
uint8_t link_type;
} __attribute__ ((packed));
#define BT_HCI_EVT_DISCONNECT_COMPLETE 0x05
struct bt_hci_evt_disconnect_complete {
uint8_t status;
uint16_t handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_EVT_AUTH_COMPLETE 0x06
struct bt_hci_evt_auth_complete {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_REMOTE_NAME_REQUEST_COMPLETE 0x07
struct bt_hci_evt_remote_name_request_complete {
uint8_t status;
uint8_t bdaddr[6];
uint8_t name[248];
} __attribute__ ((packed));
#define BT_HCI_EVT_ENCRYPT_CHANGE 0x08
struct bt_hci_evt_encrypt_change {
uint8_t status;
uint16_t handle;
uint8_t encr_mode;
} __attribute__ ((packed));
#define BT_HCI_EVT_CHANGE_CONN_LINK_KEY_COMPLETE 0x09
struct bt_hci_evt_change_conn_link_key_complete {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_LINK_KEY_TYPE_CHANGED 0x0a
struct bt_hci_evt_link_key_type_changed {
uint8_t status;
uint16_t handle;
uint8_t key_flag;
} __attribute__ ((packed));
#define BT_HCI_EVT_REMOTE_FEATURES_COMPLETE 0x0b
struct bt_hci_evt_remote_features_complete {
uint8_t status;
uint16_t handle;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_EVT_REMOTE_VERSION_COMPLETE 0x0c
struct bt_hci_evt_remote_version_complete {
uint8_t status;
uint16_t handle;
uint8_t lmp_ver;
uint16_t manufacturer;
uint16_t lmp_subver;
} __attribute__ ((packed));
#define BT_HCI_EVT_QOS_SETUP_COMPLETE 0x0d
struct bt_hci_evt_qos_setup_complete {
uint8_t status;
uint16_t handle;
uint8_t flags;
uint8_t service_type;
uint32_t token_rate;
uint32_t peak_bandwidth;
uint32_t latency;
uint32_t delay_variation;
} __attribute__ ((packed));
#define BT_HCI_EVT_CMD_COMPLETE 0x0e
struct bt_hci_evt_cmd_complete {
uint8_t ncmd;
uint16_t opcode;
} __attribute__ ((packed));
#define BT_HCI_EVT_CMD_STATUS 0x0f
struct bt_hci_evt_cmd_status {
uint8_t status;
uint8_t ncmd;
uint16_t opcode;
} __attribute__ ((packed));
#define BT_HCI_EVT_HARDWARE_ERROR 0x10
struct bt_hci_evt_hardware_error {
uint8_t code;
} __attribute__ ((packed));
#define BT_HCI_EVT_FLUSH_OCCURRED 0x11
struct bt_hci_evt_flush_occurred {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_ROLE_CHANGE 0x12
struct bt_hci_evt_role_change {
uint8_t status;
uint8_t bdaddr[6];
uint8_t role;
} __attribute__ ((packed));
#define BT_HCI_EVT_NUM_COMPLETED_PACKETS 0x13
struct bt_hci_evt_num_completed_packets {
uint8_t num_handles;
uint16_t handle;
uint16_t count;
} __attribute__ ((packed));
#define BT_HCI_EVT_MODE_CHANGE 0x14
struct bt_hci_evt_mode_change {
uint8_t status;
uint16_t handle;
uint8_t mode;
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_EVT_RETURN_LINK_KEYS 0x15
struct bt_hci_evt_return_link_keys {
uint8_t num_keys;
uint8_t keys[0];
} __attribute__ ((packed));
#define BT_HCI_EVT_PIN_CODE_REQUEST 0x16
struct bt_hci_evt_pin_code_request {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_LINK_KEY_REQUEST 0x17
struct bt_hci_evt_link_key_request {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_LINK_KEY_NOTIFY 0x18
struct bt_hci_evt_link_key_notify {
uint8_t bdaddr[6];
uint8_t link_key[16];
uint8_t key_type;
} __attribute__ ((packed));
#define BT_HCI_EVT_LOOPBACK_COMMAND 0x19
#define BT_HCI_EVT_DATA_BUFFER_OVERFLOW 0x1a
struct bt_hci_evt_data_buffer_overflow {
uint8_t link_type;
} __attribute__ ((packed));
#define BT_HCI_EVT_MAX_SLOTS_CHANGE 0x1b
struct bt_hci_evt_max_slots_change {
uint16_t handle;
uint8_t max_slots;
} __attribute__ ((packed));
#define BT_HCI_EVT_CLOCK_OFFSET_COMPLETE 0x1c
struct bt_hci_evt_clock_offset_complete {
uint8_t status;
uint16_t handle;
uint16_t clock_offset;
} __attribute__ ((packed));
#define BT_HCI_EVT_CONN_PKT_TYPE_CHANGED 0x1d
struct bt_hci_evt_conn_pkt_type_changed {
uint8_t status;
uint16_t handle;
uint16_t pkt_type;
} __attribute__ ((packed));
#define BT_HCI_EVT_QOS_VIOLATION 0x1e
struct bt_hci_evt_qos_violation {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_PSCAN_MODE_CHANGE 0x1f
struct bt_hci_evt_pscan_mode_change {
uint8_t bdaddr[6];
uint8_t pscan_mode;
} __attribute__ ((packed));
#define BT_HCI_EVT_PSCAN_REP_MODE_CHANGE 0x20
struct bt_hci_evt_pscan_rep_mode_change {
uint8_t bdaddr[6];
uint8_t pscan_rep_mode;
} __attribute__ ((packed));
#define BT_HCI_EVT_FLOW_SPEC_COMPLETE 0x21
struct bt_hci_evt_flow_spec_complete {
uint8_t status;
uint16_t handle;
uint8_t flags;
uint8_t direction;
uint8_t service_type;
uint32_t token_rate;
uint32_t token_bucket_size;
uint32_t peak_bandwidth;
uint32_t access_latency;
} __attribute__ ((packed));
#define BT_HCI_EVT_INQUIRY_RESULT_WITH_RSSI 0x22
struct bt_hci_evt_inquiry_result_with_rssi {
uint8_t num_resp;
uint8_t bdaddr[6];
uint8_t pscan_rep_mode;
uint8_t pscan_period_mode;
uint8_t dev_class[3];
uint16_t clock_offset;
int8_t rssi;
} __attribute__ ((packed));
#define BT_HCI_EVT_REMOTE_EXT_FEATURES_COMPLETE 0x23
struct bt_hci_evt_remote_ext_features_complete {
uint8_t status;
uint16_t handle;
uint8_t page;
uint8_t max_page;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_EVT_SYNC_CONN_COMPLETE 0x2c
struct bt_hci_evt_sync_conn_complete {
uint8_t status;
uint16_t handle;
uint8_t bdaddr[6];
uint8_t link_type;
uint8_t tx_interval;
uint8_t retrans_window;
uint16_t rx_pkt_len;
uint16_t tx_pkt_len;
uint8_t air_mode;
} __attribute__ ((packed));
#define BT_HCI_EVT_SYNC_CONN_CHANGED 0x2d
struct bt_hci_evt_sync_conn_changed {
uint8_t status;
uint16_t handle;
uint8_t tx_interval;
uint8_t retrans_window;
uint16_t rx_pkt_len;
uint16_t tx_pkt_len;
} __attribute__ ((packed));
#define BT_HCI_EVT_SNIFF_SUBRATING 0x2e
struct bt_hci_evt_sniff_subrating {
uint8_t status;
uint16_t handle;
uint16_t max_tx_latency;
uint16_t max_rx_latency;
uint16_t min_remote_timeout;
uint16_t min_local_timeout;
} __attribute__ ((packed));
#define BT_HCI_EVT_EXT_INQUIRY_RESULT 0x2f
struct bt_hci_evt_ext_inquiry_result {
uint8_t num_resp;
uint8_t bdaddr[6];
uint8_t pscan_rep_mode;
uint8_t pscan_period_mode;
uint8_t dev_class[3];
uint16_t clock_offset;
int8_t rssi;
uint8_t data[240];
} __attribute__ ((packed));
#define BT_HCI_EVT_ENCRYPT_KEY_REFRESH_COMPLETE 0x30
struct bt_hci_evt_encrypt_key_refresh_complete {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_IO_CAPABILITY_REQUEST 0x31
struct bt_hci_evt_io_capability_request {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_IO_CAPABILITY_RESPONSE 0x32
struct bt_hci_evt_io_capability_response {
uint8_t bdaddr[6];
uint8_t capability;
uint8_t oob_data;
uint8_t authentication;
} __attribute__ ((packed));
#define BT_HCI_EVT_USER_CONFIRM_REQUEST 0x33
struct bt_hci_evt_user_confirm_request {
uint8_t bdaddr[6];
uint32_t passkey;
} __attribute__ ((packed));
#define BT_HCI_EVT_USER_PASSKEY_REQUEST 0x34
struct bt_hci_evt_user_passkey_request {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_REMOTE_OOB_DATA_REQUEST 0x35
struct bt_hci_evt_remote_oob_data_request {
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_SIMPLE_PAIRING_COMPLETE 0x36
struct bt_hci_evt_simple_pairing_complete {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_LINK_SUPV_TIMEOUT_CHANGED 0x38
struct bt_hci_evt_link_supv_timeout_changed {
uint16_t handle;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_HCI_EVT_ENHANCED_FLUSH_COMPLETE 0x39
struct bt_hci_evt_enhanced_flush_complete {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_USER_PASSKEY_NOTIFY 0x3b
struct bt_hci_evt_user_passkey_notify {
uint8_t bdaddr[6];
uint32_t passkey;
} __attribute__ ((packed));
#define BT_HCI_EVT_KEYPRESS_NOTIFY 0x3c
struct bt_hci_evt_keypress_notify {
uint8_t bdaddr[6];
uint8_t type;
} __attribute__ ((packed));
#define BT_HCI_EVT_REMOTE_HOST_FEATURES_NOTIFY 0x3d
struct bt_hci_evt_remote_host_features_notify {
uint8_t bdaddr[6];
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_META_EVENT 0x3e
#define BT_HCI_EVT_PHY_LINK_COMPLETE 0x40
struct bt_hci_evt_phy_link_complete {
uint8_t status;
uint8_t phy_handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_CHANNEL_SELECTED 0x41
struct bt_hci_evt_channel_selected {
uint8_t phy_handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_DISCONN_PHY_LINK_COMPLETE 0x42
struct bt_hci_evt_disconn_phy_link_complete {
uint8_t status;
uint8_t phy_handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_EVT_PHY_LINK_LOSS_EARLY_WARNING 0x43
struct bt_hci_evt_phy_link_loss_early_warning {
uint8_t phy_handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_EVT_PHY_LINK_RECOVERY 0x44
struct bt_hci_evt_phy_link_recovery {
uint8_t phy_handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_LOGIC_LINK_COMPLETE 0x45
struct bt_hci_evt_logic_link_complete {
uint8_t status;
uint16_t handle;
uint8_t phy_handle;
uint8_t flow_spec;
} __attribute__ ((packed));
#define BT_HCI_EVT_DISCONN_LOGIC_LINK_COMPLETE 0x46
struct bt_hci_evt_disconn_logic_link_complete {
uint8_t status;
uint16_t handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_EVT_FLOW_SPEC_MODIFY_COMPLETE 0x47
struct bt_hci_evt_flow_spec_modify_complete {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_NUM_COMPLETED_DATA_BLOCKS 0x48
struct bt_hci_evt_num_completed_data_blocks {
uint16_t total_num_blocks;
uint8_t num_handles;
uint16_t handle;
uint16_t num_packets;
uint16_t num_blocks;
} __attribute__ ((packed));
#define BT_HCI_EVT_SHORT_RANGE_MODE_CHANGE 0x4c
struct bt_hci_evt_short_range_mode_change {
uint8_t status;
uint8_t phy_handle;
uint8_t mode;
} __attribute__ ((packed));
#define BT_HCI_EVT_AMP_STATUS_CHANGE 0x4d
struct bt_hci_evt_amp_status_change {
uint8_t status;
uint8_t amp_status;
} __attribute__ ((packed));
#define BT_HCI_EVT_TRIGGERED_CLOCK_CAPTURE 0x4e
struct bt_hci_evt_triggered_clock_capture {
uint16_t handle;
uint8_t type;
uint32_t clock;
uint16_t clock_offset;
} __attribute__ ((packed));
#define BT_HCI_EVT_SYNC_TRAIN_COMPLETE 0x4f
struct bt_hci_evt_sync_train_complete {
uint8_t status;
} __attribute__ ((packed));
#define BT_HCI_EVT_SYNC_TRAIN_RECEIVED 0x50
struct bt_hci_evt_sync_train_received {
uint8_t status;
uint8_t bdaddr[6];
uint32_t offset;
uint8_t map[10];
uint8_t lt_addr;
uint32_t instant;
uint16_t interval;
uint8_t service_data;
} __attribute__ ((packed));
#define BT_HCI_EVT_PERIPHERAL_BROADCAST_RECEIVE 0x51
struct bt_hci_evt_peripheral_broadcast_receive {
uint8_t bdaddr[6];
uint8_t lt_addr;
uint32_t clock;
uint32_t offset;
uint8_t status;
uint8_t fragment;
uint8_t length;
} __attribute__ ((packed));
#define BT_HCI_EVT_PERIPHERAL_BROADCAST_TIMEOUT 0x52
struct bt_hci_evt_peripheral_broadcast_timeout {
uint8_t bdaddr[6];
uint8_t lt_addr;
} __attribute__ ((packed));
#define BT_HCI_EVT_TRUNCATED_PAGE_COMPLETE 0x53
struct bt_hci_evt_truncated_page_complete {
uint8_t status;
uint8_t bdaddr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_PERIPHERAL_PAGE_RESPONSE_TIMEOUT 0x54
#define BT_HCI_EVT_PERIPHERAL_BROADCAST_CHANNEL_MAP_CHANGE 0x55
struct bt_hci_evt_channel_map_change {
uint8_t map[10];
} __attribute__ ((packed));
#define BT_HCI_EVT_INQUIRY_RESPONSE_NOTIFY 0x56
struct bt_hci_evt_inquiry_response_notify {
uint8_t lap[3];
int8_t rssi;
} __attribute__ ((packed));
#define BT_HCI_EVT_AUTH_PAYLOAD_TIMEOUT_EXPIRED 0x57
struct bt_hci_evt_auth_payload_timeout_expired {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CONN_COMPLETE 0x01
struct bt_hci_evt_le_conn_complete {
uint8_t status;
uint16_t handle;
uint8_t role;
uint8_t peer_addr_type;
uint8_t peer_addr[6];
uint16_t interval;
uint16_t latency;
uint16_t supv_timeout;
uint8_t clock_accuracy;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_ADV_REPORT 0x02
struct bt_hci_evt_le_adv_report {
uint8_t num_reports;
uint8_t event_type;
uint8_t addr_type;
uint8_t addr[6];
uint8_t data_len;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CONN_UPDATE_COMPLETE 0x03
struct bt_hci_evt_le_conn_update_complete {
uint8_t status;
uint16_t handle;
uint16_t interval;
uint16_t latency;
uint16_t supv_timeout;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_REMOTE_FEATURES_COMPLETE 0x04
struct bt_hci_evt_le_remote_features_complete {
uint8_t status;
uint16_t handle;
uint8_t features[8];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_LONG_TERM_KEY_REQUEST 0x05
struct bt_hci_evt_le_long_term_key_request {
uint16_t handle;
uint64_t rand;
uint16_t ediv;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CONN_PARAM_REQUEST 0x06
struct bt_hci_evt_le_conn_param_request {
uint16_t handle;
uint16_t min_interval;
uint16_t max_interval;
uint16_t latency;
uint16_t supv_timeout;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_DATA_LENGTH_CHANGE 0x07
struct bt_hci_evt_le_data_length_change {
uint16_t handle;
uint16_t max_tx_len;
uint16_t max_tx_time;
uint16_t max_rx_len;
uint16_t max_rx_time;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_READ_LOCAL_PK256_COMPLETE 0x08
struct bt_hci_evt_le_read_local_pk256_complete {
uint8_t status;
uint8_t local_pk256[64];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_GENERATE_DHKEY_COMPLETE 0x09
struct bt_hci_evt_le_generate_dhkey_complete {
uint8_t status;
uint8_t dhkey[32];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_ENHANCED_CONN_COMPLETE 0x0a
struct bt_hci_evt_le_enhanced_conn_complete {
uint8_t status;
uint16_t handle;
uint8_t role;
uint8_t peer_addr_type;
uint8_t peer_addr[6];
uint8_t local_rpa[6];
uint8_t peer_rpa[6];
uint16_t interval;
uint16_t latency;
uint16_t supv_timeout;
uint8_t clock_accuracy;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_DIRECT_ADV_REPORT 0x0b
struct bt_hci_evt_le_direct_adv_report {
uint8_t num_reports;
uint8_t event_type;
uint8_t addr_type;
uint8_t addr[6];
uint8_t direct_addr_type;
uint8_t direct_addr[6];
int8_t rssi;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_PHY_UPDATE_COMPLETE 0x0c
struct bt_hci_evt_le_phy_update_complete {
uint8_t status;
uint16_t handle;
uint8_t tx_phy;
uint8_t rx_phy;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_EXT_ADV_REPORT 0x0d
struct bt_hci_evt_le_ext_adv_report {
uint8_t num_reports;
} __attribute__ ((packed));
struct bt_hci_le_ext_adv_report {
uint16_t event_type;
uint8_t addr_type;
uint8_t addr[6];
uint8_t primary_phy;
uint8_t secondary_phy;
uint8_t sid;
uint8_t tx_power;
int8_t rssi;
uint16_t interval;
uint8_t direct_addr_type;
uint8_t direct_addr[6];
uint8_t data_len;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_PA_SYNC_ESTABLISHED 0x0e
struct bt_hci_evt_le_per_sync_established {
uint8_t status;
uint16_t handle;
uint8_t sid;
uint8_t addr_type;
uint8_t addr[6];
uint8_t phy;
uint16_t interval;
uint8_t clock_accuracy;
} __attribute__ ((packed));
struct bt_hci_le_pa_base_codec {
uint8_t id;
uint16_t cid;
uint16_t vid;
} __attribute__ ((packed));
struct bt_hci_lv_data {
uint8_t len;
uint8_t data[];
} __attribute__ ((packed));
struct bt_hci_le_pa_base_bis {
uint8_t index;
struct bt_hci_lv_data codec_cfg[];
} __attribute__ ((packed));
struct bt_hci_le_pa_base_subgroup {
uint8_t num_bis;
struct bt_hci_le_pa_base_codec codec;
uint8_t data[];
} __attribute__ ((packed));
struct bt_hci_le_pa_base_data {
uint8_t pd[3];
uint8_t num_subgroups;
struct bt_hci_le_pa_base_subgroup subgroups[];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_PA_REPORT 0x0f
struct bt_hci_le_pa_report {
uint16_t handle;
uint8_t tx_power;
int8_t rssi;
uint8_t cte_type;
uint8_t data_status;
uint8_t data_len;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_PA_SYNC_LOST 0x10
struct bt_hci_evt_le_per_sync_lost {
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_ADV_SET_TERM 0x12
struct bt_hci_evt_le_adv_set_term {
uint8_t status;
uint8_t handle;
uint16_t conn_handle;
uint8_t num_evts;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_SCAN_REQ_RECEIVED 0x13
struct bt_hci_evt_le_scan_req_received {
uint8_t handle;
uint8_t scanner_addr_type;
uint8_t scanner_addr[6];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CHAN_SELECT_ALG 0x14
struct bt_hci_evt_le_chan_select_alg {
uint16_t handle;
uint8_t algorithm;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CTE_REQUEST_FAILED 0x17
struct bt_hci_evt_le_cte_request_failed {
uint8_t status;
uint16_t handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_PA_SYNC_TRANS_REC 0x18
struct bt_hci_evt_le_pa_sync_trans_rec {
uint8_t status;
uint16_t handle;
uint16_t service_data;
uint16_t sync_handle;
uint8_t sid;
uint8_t addr_type;
uint8_t addr[6];
uint8_t phy;
uint16_t interval;
uint8_t clock_accuracy;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CIS_ESTABLISHED 0x19
struct bt_hci_evt_le_cis_established {
uint8_t status;
uint16_t conn_handle;
uint8_t cig_sync_delay[3];
uint8_t cis_sync_delay[3];
uint8_t c_latency[3];
uint8_t p_latency[3];
uint8_t c_phy;
uint8_t p_phy;
uint8_t nse;
uint8_t c_bn;
uint8_t p_bn;
uint8_t c_ft;
uint8_t p_ft;
uint16_t c_mtu;
uint16_t p_mtu;
uint16_t interval;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_CIS_REQ 0x1a
struct bt_hci_evt_le_cis_req {
uint16_t acl_handle;
uint16_t cis_handle;
uint8_t cig_id;
uint8_t cis_id;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_BIG_COMPLETE 0x1b
struct bt_hci_evt_le_big_complete {
uint8_t status;
uint8_t handle;
uint8_t sync_delay[3];
uint8_t latency[3];
uint8_t phy;
uint8_t nse;
uint8_t bn;
uint8_t pto;
uint8_t irc;
uint16_t max_pdu;
uint16_t interval;
uint8_t num_bis;
uint16_t bis_handle[0];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_BIG_TERMINATE 0x1c
struct bt_hci_evt_le_big_terminate {
uint8_t handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_BIG_SYNC_ESTABILISHED 0x1d
struct bt_hci_evt_le_big_sync_estabilished {
uint8_t status;
uint8_t handle;
uint8_t latency[3];
uint8_t nse;
uint8_t bn;
uint8_t pto;
uint8_t irc;
uint16_t max_pdu;
uint16_t interval;
uint8_t num_bis;
uint16_t bis[0];
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_BIG_SYNC_LOST 0x1e
struct bt_hci_evt_le_big_sync_lost {
uint8_t big_handle;
uint8_t reason;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_REQ_PEER_SCA_COMPLETE 0x1f
struct bt_hci_evt_le_req_peer_sca_complete {
uint8_t status;
uint16_t handle;
uint8_t sca;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_BIG_INFO_ADV_REPORT 0x22
struct bt_hci_evt_le_big_info_adv_report {
uint16_t sync_handle;
uint8_t num_bis;
uint8_t nse;
uint16_t iso_interval;
uint8_t bn;
uint8_t pto;
uint8_t irc;
uint16_t max_pdu;
uint8_t sdu_interval[3];
uint16_t max_sdu;
uint8_t phy;
uint8_t framing;
uint8_t encryption;
} __attribute__ ((packed));
#define BT_HCI_EVT_LE_FSU_COMPLETE 0x35
struct bt_hci_evt_le_fsu_complete {
uint8_t status;
uint16_t handle;
uint8_t initiator;
uint16_t frame_space;
uint8_t phys;
uint8_t types;
} __attribute__ ((packed));
#define BT_HCI_ERR_SUCCESS 0x00
#define BT_HCI_ERR_UNKNOWN_COMMAND 0x01
#define BT_HCI_ERR_UNKNOWN_CONN_ID 0x02
#define BT_HCI_ERR_HARDWARE_FAILURE 0x03
#define BT_HCI_ERR_PAGE_TIMEOUT 0x04
#define BT_HCI_ERR_AUTH_FAILURE 0x05
#define BT_HCI_ERR_PIN_OR_KEY_MISSING 0x06
#define BT_HCI_ERR_MEM_CAPACITY_EXCEEDED 0x07
#define BT_HCI_ERR_CONN_ALREADY_EXISTS 0x0b
#define BT_HCI_ERR_COMMAND_DISALLOWED 0x0c
#define BT_HCI_ERR_UNSUPPORTED_FEATURE 0x11
#define BT_HCI_ERR_INVALID_PARAMETERS 0x12
#define BT_HCI_ERR_LOCAL_HOST_TERM 0x16
#define BT_HCI_ERR_UNSPECIFIED_ERROR 0x1f
#define BT_HCI_ERR_ADV_TIMEOUT 0x3c
#define BT_HCI_ERR_CONN_FAILED_TO_ESTABLISH 0x3e
#define BT_HCI_ERR_UNKNOWN_ADVERTISING_ID 0x42
#define BT_HCI_ERR_CANCELLED 0x44
#define BT_HCI_ERR_ENC_MODE_NOT_ACCEPTABLE 0x25
struct bt_l2cap_hdr {
uint16_t len;
uint16_t cid;
uint8_t data[];
} __attribute__ ((packed));
struct bt_l2cap_hdr_sig {
uint8_t code;
uint8_t ident;
uint16_t len;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CMD_REJECT 0x01
struct bt_l2cap_pdu_cmd_reject {
uint16_t reason;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CONN_REQ 0x02
struct bt_l2cap_pdu_conn_req {
uint16_t psm;
uint16_t scid;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CONN_RSP 0x03
struct bt_l2cap_pdu_conn_rsp {
uint16_t dcid;
uint16_t scid;
uint16_t result;
uint16_t status;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CONFIG_REQ 0x04
struct bt_l2cap_pdu_config_req {
uint16_t dcid;
uint16_t flags;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CONFIG_RSP 0x05
struct bt_l2cap_pdu_config_rsp {
uint16_t scid;
uint16_t flags;
uint16_t result;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_DISCONN_REQ 0x06
struct bt_l2cap_pdu_disconn_req {
uint16_t dcid;
uint16_t scid;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_DISCONN_RSP 0x07
struct bt_l2cap_pdu_disconn_rsp {
uint16_t dcid;
uint16_t scid;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_ECHO_REQ 0x08
#define BT_L2CAP_PDU_ECHO_RSP 0x09
#define BT_L2CAP_PDU_INFO_REQ 0x0a
struct bt_l2cap_pdu_info_req {
uint16_t type;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_INFO_RSP 0x0b
struct bt_l2cap_pdu_info_rsp {
uint16_t type;
uint16_t result;
uint8_t data[0];
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CREATE_CHAN_REQ 0x0c
struct bt_l2cap_pdu_create_chan_req {
uint16_t psm;
uint16_t scid;
uint8_t ctrlid;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CREATE_CHAN_RSP 0x0d
struct bt_l2cap_pdu_create_chan_rsp {
uint16_t dcid;
uint16_t scid;
uint16_t result;
uint16_t status;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_MOVE_CHAN_REQ 0x0e
struct bt_l2cap_pdu_move_chan_req {
uint16_t icid;
uint8_t ctrlid;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_MOVE_CHAN_RSP 0x0f
struct bt_l2cap_pdu_move_chan_rsp {
uint16_t icid;
uint16_t result;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_MOVE_CHAN_CFM 0x10
struct bt_l2cap_pdu_move_chan_cfm {
uint16_t icid;
uint16_t result;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_MOVE_CHAN_CFM_RSP 0x11
struct bt_l2cap_pdu_move_chan_cfm_rsp {
uint16_t icid;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CONN_PARAM_REQ 0x12
struct bt_l2cap_pdu_conn_param_req {
uint16_t min_interval;
uint16_t max_interval;
uint16_t latency;
uint16_t timeout;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_CONN_PARAM_RSP 0x13
struct bt_l2cap_pdu_conn_param_rsp {
uint16_t result;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_LE_CONN_REQ 0x14
struct bt_l2cap_pdu_le_conn_req {
uint16_t psm;
uint16_t scid;
uint16_t mtu;
uint16_t mps;
uint16_t credits;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_LE_CONN_RSP 0x15
struct bt_l2cap_pdu_le_conn_rsp {
uint16_t dcid;
uint16_t mtu;
uint16_t mps;
uint16_t credits;
uint16_t result;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_LE_FLOWCTL_CREDS 0x16
struct bt_l2cap_pdu_le_flowctl_creds {
uint16_t cid;
uint16_t credits;
} __attribute__ ((packed));
#define BT_L2CAP_PDU_ECRED_CONN_REQ 0x17
struct bt_l2cap_pdu_ecred_conn_req {
uint16_t psm;
uint16_t mtu;
uint16_t mps;
uint16_t credits;
uint16_t scid[0];
} __attribute__ ((packed));
#define BT_L2CAP_PDU_ECRED_CONN_RSP 0x18
struct bt_l2cap_pdu_ecred_conn_rsp {
uint16_t mtu;
uint16_t mps;
uint16_t credits;
uint16_t result;
uint16_t dcid[0];
} __attribute__ ((packed));
#define BT_L2CAP_PDU_ECRED_RECONF_REQ 0x19
struct bt_l2cap_pdu_ecred_reconf_req {
uint16_t mtu;
uint16_t mps;
uint16_t scid[0];
} __attribute__ ((packed));
#define BT_L2CAP_PDU_ECRED_RECONF_RSP 0x1a
struct bt_l2cap_pdu_ecred_reconf_rsp {
uint16_t result;
} __attribute__ ((packed));
struct bt_l2cap_hdr_connless {
uint16_t psm;
} __attribute__ ((packed));
struct bt_l2cap_hdr_amp {
uint8_t code;
uint8_t ident;
uint16_t len;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_CMD_REJECT 0x01
struct bt_l2cap_amp_cmd_reject {
uint16_t reason;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_DISCOVER_REQ 0x02
struct bt_l2cap_amp_discover_req {
uint16_t size;
uint16_t features;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_DISCOVER_RSP 0x03
struct bt_l2cap_amp_discover_rsp {
uint16_t size;
uint16_t features;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_CHANGE_NOTIFY 0x04
#define BT_L2CAP_AMP_CHANGE_RESPONSE 0x05
#define BT_L2CAP_AMP_GET_INFO_REQ 0x06
struct bt_l2cap_amp_get_info_req {
uint8_t ctrlid;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_GET_INFO_RSP 0x07
struct bt_l2cap_amp_get_info_rsp {
uint8_t ctrlid;
uint8_t status;
uint32_t total_bw;
uint32_t max_bw;
uint32_t min_latency;
uint16_t pal_cap;
uint16_t max_assoc_len;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_GET_ASSOC_REQ 0x08
struct bt_l2cap_amp_get_assoc_req {
uint8_t ctrlid;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_GET_ASSOC_RSP 0x09
struct bt_l2cap_amp_get_assoc_rsp {
uint8_t ctrlid;
uint8_t status;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_CREATE_PHY_LINK_REQ 0x0a
struct bt_l2cap_amp_create_phy_link_req {
uint8_t local_ctrlid;
uint8_t remote_ctrlid;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_CREATE_PHY_LINK_RSP 0x0b
struct bt_l2cap_amp_create_phy_link_rsp {
uint8_t local_ctrlid;
uint8_t remote_ctrlid;
uint8_t status;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_DISCONN_PHY_LINK_REQ 0x0c
struct bt_l2cap_amp_disconn_phy_link_req {
uint8_t local_ctrlid;
uint8_t remote_ctrlid;
} __attribute__ ((packed));
#define BT_L2CAP_AMP_DISCONN_PHY_LINK_RSP 0x0d
struct bt_l2cap_amp_disconn_phy_link_rsp {
uint8_t local_ctrlid;
uint8_t remote_ctrlid;
uint8_t status;
} __attribute__ ((packed));
struct bt_l2cap_hdr_att {
uint8_t code;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_ERROR_RESPONSE 0x01
struct bt_l2cap_att_error_response {
uint8_t request;
uint16_t handle;
uint8_t error;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_EXCHANGE_MTU_REQ 0x02
struct bt_l2cap_att_exchange_mtu_req {
uint16_t mtu;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_EXCHANGE_MTU_RSP 0x03
struct bt_l2cap_att_exchange_mtu_rsp {
uint16_t mtu;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_READ_TYPE_REQ 0x08
struct bt_l2cap_att_read_type_req {
uint16_t start_handle;
uint16_t end_handle;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_READ_TYPE_RSP 0x09
struct bt_l2cap_att_read_type_rsp {
uint8_t length;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_READ_REQ 0x0a
struct bt_l2cap_att_read_req {
uint16_t handle;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_READ_RSP 0x0b
#define BT_L2CAP_ATT_READ_GROUP_TYPE_REQ 0x10
struct bt_l2cap_att_read_group_type_req {
uint16_t start_handle;
uint16_t end_handle;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_READ_GROUP_TYPE_RSP 0x11
struct bt_l2cap_att_read_group_type_rsp {
uint8_t length;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_HANDLE_VALUE_NOTIFY 0x1b
struct bt_l2cap_att_handle_value_notify {
uint16_t handle;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_HANDLE_VALUE_IND 0x1d
struct bt_l2cap_att_handle_value_ind {
uint16_t handle;
} __attribute__ ((packed));
#define BT_L2CAP_ATT_HANDLE_VALUE_CONF 0x1e
struct bt_l2cap_hdr_smp {
uint8_t code;
} __attribute__ ((packed));
#define BT_L2CAP_SMP_PAIRING_REQUEST 0x01
struct bt_l2cap_smp_pairing_request {
uint8_t io_capa;
uint8_t oob_data;
uint8_t auth_req;
uint8_t max_key_size;
uint8_t init_key_dist;
uint8_t resp_key_dist;
} __attribute__ ((packed));
#define BT_L2CAP_SMP_PAIRING_RESPONSE 0x02
struct bt_l2cap_smp_pairing_response {
uint8_t io_capa;
uint8_t oob_data;
uint8_t auth_req;
uint8_t max_key_size;
uint8_t init_key_dist;
uint8_t resp_key_dist;
} __attribute__ ((packed));
#define BT_L2CAP_SMP_PAIRING_CONFIRM 0x03
struct bt_l2cap_smp_pairing_confirm {
uint8_t value[16];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_PAIRING_RANDOM 0x04
struct bt_l2cap_smp_pairing_random {
uint8_t value[16];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_PAIRING_FAILED 0x05
struct bt_l2cap_smp_pairing_failed {
uint8_t reason;
} __attribute__ ((packed));
#define BT_L2CAP_SMP_ENCRYPT_INFO 0x06
struct bt_l2cap_smp_encrypt_info {
uint8_t ltk[16];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_CENTRAL_IDENT 0x07
struct bt_l2cap_smp_central_ident {
uint16_t ediv;
uint64_t rand;
} __attribute__ ((packed));
#define BT_L2CAP_SMP_IDENT_INFO 0x08
struct bt_l2cap_smp_ident_info {
uint8_t irk[16];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_IDENT_ADDR_INFO 0x09
struct bt_l2cap_smp_ident_addr_info {
uint8_t addr_type;
uint8_t addr[6];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_SIGNING_INFO 0x0a
struct bt_l2cap_smp_signing_info {
uint8_t csrk[16];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_SECURITY_REQUEST 0x0b
struct bt_l2cap_smp_security_request {
uint8_t auth_req;
} __attribute__ ((packed));
#define BT_L2CAP_SMP_PUBLIC_KEY 0x0c
struct bt_l2cap_smp_public_key {
uint8_t x[32];
uint8_t y[32];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_DHKEY_CHECK 0x0d
struct bt_l2cap_smp_dhkey_check {
uint8_t e[16];
} __attribute__ ((packed));
#define BT_L2CAP_SMP_KEYPRESS_NOTIFY 0x0e
struct bt_l2cap_smp_keypress_notify {
uint8_t type;
} __attribute__ ((packed));
struct bt_sdp_hdr {
uint8_t pdu;
uint16_t tid;
uint16_t plen;
} __attribute__ ((packed));
|