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
//! Host-side interface to the Bluetooth HCI.
//!
//! # Ideas for discussion and improvements
//!
//! - Remove `cmd_link` and `event_link` modules. These provide alternative mechanisms for writing
//! to and reading from the controller, respectively, without the packet identifier byte. The
//! open-source Bluetooth implementations I have found (admittedly, I haven't looked hard) only
//! support sending the packet ID, as `uart` does. In that case, it would make sense to also remove
//! `uart` and move its contents up one level.

extern crate nb;

use byteorder::{ByteOrder, LittleEndian};
use core::convert::Into;
use core::fmt::{Debug, Formatter, Result as FmtResult};
use core::time::Duration;

pub mod cmd_link;
pub mod event_link;
pub mod uart;

pub use super::types::{
    AdvertisingInterval, AdvertisingType, ConnectionInterval, ConnectionIntervalBuilder,
    ExpectedConnectionLength, ScanWindow,
};

const MAX_HEADER_LENGTH: usize = 5;

/// Trait to define a command packet header.
///
/// See the Bluetooth Specification Vol 2, Part E, section 5.4.1. The command packet header contains
/// an opcode (comprising a 6-bit OGF and 10-bit OCF) and a 1-byte parameter length. The packet
/// itself then contains various parameters as defined by the Bluetooth specification.
///
/// Before this command header, many (all?) Bluetooth implementations include a 1-byte packet type
/// preceding the command header. This version of the HciHeader is implemented by
/// [`uart::CommandHeader`], while versions without the packet byte are implemented by
/// [`cmd_link::Header`] and [`event_link::NoCommands`].
pub trait HciHeader {
    /// Defines the length of the packet header. With the packet byte, this is 4. Without it, the
    /// length shall be 3.
    const HEADER_LENGTH: usize;

    /// Returns a new header with the given opcode and parameter length.
    fn new(opcode: ::opcode::Opcode, param_len: usize) -> Self;

    /// Serialize the header into the given buffer, in Bluetooth byte order (little-endian).
    ///
    /// # Panics
    ///
    /// Panics if `buf.len() < Self::HEADER_LENGTH`
    fn into_bytes(&self, buf: &mut [u8]);
}

/// Trait defining the interface from the host to the controller.
///
/// Defines one function for each command in the Bluetooth Specification Vol 2, Part E, Sections
/// 7.1-7.6.
///
/// Specializations must define the error type `E`, used for communication errors.
///
/// An implementation is defined or all types that implement [`Controller`](super::Controller).
pub trait Hci<E> {
    /// Vendor-specific status codes.
    type VS;

    /// Terminates an existing connection.  All synchronous connections on a physical link should be
    /// disconnected before the ACL connection on the same physical connection is disconnected.
    ///
    /// - `conn_handle` indicates which connection is to be disconnected.
    /// - `reason` indicates the reason for ending the connection. The remote Controller will
    ///   receive the Reason command parameter in the [Disconnection
    ///   Complete](::event::Event::DisconnectionComplete) event.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.1.6.
    ///
    /// # Errors
    ///
    /// - [`BadDisconnectionReason`](Error::BadDisconnectionReason) when `reason` is not a valid
    ///   disconnection reason.  The reason must be one of [`AuthFailure`](::Status::AuthFailure),
    ///   [`RemoteTerminationByUser`](::Status::RemoteTerminationByUser),
    ///   [`RemoteTerminationLowResources`](::Status::RemoteTerminationLowResources),
    ///   [`RemoteTerminationPowerOff`](::Status::RemoteTerminationPowerOff),
    ///   [`UnsupportedRemoteFeature`](::Status::UnsupportedRemoteFeature),
    ///   [`PairingWithUnitKeyNotSupported`](::Status::PairingWithUnitKeyNotSupported), or
    ///   [`UnacceptableConnectionParameters`](::Status::UnacceptableConnectionParameters).
    /// - Underlying communication errors.
    ///
    /// # Generated Events
    ///
    /// When the Controller receives the Disconnect command, it shall send the
    /// [Command Status](::event::Event::CommandStatus) event to the Host. The [Disconnection
    /// Complete](::event::Event::DisconnectionComplete) event will occur at each Host when the
    /// termination of the connection has completed, and indicates that this command has been
    /// completed.
    ///
    /// Note: No Command Complete event will be sent by the Controller to indicate that this command
    /// has been completed. Instead, the [Disconnection
    /// Complete](::event::Event::DisconnectionComplete) event will indicate that this command has
    /// been completed.
    fn disconnect(
        &mut self,
        conn_handle: ::ConnectionHandle,
        reason: ::Status<Self::VS>,
    ) -> nb::Result<(), Error<E, Self::VS>>;

    /// Obtains the values for the version information for the remote device identified by the
    /// `conn_handle` parameter, which must be a connection handle for an ACL or LE connection.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.1.23.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated Events
    ///
    /// When the Controller receives the Read Remote Version Information command, the Controller
    /// shall send the [Command Status](::event::Event::CommandStatus) event to the Host. When the
    /// Link Manager or Link Layer has completed the sequence to determine the remote version
    /// information, the local Controller shall send a [Read Remote Version Information
    /// Complete](::event::Event::ReadRemoteVersionInformationComplete) event to the Host. That
    /// event contains the status of this command, and parameters describing the version and
    /// subversion of the LMP or Link Layer used by the remote device.
    ///
    /// Note: No Command Complete event will be sent by the Controller to indicate that this command
    /// has been completed. Instead, the [Read Remote Version Information
    /// Complete](::event::Event::ReadRemoteVersionInformationComplete) event will indicate that
    /// this command has been completed.
    fn read_remote_version_information(
        &mut self,
        conn_handle: ::ConnectionHandle,
    ) -> nb::Result<(), E>;

    /// Controls which events are generated by the HCI for the Host. If the flag in the mask is set,
    /// then the event associated with that bit will be enabled. For an LE Controller, the [LE Meta
    /// Event](EventFlags::LE_META_EVENT) flag shall enable or disable all LE events (see Section
    /// 7.7.65). The Host has to deal with each event that occurs. The event mask allows the Host to
    /// control how much it is interrupted.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.3.1.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated Events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::SetEventMask) event is generated.
    fn set_event_mask(&mut self, mask: EventFlags) -> nb::Result<(), E>;

    /// Resets the Controller and the Link Manager on the BR/EDR Controller, the PAL on an AMP
    /// Controller, or the Link Layer on an LE Controller. If the Controller supports both BR/EDR
    /// and LE then the Reset command shall reset the Link Manager, Baseband and Link Layer. The
    /// Reset command shall not affect the used HCI transport layer since the HCI transport layers
    /// may have reset mechanisms of their own. After the reset is completed, the current
    /// operational state will be lost, the Controller will enter standby mode and the Controller
    /// will automatically revert to the default values for the parameters for which default values
    /// are defined in the specification.
    ///
    /// Note: The Reset command will not necessarily perform a hardware reset. This is
    /// implementation defined. On an AMP Controller, the Reset command shall reset the service
    /// provided at the logical HCI to its initial state, but beyond this the exact effect on the
    /// Controller device is implementation defined and should not interrupt the service provided to
    /// other protocol stacks.
    ///
    /// The Host shall not send additional HCI commands before the Command Complete event related to
    /// the Reset command has been received.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.3.2.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated Events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::Reset) event is generated.
    fn reset(&mut self) -> nb::Result<(), E>;

    /// Reads the values for the transmit power level for the specified
    /// `conn_handle`. `conn_handle` shall be a connection handle for an ACL connection.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.3.35.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated Events
    ///
    /// A [Comand Complete](::event::command::ReturnParameters::ReadTxPowerLevel) event is
    /// generated.
    fn read_tx_power_level(
        &mut self,
        conn_handle: ::ConnectionHandle,
        power_level_type: TxPowerLevel,
    ) -> nb::Result<(), E>;

    /// This command reads the values for the version information for the local Controller.
    ///
    /// Defined in Bluetooth Specification Vol 2, Part E, Section 7.4.1.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported
    ///
    /// # Generated events
    ///
    /// A [Comand Complete](::event::command::ReturnParameters::ReadLocalVersionInformation) event
    /// is generated.
    fn read_local_version_information(&mut self) -> nb::Result<(), E>;

    /// Reads the list of HCI commands supported for the local Controller.
    ///
    /// This command shall return the supported commands configuration parameter. It is implied that
    /// if a command is listed as supported, the feature underlying that command is also supported.
    ///
    /// See the Bluetooth Spec, Vol 2, Part E, Section 6.27 for more information.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.4.2.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::ReadLocalSupportedCommands) event
    /// is generated.
    fn read_local_supported_commands(&mut self) -> nb::Result<(), E>;

    /// Requests a list of the supported features for the local BR/EDR Controller.
    ///
    /// See the Bluetooth Spec, Vol 2, Part C, Section 3.3 for more information about the features.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.4.3.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::ReadLocalSupportedFeatures) event
    /// is generated.
    fn read_local_supported_features(&mut self) -> nb::Result<(), E>;

    /// On a BR/EDR Controller, this command reads the Bluetooth Controller address (BD_ADDR).
    ///
    /// On an LE Controller, this command shall read the Public Device Address as defined in the
    /// Bluetooth spec, Vol 6, Part B, Section 1.3. If this Controller does not have a Public Device
    /// Address, the value 0x000000000000 shall be returned.
    ///
    /// On a BR/EDR/LE Controller, the public address shall be the same as the BD_ADDR.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.4.6.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::ReadBdAddr) event is generated.
    fn read_bd_addr(&mut self) -> nb::Result<(), E>;

    /// Reads the Received Signal Strength Indication (RSSI) value from a Controller.
    ///
    /// For a BR/EDR Controller, a connection handle is used as the Handle command parameter and
    /// return parameter. The RSSI parameter returns the difference between the measured Received
    /// Signal Strength Indication (RSSI) and the limits of the Golden Receive Power Range for a
    /// connection handle to another BR/EDR Controller. The connection handle must be a
    /// connection handle for an ACL connection. Any positive RSSI value returned by the Controller
    /// indicates how many dB the RSSI is above the upper limit, any negative value indicates how
    /// many dB the RSSI is below the lower limit. The value zero indicates that the RSSI is inside
    /// the Golden Receive Power Range.
    ///
    /// Note: How accurate the dB values will be depends on the Bluetooth hardware. The only
    /// requirements for the hardware are that the BR/EDR Controller is able to tell whether the
    /// RSSI is inside, above or below the Golden Device Power Range.
    ///
    /// The RSSI measurement compares the received signal power with two threshold levels, which
    /// define the Golden Receive Power Range. The lower threshold level corresponds to a received
    /// power between -56 dBm and 6 dB above the actual sensitivity of the receiver. The upper
    /// threshold level is 20 dB above the lower threshold level to an accuracy of +/- 6 dB.
    ///
    /// For an AMP Controller, a physical link handle is used for the Handle command parameter and
    /// return parameter. The meaning of the RSSI metric is AMP type specific and defined in the AMP
    /// PALs (see Volume 5, Core System Package, AMP Controller volume).
    ///
    /// For an LE transport, a connection handle is used as the Handle command parameter and return
    /// parameter. The meaning of the RSSI metric is an absolute receiver signal strength value in
    /// dBm to ± 6 dB accuracy. If the RSSI cannot be read, the RSSI metric shall be set to 127.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.5.4.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::ReadRssi) event is generated.
    fn read_rssi(&mut self, conn_handle: ::ConnectionHandle) -> nb::Result<(), E>;

    /// Controls which LE events are generated by the HCI for the Host. If the flag in `event_mask`
    /// is set, then the event associated with that flag will be enabled. The Host has to deal with
    /// each event that is generated by an LE Controller. The event mask allows the Host to control
    /// which events will interrupt it.
    ///
    /// For LE events to be generated, the [LE Meta-Event](EventFlags::LE_META_EVENT) flag in the
    /// [Event Mask](Hci::set_event_mask) shall also be set. If that bit is not set, then LE events
    /// shall not be generated, regardless of how the LE Event Mask is set.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.1.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetEventMask) event is
    /// generated.
    fn le_set_event_mask(&mut self, event_mask: LeEventFlags) -> nb::Result<(), E>;

    /// Reads the maximum size of the data portion of HCI LE ACL Data Packets sent from the Host to
    /// the Controller.  The Host will segment the data transmitted to the Controller according to
    /// these values, so that the HCI Data Packets will contain data with up to this size. This
    /// command also returns the total number of HCI LE ACL Data Packets that can be stored in the
    /// data buffers of the Controller. This command must be issued by the Host before it sends any
    /// data to an LE Controller (see Section 4.1.1).
    ///
    /// If the Controller returns a length value of zero, the Host shall use the `read_buffer_size`
    /// command to determine the size of the data buffers (shared between BR/EDR and LE
    /// transports).
    ///
    /// Note: Both the `read_buffer_size` and `le_read_buffer_size` commands may return buffer
    /// length and number of packets parameter values that are nonzero. This allows a Controller to
    /// offer different buffers and number of buffers for BR/EDR data packets and LE data packets.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.2.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReadBufferSize) event is
    /// generated.
    fn le_read_buffer_size(&mut self) -> nb::Result<(), E>;

    /// Requests the list of the supported LE features for the Controller.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.3.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReadLocalSupportedFeatures) event
    /// is generated.
    fn le_read_local_supported_features(&mut self) -> nb::Result<(), E>;

    /// Sets the LE Random Device Address in the Controller.
    ///
    /// See the Bluetooth spec, Vol 6, Part B, Section 1.3.
    ///
    /// Details added in v5.0:
    ///
    /// - If this command is used to change the address, the new random address shall take effect
    ///   for advertising no later than the next successful [`le_set_advertise_enable`](Hci) command
    ///   (v4.x, renamed to [`le_set_advertising_enable`](Hci) in v5.0), for scanning no later than
    ///   the next successful [`le_set_scan_enable`](Hci::le_set_scan_enable) command or
    ///   `le_set_extended_scan_enable` command, and for initiating no later than the next
    ///   successful [`le_create_connection`](Hci::le_create_connection) command or
    ///   `le_extended_create_connection` command.
    ///
    /// - Note: If Extended Advertising is in use, this command only affects the address used for
    ///   scanning and initiating. The addresses used for advertising are set by the
    ///   `le_set_advertising_set_random_address` command (see Section 7.8.52).
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.4.
    ///
    /// # Errors
    ///
    /// - If the given address does not meet the requirements from Vol 6, Part B, Section 1.3, a
    ///   [`BadRandomAddress`](Error::BadRandomAddress) error is returned.
    ///   - The 2 most significant bits of the (last byte of the) address must be 00 (non-resolvable
    ///     private address), 10 (resolvable private address), or 11 (static address).
    ///   - The random part of the address must contain at least one 0 and at least one 1.  For
    ///     static and non-resolvable private addresses, the random part is the entire address
    ///     (except the 2 most significant bits).  For resolvable private addresses, the 3 least
    ///     significant bytes are a hash, and the random part is the 3 most significant bytes.  The
    ///     hash part of resolvable private addresses is not checked.
    /// - Underlying communication errors are reported.
    ///
    /// # Generated Events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetRandomAddress) event is
    /// generated.
    ///
    /// (v5.0) If the Host issues this command when scanning or legacy advertising is enabled, the
    /// Controller shall return the error code [Command Disallowed](::Status::CommandDisallowed).
    fn le_set_random_address(&mut self, bd_addr: ::BdAddr) -> nb::Result<(), Error<E, Self::VS>>;

    /// Sets the advertising parameters on the Controller.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.5.
    ///
    /// # Errors
    ///
    /// - [`BadChannelMap`](Error::BadChannelMap) if no channels are enabled in the channel map.
    /// - Underlying communication errors
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetAdvertisingParameters) event
    /// is generated.
    ///
    /// The Host shall not issue this command when advertising is enabled in the Controller; if it
    /// is the [Command Disallowed](::Status::CommandDisallowed) error code shall be used.
    fn le_set_advertising_parameters(
        &mut self,
        params: &AdvertisingParameters,
    ) -> nb::Result<(), Error<E, Self::VS>>;

    /// Reads the transmit power level used for LE advertising channel packets.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.6.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReadAdvertisingChannelTxPower)
    /// event is generated.
    fn le_read_advertising_channel_tx_power(&mut self) -> nb::Result<(), E>;

    /// Sets the data used in advertising packets that have a data field.
    ///
    /// Only the significant part of the advertising data should be transmitted in the advertising
    /// packets, as defined in the Bluetooth spec, Vol 3, Part C, Section 11. All bytes in `data`
    /// are considered significant.
    ///
    /// If advertising is currently enabled, the Controller shall use the new data in subsequent
    /// advertising events. If an advertising event is in progress when this command is issued, the
    /// Controller may use the old or new data for that event.  If advertising is currently
    /// disabled, the data shall be kept by the Controller and used once advertising is enabled.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.7.
    ///
    /// # Errors
    ///
    /// - [`AdvertisingDataTooLong`](Error::AdvertisingDataTooLong) if `data` is 32 bytes or more.
    /// - Underlying communication errors
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::Event::CommandComplete) event is generated.
    fn le_set_advertising_data(&mut self, data: &[u8]) -> nb::Result<(), Error<E, Self::VS>>;

    /// Provides data used in scanning packets that have a data field.
    ///
    /// Only the significant part of the scan response data should be transmitted in the Scanning
    /// Packets, as defined in the Bluetooth spec, Vol 3, Part C, Section 11.  All bytes in `data`
    /// are considered significant.
    ///
    /// If advertising is currently enabled, the Controller shall use the new data in subsequent
    /// advertising events. If an advertising event is in progress when this command is issued, the
    /// Controller may use the old or new data for that event. If advertising is currently disabled,
    /// the data shall be kept by the Controller and used once advertising is enabled.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.8.
    ///
    /// # Errors
    ///
    /// - [`AdvertisingDataTooLong`](Error::AdvertisingDataTooLong) if `data` is 32 bytes or more.
    /// - Underlying communication errors
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetScanResponseData) event is
    /// generated.
    fn le_set_scan_response_data(&mut self, data: &[u8]) -> nb::Result<(), Error<E, Self::VS>>;

    /// Requests the Controller to start or stop advertising. The Controller manages the timing of
    /// advertisements as per the advertising parameters given in the
    /// [`le_set_advertising_parameters`](Hci::le_set_advertising_parameters) command.
    ///
    /// The Controller shall continue advertising until the Host issues this command with enable set
    /// to `false` (Advertising is disabled) or until a connection is created or until the
    /// advertising is timed out due to high duty cycle directed advertising. In these cases,
    /// advertising is then disabled.
    ///
    /// This function is renamed `le_set_advertising_enable` in Bluetooth v5.0.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.9, in versions 4.1 and 4.2.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// When the command has completed, a [Command
    /// Complete](::event::command::ReturnParameters::LeSetAdvertiseEnable) event shall be
    /// generated.
    ///
    /// If the [advertising type](AdvertisingInterval::for_type) is
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle) and
    /// the directed advertising fails to create a connection, an [LE Connection
    /// Complete](::event::Event::LeConnectionComplete) event shall be generated with the Status
    /// code set to [`AdvertisingTimeout`](::Status::AdvertisingTimeout).
    ///
    /// If the [advertising type](AdvertisingInterval::for_type) is
    /// [`ConnectableUndirected`](AdvertisingType::ConnectableUndirected),
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle), or
    /// [`ConnectableDirectedLowDutyCycle`](AdvertisingType::ConnectableDirectedLowDutyCycle) and a
    /// connection is established, an [LE Connection Complete](::event::Event::LeConnectionComplete)
    /// event shall be generated.
    ///
    /// Note: There is a possible race condition if `enable` is set to false (Disable) and the
    /// [advertising type](AdvertisingInterval::for_type) is
    /// [`ConnectableUndirected`](AdvertisingType::ConnectableUndirected),
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle), or
    /// [`ConnectableDirectedLowDutyCycle`](AdvertisingType::ConnectableDirectedLowDutyCycle). The
    /// advertisements might not be stopped before a connection is created, and therefore both the
    /// Command Complete event and an LE Connection Complete event could be generated. This can also
    /// occur when high duty cycle directed advertising is timed out and this command disables
    /// advertising.
    #[cfg(not(feature = "version-5-0"))]
    fn le_set_advertise_enable(&mut self, enable: bool) -> nb::Result<(), E>;

    /// Requests the Controller to start or stop advertising. The Controller manages the timing of
    /// advertisements as per the advertising parameters given in the
    /// [`le_set_advertising_parameters`](Hci::le_set_advertising_parameters) command.
    ///
    /// The Controller shall continue advertising until the Host issues this command with `enable`
    /// set to false (Advertising is disabled) or until a connection is created or until the
    /// advertising is timed out due to high duty cycle directed advertising. In these cases,
    /// advertising is then disabled.
    ///
    /// If [`own_address_type`](AdvertisingParameters::own_address_type) is set to
    /// [`Random`](OwnAddressType::Random) and the random address for the device has not been
    /// initialized, the Controller shall return the error code
    /// [`InvalidParameters`](::Status::InvalidParameters).
    ///
    /// If [`own_address_type`](AdvertisingParameters::own_address_type) is set to
    /// [`PrivateFallbackRandom`](OwnAddressType::PrivateFallbackRandom), the controller's resolving
    /// list did not contain a matching entry, and the random address for the device has not been
    /// initialized, the Controller shall return the error code
    /// [`InvalidParameters`](::Status::InvalidParameters).
    ///
    /// Note: Enabling advertising when it is already enabled can cause the random address to
    /// change. Disabling advertising when it is already disabled has no effect.
    ///
    /// This function was renamed from `le_set_advertise_enable` in Bluetooth v5.0.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.9, in versions 5.0.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetAdvertisingEnable) event is
    /// generated.
    ///
    /// If [`advertising_type`](AdvertisingParameters::advertising_type) is
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle) and
    /// the directed advertising fails to create a connection, an [LE Connection
    /// Complete](::event::Event::LeConnectionComplete) event shall be generated with the Status
    /// code set to [`AdvertisingTimeout`](::Status::AdvertisingTimeout).
    ///
    /// If [`advertising_type`](AdvertisingParameters::advertising_type) is
    /// [`ConnectableUndirected`](AdvertisingType::ConnectableUndirected),
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle), or
    /// [`ConnectableDirectedLowDutyCycle`](AdvertisingType::ConnectableDirectedLowDutyCycle) and a
    /// connection is created, an [LE Connection Complete](::event::Event::LeConnectionComplete) or
    /// LE Enhanced Connection Complete event shall be generated.
    ///
    /// Note: There is a possible race condition if `enable` is set to false (Disable) and
    /// [`advertising_type`](AdvertisingParameters::advertising_type) is
    /// [`ConnectableUndirected`](AdvertisingType::ConnectableUndirected),
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle), or
    /// [`ConnectableDirectedLowDutyCycle`](AdvertisingType::ConnectableDirectedLowDutyCycle). The
    /// advertisements might not be stopped before a connection is created, and therefore both the
    /// Command Complete event and an LE Connection Complete event or an LE Enhanced Connection
    /// Complete event could be generated. This can also occur when high duty cycle directed
    /// advertising is timed out and this command disables advertising.
    #[cfg(feature = "version-5-0")]
    fn le_set_advertising_enable(&mut self, enable: bool) -> nb::Result<(), E>;

    /// Sets the scan parameters.
    ///
    /// The Host shall not issue this command when scanning is enabled in the Controller; if it is
    /// the [`CommandDisallowed`](::Status::CommandDisallowed) error code shall be used.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.10.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetScanParameters) event is
    /// generated.
    fn le_set_scan_parameters(&mut self, params: &ScanParameters) -> nb::Result<(), E>;

    /// Starts scanning. Scanning is used to discover advertising devices nearby.
    ///
    /// `filter_duplicates` controls whether the Link Layer shall filter duplicate advertising
    /// reports to the Host, or if the Link Layer should generate advertising reports for each
    /// packet received.
    ///
    /// If [`own_address_type`](ScanParameters::own_address_type) is set to
    /// [`Random`](OwnAddressType::Random) or [`PrivateFallbackRandom`](OwnAddressType) and the
    /// random address for the device has not been initialized, the Controller shall return the
    /// error code [`InvalidParameters`](::Status::InvalidParameters).
    ///
    /// If `enable` is true and scanning is already enabled, any change to the `filter_duplicates`
    /// setting shall take effect.
    ///
    /// Note: Disabling scanning when it is disabled has no effect.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.11.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetScanEnable) event is
    /// generated.
    ///
    /// Zero or more [LE Advertising Reports](::event::Event::LeAdvertisingReport) are generated by
    /// the Controller based on advertising packets received and the duplicate filtering. More than
    /// one advertising packet may be reported in each LE Advertising Report event.
    fn le_set_scan_enable(&mut self, enable: bool, filter_duplicates: bool) -> nb::Result<(), E>;

    /// Creates a Link Layer connection to a connectable advertiser.
    ///
    /// The Host shall not issue this command when another `le_create_connection` is pending in the
    /// Controller; if this does occur the Controller shall return the
    /// [`CommandDisallowed`](::Status::CommandDisallowed) error code.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.12.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// The Controller sends the [Command Status](::event::Event::CommandStatus) event to the Host
    /// when the event is received.  An [LE Connection
    /// Complete](::event::Event::LeConnectionComplete) event shall be generated when a connection
    /// is created or the connection creation procedure is cancelled.
    ///
    /// Note: No Command Complete event is sent by the Controller to indicate that this command has
    /// been completed. Instead, the LE Connection Complete event indicates that this command has
    /// been completed.
    fn le_create_connection(&mut self, params: &ConnectionParameters) -> nb::Result<(), E>;

    /// Cancels the [`le_create_connection`](Hci::le_create_connection) or
    /// `le_extended_create_connection` (for v5.0) command. This command shall only be issued after
    /// the [`le_create_connection`](Hci::le_create_connection) command has been issued, a
    /// [`CommandStatus`](::event::Event::CommandStatus) event has been received for the
    /// [`le_create_connection`](Hci::le_create_connection) command and before the
    /// [`LeConnectionComplete`](::event::Event::LeConnectionComplete) event.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.13.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeCreateConnectionCancel) event
    /// shall be generated.
    ///
    /// If this command is sent to the Controller without a preceding
    /// [`le_create_connection`](Hci::le_create_connection) command, the Controller shall return a
    /// [Command Complete](::event::command::ReturnParameters::LeCreateConnectionCancel) event with
    /// the error code [`CommandDisallowed`](::Status::CommandDisallowed).
    ///
    /// The [LE Connection Complete](::event::Event::LeConnectionComplete) event with the error code
    /// [`UnknownConnectionId`](::Status::UnknownConnectionId) shall be sent after the Command
    /// Complete event for this command if the cancellation was successful.
    fn le_create_connection_cancel(&mut self) -> nb::Result<(), E>;

    /// Reads the total number of White List entries that can be stored in the Controller.
    ///
    /// Note: The number of entries that can be stored is not fixed and the Controller can change it
    /// at any time (e.g. because the memory used to store the White List can also be used for other
    /// purposes).
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.14.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReadWhiteListSize) event is
    /// generated.
    fn le_read_white_list_size(&mut self) -> nb::Result<(), E>;

    /// Clears the white list stored in the Controller.
    ///
    /// This command can be used at any time except when:
    /// - the advertising filter policy uses the white list and advertising is enabled.
    /// - the scanning filter policy uses the white list and scanning is enabled.
    /// - the initiator filter policy uses the white list and an
    ///   [`le_create_connection`](Hci::le_create_connection) command is outstanding.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.15
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeClearWhiteList) event is
    /// generated.
    fn le_clear_white_list(&mut self) -> nb::Result<(), E>;

    /// Adds a single device to the white list stored in the Controller.
    ///
    /// This command can be used at any time except when:
    /// - the advertising filter policy uses the white list and advertising is enabled.
    /// - the scanning filter policy uses the white list and scanning is enabled.
    /// - the initiator filter policy uses the white list and a
    ///   [`le_create_connection`](Hci::le_create_connection) command is outstanding.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.16.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeAddDeviceToWhiteList) event is
    /// generated. When a Controller cannot add a device to the White List because there is no space
    /// available, it shall return [`OutOfMemory`](::Status::OutOfMemory).
    fn le_add_device_to_white_list(&mut self, addr: ::BdAddrType) -> nb::Result<(), E>;

    /// Adds anonymous devices sending advertisements to the white list stored in the Controller.
    ///
    /// This command can be used at any time except when:
    /// - the advertising filter policy uses the white list and advertising is enabled.
    /// - the scanning filter policy uses the white list and scanning is enabled.
    /// - the initiator filter policy uses the white list and a
    ///   [`le_create_connection`](Hci::le_create_connection) command is outstanding.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.16.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeAddDeviceToWhiteList) event is
    /// generated.  When a Controller cannot add a device to the White List because there is no
    /// space available, it shall return [`OutOfMemory`](::Status::OutOfMemory).
    #[cfg(feature = "version-5-0")]
    fn le_add_anon_advertising_devices_to_white_list(&mut self) -> nb::Result<(), E>;

    /// Removes a single device from the white list stored in the Controller.
    ///
    /// This command can be used at any time except when:
    /// - the advertising filter policy uses the white list and advertising is enabled.
    /// - the scanning filter policy uses the white list and scanning is enabled.
    /// - the initiator filter policy uses the white list and a
    ///   [`le_create_connection`](Hci::le_create_connection) command is outstanding.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.17.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeRemoveDeviceFromWhiteList) event
    /// is generated.
    fn le_remove_device_from_white_list(&mut self, addr: ::BdAddrType) -> nb::Result<(), E>;

    /// Removes anonymous devices sending advertisements from the white list stored in the
    /// Controller.
    ///
    /// This command can be used at any time except when:
    /// - the advertising filter policy uses the white list and advertising is enabled.
    /// - the scanning filter policy uses the white list and scanning is enabled.
    /// - the initiator filter policy uses the white list and a
    ///   [`le_create_connection`](Hci::le_create_connection) command is outstanding.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.17.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeRemoveDeviceFromWhiteList) event
    /// is generated.
    #[cfg(feature = "version-5-0")]
    fn le_remove_anon_advertising_devices_from_white_list(&mut self) -> nb::Result<(), E>;

    /// Changes the Link Layer connection parameters of a connection. This command may be issued on
    /// both the central and peripheral devices.
    ///
    /// The actual parameter values selected by the Link Layer may be different from the parameter
    /// values provided by the Host through this command.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.18.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// When the Controller receives the command, the Controller sends the [Command
    /// Status](::event::Event::CommandStatus) event to the Host. The [LE Connection Update
    /// Complete](::event::Event::LeConnectionUpdateComplete) event shall be generated after the
    /// connection parameters have been applied by the Controller.
    ///
    /// Note: a Command Complete event is not sent by the Controller to indicate that this command
    /// has been completed. Instead, the LE Connection Update Complete event indicates that this
    /// command has been completed.
    fn le_connection_update(&mut self, params: &ConnectionUpdateParameters) -> nb::Result<(), E>;

    /// This command allows the Host to specify a channel classification for data channels based on
    /// its "local information". This classification persists until overwritten with a subsequent
    /// `le_set_host_channel_classification` command or until the Controller is reset using the
    /// [`reset`](Hci::reset) command.
    ///
    /// If this command is used, the Host should send it within 10 seconds of knowing that the
    /// channel classification has changed. The interval between two successive commands sent shall
    /// be at least one second.
    ///
    /// This command shall only be used when the local device supports the central role.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.19.
    ///
    /// # Errors
    ///
    /// - [`NoValidChannel`](Error::NoValidChannel) if all channels are reported as bad.
    /// - Underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeSetHostChannelClassification)
    /// event is generated.
    fn le_set_host_channel_classification(
        &mut self,
        channels: ::ChannelClassification,
    ) -> nb::Result<(), Error<E, Self::VS>>;

    /// Returns the current channel map for the specified connection handle. The returned value
    /// indicates the state of the channel map specified by the last transmitted or received channel
    /// map (in a CONNECT_REQ or LL_CHANNEL_MAP_REQ message) for the specified connection handle,
    /// regardless of whether the Master has received an acknowledgement.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.20.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReadChannelMap) event is
    /// generated.
    fn le_read_channel_map(&mut self, conn_handle: ::ConnectionHandle) -> nb::Result<(), E>;

    /// Requests a list of the used LE features from the remote device.  This command shall return a
    /// list of the used LE features.
    ///
    /// This command may be issued on both the central and peripheral devices.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.21.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// When the Controller receives this command, the Controller shall send the [Command
    /// Status](`::event::Event::CommandStatus) event to the Host. When the Controller has completed
    /// the procedure to determine the remote features, the Controller shall send a [LE Read Remote
    /// Used Features Complete](::event::Event::LeReadRemoteUsedFeaturesComplete) event to the Host.
    ///
    /// The [LE Read Remote Used Features
    /// Complete](::event::Event::LeReadRemoteUsedFeaturesComplete) event contains the status of
    /// this command, and the parameter describing the used features of the remote device.
    ///
    /// Note: A Command Complete event is not sent by the Controller to indicate that this command
    /// has been completed. Instead, the LE Read Remote Used Features Complete event indicates that
    /// this command has been completed.
    fn le_read_remote_used_features(
        &mut self,
        conn_handle: ::ConnectionHandle,
    ) -> nb::Result<(), E>;

    /// Requests the Controller to encrypt the plaintext data in the command using the key given in
    /// the command and returns the encrypted data to the Host. The AES-128 bit block cypher is
    /// defined in NIST Publication
    /// [FIPS-197](http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf).
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.22.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeEncrypt) event is generated.
    fn le_encrypt(&mut self, params: &AesParameters) -> nb::Result<(), E>;

    /// Requests the Controller to generate 8 octets of random data to be sent to the Host. The
    /// random number shall be generated according to the Bluetooth spec, Vol 2, Part H, Section 2
    /// if the [LL Encryption](::event::command::LmpFeatures::ENCRYPTION) Feature is supported.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.23.
    ///
    /// # Errors
    ///
    /// Only underlying communication are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeRand) event is generated.
    fn le_rand(&mut self) -> nb::Result<(), E>;

    /// Authenticates the given encryption key associated with the remote device specified by the
    /// connection handle, and once authenticated will encrypt the connection. The parameters are as
    /// defined in the Bluetooth spec, Vol 3, Part H, Section 2.4.4.
    ///
    /// If the connection is already encrypted then the Controller shall pause connection encryption
    /// before attempting to authenticate the given encryption key, and then re-encrypt the
    /// connection. While encryption is paused no user data shall be transmitted.
    ///
    /// On an authentication failure, the connection shall be automatically disconnected by the Link
    /// Layer. If this command succeeds, then the connection shall be encrypted.
    ///
    /// This command shall only be used when the local device is the central device.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.24.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported
    ///
    /// # Generated events
    ///
    /// When the Controller receives this command it shall send the [Command
    /// Status](::event::Event::CommandStatus) event to the Host. If the connection is not encrypted
    /// when this command is issued, an [Encryption Change](::event::Event::EncryptionChange) event
    /// shall occur when encryption has been started for the connection. If the connection is
    /// encrypted when this command is issued, an [Encryption Key Refresh
    /// Complete](::event::Event::EncryptionKeyRefreshComplete) event shall occur when encryption
    /// has been resumed.
    ///
    /// Note: A Command Complete event is not sent by the Controller to indicate that this command
    /// has been completed. Instead, the Encryption Change or Encryption Key Refresh Complete events
    /// indicate that this command has been completed.
    fn le_start_encryption(&mut self, params: &EncryptionParameters) -> nb::Result<(), E>;

    /// Replies to an [LE Long Term Key Request](::event::Event::LeLongTermKeyRequest) event from
    /// the Controller, and specifies the long term key parameter that shall be used for this
    /// connection handle.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.25.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeLongTermKeyRequestReply) event is
    /// generated.
    fn le_long_term_key_request_reply(
        &mut self,
        conn_handle: ::ConnectionHandle,
        key: &EncryptionKey,
    ) -> nb::Result<(), E>;

    /// Replies to an [LE Long Term Key Request](::event::Event::LeLongTermKeyRequest) event from
    /// the Controller if the Host cannot provide a Long Term Key for this connection handle.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.26.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeLongTermKeyRequestNegativeReply)
    /// event is generated.
    fn le_long_term_key_request_negative_reply(
        &mut self,
        conn_handle: ::ConnectionHandle,
    ) -> nb::Result<(), E>;

    /// Reads the states and state combinations that the link layer supports.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.27.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReadSupportedStates) event is
    /// generated.
    fn le_read_supported_states(&mut self) -> nb::Result<(), E>;

    /// Starts a test where the DUT receives test reference packets at a fixed interval. The tester
    /// generates the test reference packets.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.28.
    ///
    /// # Errors
    ///
    /// - [`InvalidTestChannel`](Error::InvalidTestChannel) if the channel is out of range (greater
    ///   than 39).
    /// - Underlying communication errors
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeReceiverTest) event is
    /// generated.
    fn le_receiver_test(&mut self, channel: u8) -> nb::Result<(), Error<E, Self::VS>>;

    /// Starts a test where the DUT generates test reference packets at a fixed interval. The
    /// Controller shall transmit at maximum power.
    ///
    /// An LE Controller supporting the `le_transmitter_test` command shall support `payload` values
    /// [`PrbS9`](TestPacketPayload::PrbS9), [`Nibbles10`](TestPacketPayload::Nibbles10) and
    /// [`Bits10`](TestPacketPayload::Bits10). An LE Controller may support other values of
    /// `payload`.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.29.
    ///
    /// # Errors
    ///
    /// - [`InvalidTestChannel`](Error::InvalidTestChannel) if the channel is out of range (greater
    ///   than 39).
    /// - [`InvalidTestPayloadLength`](Error::InvalidTestPayloadLength) if `payload_length` is out
    ///   of range (greater than 37).
    /// - Underlying communication errors.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeTransmitterTest) event is
    /// generated.
    fn le_transmitter_test(
        &mut self,
        channel: u8,
        payload_length: usize,
        payload: TestPacketPayload,
    ) -> nb::Result<(), Error<E, Self::VS>>;

    /// Stops any test which is in progress.
    ///
    /// See the Bluetooth spec, Vol 2, Part E, Section 7.8.30.
    ///
    /// # Errors
    ///
    /// Only underlying communication errors are reported.
    ///
    /// # Generated events
    ///
    /// A [Command Complete](::event::command::ReturnParameters::LeTestEnd) event is generated.
    fn le_test_end(&mut self) -> nb::Result<(), E>;
}

/// Errors that may occur when sending commands to the controller.  Must be specialized on the types
/// of communication errors.
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum Error<E, VS> {
    /// For the [`disconnect`](Hci::disconnect) command: The provided reason is not a valid
    /// disconnection reason. Includes the reported reason.
    BadDisconnectionReason(::Status<VS>),

    /// For the [`le_set_random_address`](Hci::le_set_random_address) command: The provided address
    /// does not meet the rules for random addresses in the Bluetooth Spec, Vol 6, Part B, Section
    /// 1.3.  Includes the invalid address.
    BadRandomAddress(::BdAddr),

    /// For the [`le_set_advertising_parameters`](Hci::le_set_advertising_parameters) command: The
    /// channel map did not include any enabled channels.  Includes the provided channel map.
    BadChannelMap(Channels),

    /// For the [`le_set_advertising_data`](Hci::le_set_advertising_data) or
    /// [`le_set_scan_response_data`](Hci::le_set_scan_response_data) commands: The provided data is
    /// too long to fit in the command.  The maximum allowed length is 31.  The actual length is
    /// returned.
    AdvertisingDataTooLong(usize),

    /// For the [`le_create_connection`](Hci::le_create_connection) command: the connection length
    /// range is inverted (i.e, the minimum is greater than the maximum). Returns the range, min
    /// first.
    BadConnectionLengthRange(Duration, Duration),

    /// For the [`le_set_host_channel_classification`](Hci::le_set_host_channel_classification)
    /// command: all channels were marked 'bad'.
    NoValidChannel,

    /// For the [`le_receiver_test`](Hci::le_receiver_test) and
    /// [`le_transmitter_test`](Hci::le_transmitter_test) commands: the channel was out of
    /// range. The maximum allowed channel is 39. Includes the invalid value.
    InvalidTestChannel(u8),

    /// For the [`le_transmitter_test`](Hci::le_transmitter_test) command: The payload length is
    /// invalid. The maximum value is 37. Includes the invalid value.
    InvalidTestPayloadLength(usize),

    /// Underlying communication error.
    Comm(E),
}

fn rewrap_as_comm<E, VS>(err: nb::Error<E>) -> nb::Error<Error<E, VS>> {
    match err {
        nb::Error::WouldBlock => nb::Error::WouldBlock,
        nb::Error::Other(e) => nb::Error::Other(Error::Comm(e)),
    }
}

fn write_command<Header, T, E>(
    controller: &mut T,
    opcode: ::opcode::Opcode,
    params: &[u8],
) -> nb::Result<(), E>
where
    Header: HciHeader,
    T: ::Controller<Error = E>,
{
    let mut header = [0; MAX_HEADER_LENGTH];
    Header::new(opcode, params.len()).into_bytes(&mut header);

    controller.write(&header[..Header::HEADER_LENGTH], &params)
}

fn set_outbound_data<Header, T, E, VS>(
    controller: &mut T,
    opcode: ::opcode::Opcode,
    data: &[u8],
) -> nb::Result<(), Error<E, VS>>
where
    Header: HciHeader,
    T: ::Controller<Error = E>,
{
    const MAX_DATA_LEN: usize = 31;
    if data.len() > MAX_DATA_LEN {
        return Err(nb::Error::Other(Error::AdvertisingDataTooLong(data.len())));
    }
    let mut params = [0; 32];
    params[0] = data.len() as u8;
    params[1..=data.len()].copy_from_slice(data);
    write_command::<Header, T, E>(controller, opcode, &params).map_err(rewrap_as_comm)
}

impl<E, T, Header> Hci<E> for T
where
    T: ::Controller<Error = E, Header = Header>,
    Header: HciHeader,
{
    type VS = <<T as ::Controller>::Vendor as ::Vendor>::Status;

    fn disconnect(
        &mut self,
        conn_handle: ::ConnectionHandle,
        reason: ::Status<Self::VS>,
    ) -> nb::Result<(), Error<E, Self::VS>> {
        match reason {
            ::Status::AuthFailure
            | ::Status::RemoteTerminationByUser
            | ::Status::RemoteTerminationLowResources
            | ::Status::RemoteTerminationPowerOff
            | ::Status::UnsupportedRemoteFeature
            | ::Status::PairingWithUnitKeyNotSupported
            | ::Status::UnacceptableConnectionParameters => (),
            _ => return Err(nb::Error::Other(Error::BadDisconnectionReason(reason))),
        }

        let mut params = [0; 3];
        LittleEndian::write_u16(&mut params[0..], conn_handle.0);
        params[2] = reason.into();
        write_command::<Header, T, E>(self, ::opcode::DISCONNECT, &params).map_err(rewrap_as_comm)
    }

    fn read_remote_version_information(
        &mut self,
        conn_handle: ::ConnectionHandle,
    ) -> nb::Result<(), E> {
        let mut params = [0; 2];
        LittleEndian::write_u16(&mut params, conn_handle.0);
        write_command::<Header, T, E>(self, ::opcode::READ_REMOTE_VERSION_INFO, &params)
    }

    fn set_event_mask(&mut self, mask: EventFlags) -> nb::Result<(), E> {
        let mut params = [0; 8];
        LittleEndian::write_u64(&mut params, mask.bits());

        write_command::<Header, T, E>(self, ::opcode::SET_EVENT_MASK, &params)
    }

    fn reset(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::RESET, &[])
    }

    fn read_tx_power_level(
        &mut self,
        conn_handle: ::ConnectionHandle,
        power_level_type: TxPowerLevel,
    ) -> nb::Result<(), E> {
        let mut params = [0; 3];
        LittleEndian::write_u16(&mut params, conn_handle.0);
        params[2] = power_level_type as u8;
        write_command::<Header, T, E>(self, ::opcode::READ_TX_POWER_LEVEL, &params)
    }

    fn read_local_version_information(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::READ_LOCAL_VERSION_INFO, &[])
    }

    fn read_local_supported_commands(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::READ_LOCAL_SUPPORTED_COMMANDS, &[])
    }

    fn read_local_supported_features(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::READ_LOCAL_SUPPORTED_FEATURES, &[])
    }

    fn read_bd_addr(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::READ_BD_ADDR, &[])
    }

    fn read_rssi(&mut self, conn_handle: ::ConnectionHandle) -> nb::Result<(), E> {
        let mut params = [0; 2];
        LittleEndian::write_u16(&mut params, conn_handle.0);
        write_command::<Header, T, E>(self, ::opcode::READ_RSSI, &params)
    }

    fn le_set_event_mask(&mut self, event_mask: LeEventFlags) -> nb::Result<(), E> {
        let mut params = [0; 8];
        LittleEndian::write_u64(&mut params, event_mask.bits());

        write_command::<Header, T, E>(self, ::opcode::LE_SET_EVENT_MASK, &params)
    }

    fn le_read_buffer_size(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_READ_BUFFER_SIZE, &[])
    }

    fn le_read_local_supported_features(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_READ_LOCAL_SUPPORTED_FEATURES, &[])
    }

    fn le_set_random_address(&mut self, bd_addr: ::BdAddr) -> nb::Result<(), Error<E, Self::VS>> {
        validate_random_address(&bd_addr).map_err(nb::Error::Other)?;
        write_command::<Header, T, E>(self, ::opcode::LE_SET_RANDOM_ADDRESS, &bd_addr.0)
            .map_err(rewrap_as_comm)
    }

    fn le_set_advertising_parameters(
        &mut self,
        params: &AdvertisingParameters,
    ) -> nb::Result<(), Error<E, Self::VS>> {
        let mut bytes = [0; 15];
        params.into_bytes(&mut bytes).map_err(nb::Error::Other)?;
        write_command::<Header, T, E>(self, ::opcode::LE_SET_ADVERTISING_PARAMETERS, &bytes)
            .map_err(rewrap_as_comm)
    }

    fn le_read_advertising_channel_tx_power(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_READ_ADVERTISING_CHANNEL_TX_POWER, &[])
    }

    fn le_set_advertising_data(&mut self, data: &[u8]) -> nb::Result<(), Error<E, Self::VS>> {
        set_outbound_data::<Header, T, E, Self::VS>(self, ::opcode::LE_SET_ADVERTISING_DATA, data)
    }

    fn le_set_scan_response_data(&mut self, data: &[u8]) -> nb::Result<(), Error<E, Self::VS>> {
        set_outbound_data::<Header, T, E, Self::VS>(self, ::opcode::LE_SET_SCAN_RESPONSE_DATA, data)
    }

    #[cfg(not(feature = "version-5-0"))]
    fn le_set_advertise_enable(&mut self, enable: bool) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_SET_ADVERTISE_ENABLE, &[enable as u8])
    }

    #[cfg(feature = "version-5-0")]
    fn le_set_advertising_enable(&mut self, enable: bool) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_SET_ADVERTISE_ENABLE, &[enable as u8])
    }

    fn le_set_scan_parameters(&mut self, params: &ScanParameters) -> nb::Result<(), E> {
        let mut bytes = [0; 7];
        params.into_bytes(&mut bytes);
        write_command::<Header, T, E>(self, ::opcode::LE_SET_SCAN_PARAMETERS, &bytes)
    }

    fn le_set_scan_enable(&mut self, enable: bool, filter_duplicates: bool) -> nb::Result<(), E> {
        write_command::<Header, T, E>(
            self,
            ::opcode::LE_SET_SCAN_ENABLE,
            &[enable as u8, filter_duplicates as u8],
        )
    }

    fn le_create_connection(&mut self, params: &ConnectionParameters) -> nb::Result<(), E> {
        let mut bytes = [0; 25];
        params.into_bytes(&mut bytes);
        write_command::<Header, T, E>(self, ::opcode::LE_CREATE_CONNECTION, &bytes)
    }

    fn le_create_connection_cancel(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_CREATE_CONNECTION_CANCEL, &[])
    }

    fn le_read_white_list_size(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_READ_WHITE_LIST_SIZE, &[])
    }

    fn le_clear_white_list(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_CLEAR_WHITE_LIST, &[])
    }

    fn le_add_device_to_white_list(&mut self, addr: ::BdAddrType) -> nb::Result<(), E> {
        let mut params = [0; 7];
        addr.into_bytes(&mut params);
        write_command::<Header, T, E>(self, ::opcode::LE_ADD_DEVICE_TO_WHITE_LIST, &params)
    }

    #[cfg(feature = "version-5-0")]
    fn le_add_anon_advertising_devices_to_white_list(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(
            self,
            ::opcode::LE_ADD_DEVICE_TO_WHITE_LIST,
            &[0xFF, 0, 0, 0, 0, 0, 0],
        )
    }

    fn le_remove_device_from_white_list(&mut self, addr: ::BdAddrType) -> nb::Result<(), E> {
        let mut params = [0; 7];
        addr.into_bytes(&mut params);
        write_command::<Header, T, E>(self, ::opcode::LE_REMOVE_DEVICE_FROM_WHITE_LIST, &params)
    }

    #[cfg(feature = "version-5-0")]
    fn le_remove_anon_advertising_devices_from_white_list(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(
            self,
            ::opcode::LE_REMOVE_DEVICE_FROM_WHITE_LIST,
            &[0xFF, 0, 0, 0, 0, 0, 0],
        )
    }

    fn le_connection_update(&mut self, params: &ConnectionUpdateParameters) -> nb::Result<(), E> {
        let mut bytes = [0; 14];
        params.into_bytes(&mut bytes);
        write_command::<Header, T, E>(self, ::opcode::LE_CONNECTION_UPDATE, &bytes)
    }

    fn le_set_host_channel_classification(
        &mut self,
        channels: ::ChannelClassification,
    ) -> nb::Result<(), Error<E, Self::VS>> {
        if channels.is_empty() {
            return Err(nb::Error::Other(Error::NoValidChannel));
        }

        let mut bytes = [0; 5];
        channels.into_bytes(&mut bytes);
        write_command::<Header, T, E>(self, ::opcode::LE_SET_HOST_CHANNEL_CLASSIFICATION, &bytes)
            .map_err(rewrap_as_comm)
    }

    fn le_read_channel_map(&mut self, conn_handle: ::ConnectionHandle) -> nb::Result<(), E> {
        let mut bytes = [0; 2];
        LittleEndian::write_u16(&mut bytes, conn_handle.0);
        write_command::<Header, T, E>(self, ::opcode::LE_READ_CHANNEL_MAP, &bytes)
    }

    fn le_read_remote_used_features(
        &mut self,
        conn_handle: ::ConnectionHandle,
    ) -> nb::Result<(), E> {
        let mut bytes = [0; 2];
        LittleEndian::write_u16(&mut bytes, conn_handle.0);
        write_command::<Header, T, E>(self, ::opcode::LE_READ_REMOTE_USED_FEATURES, &bytes)
    }

    fn le_encrypt(&mut self, params: &AesParameters) -> nb::Result<(), E> {
        let mut bytes = [0; 32];
        bytes[..16].copy_from_slice(&params.key.0);
        bytes[16..].copy_from_slice(&params.plaintext_data.0);
        write_command::<Header, T, E>(self, ::opcode::LE_ENCRYPT, &bytes)
    }

    fn le_rand(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_RAND, &[])
    }

    fn le_start_encryption(&mut self, params: &EncryptionParameters) -> nb::Result<(), E> {
        let mut bytes = [0; 28];
        LittleEndian::write_u16(&mut bytes[0..], params.conn_handle.0);
        LittleEndian::write_u64(&mut bytes[2..], params.random_number);
        LittleEndian::write_u16(&mut bytes[10..], params.encrypted_diversifier);
        bytes[12..].copy_from_slice(&params.long_term_key.0);
        write_command::<Header, T, E>(self, ::opcode::LE_START_ENCRYPTION, &bytes)
    }

    fn le_long_term_key_request_reply(
        &mut self,
        conn_handle: ::ConnectionHandle,
        key: &EncryptionKey,
    ) -> nb::Result<(), E> {
        let mut bytes = [0; 18];
        LittleEndian::write_u16(&mut bytes[0..], conn_handle.0);
        bytes[2..].copy_from_slice(&key.0);
        write_command::<Header, T, E>(self, ::opcode::LE_LTK_REQUEST_REPLY, &bytes)
    }

    fn le_long_term_key_request_negative_reply(
        &mut self,
        conn_handle: ::ConnectionHandle,
    ) -> nb::Result<(), E> {
        let mut bytes = [0; 2];
        LittleEndian::write_u16(&mut bytes[0..], conn_handle.0);
        write_command::<Header, T, E>(self, ::opcode::LE_LTK_REQUEST_NEGATIVE_REPLY, &bytes)
    }

    fn le_read_supported_states(&mut self) -> nb::Result<(), E> {
        write_command::<Header, T, E>(self, ::opcode::LE_READ_STATES, &[])
    }

    fn le_receiver_test(&mut self, channel: u8) -> nb::Result<(), Error<E, Self::VS>> {
        if channel > MAX_TEST_CHANNEL {
            return Err(nb::Error::Other(Error::InvalidTestChannel(channel)));
        }

        write_command::<Header, T, E>(self, ::opcode::LE_RECEIVER_TEST, &[channel])
            .map_err(rewrap_as_comm)
    }

    fn le_transmitter_test(
        &mut self,
        channel: u8,
        payload_length: usize,
        payload: TestPacketPayload,
    ) -> nb::Result<(), Error<E, Self::VS>> {
        if channel > MAX_TEST_CHANNEL {
            return Err(nb::Error::Other(Error::InvalidTestChannel(channel)));
        }

        const MAX_PAYLOAD_LENGTH: usize = 0x25;
        if payload_length > MAX_PAYLOAD_LENGTH {
            return Err(nb::Error::Other(Error::InvalidTestPayloadLength(
                payload_length,
            )));
        }

        write_command::<Header, _, _>(
            self,
            ::opcode::LE_TRANSMITTER_TEST,
            &[channel, payload_length as u8, payload as u8],
        ).map_err(rewrap_as_comm)
    }

    fn le_test_end(&mut self) -> nb::Result<(), E> {
        write_command::<Header, _, _>(self, ::opcode::LE_TEST_END, &[])
    }
}

const MAX_TEST_CHANNEL: u8 = 0x27;

bitflags! {
    /// Event flags defined for the [`set_event_mask`](Hci::set_event_mask) command.
    #[derive(Default)]
    pub struct EventFlags : u64 {
        /// Inquiry complete event
        const INQUIRY_COMPLETE = 0x0000000000000001;
        /// Inquiry result event
        const INQUIRY_RESULT = 0x0000000000000002;
        /// Connection complete event
        const CONNECTION_COMPLETE = 0x0000000000000004;
        /// Connection request event
        const CONNECTION_REQUEST = 0x0000000000000008;
        /// Disconnection complete event
        const DISCONNECTION_COMPLETE = 0x0000000000000010;
        /// Authentication complete event
        const AUTHENTICATION_COMPLETE = 0x0000000000000020;
        /// Remote name request complete event
        const REMOTE_NAME_REQUEST_COMPLETE = 0x0000000000000040;
        /// Encryption change event
        const ENCRYPTION_CHANGE = 0x0000000000000080;
        /// Change connection link key complete event
        const CHANGE_CONNECTION_LINK_KEY_COMPLETE = 0x0000000000000100;
        /// Master link key complete event
        const MASTER_LINK_KEY_COMPLETE = 0x0000000000000200;
        /// Read remote supported features complete event
        const READ_REMOTE_SUPPORTED_FEATURES_COMPLETE = 0x0000000000000400;
        /// Read remote version information complete event
        const READ_REMOTE_VERSION_INFORMATION_COMPLETE = 0x0000000000000800;
        /// Qos setup complete event
        const QOS_SETUP_COMPLETE = 0x0000000000001000;
        /// Hardware error event
        const HARDWARE_ERROR = 0x0000000000008000;
        /// Flush occurred event
        const FLUSH_OCCURRED = 0x0000000000010000;
        /// Role change event
        const ROLE_CHANGE = 0x0000000000020000;
        /// Mode change event
        const MODE_CHANGE = 0x0000000000080000;
        /// Return link keys event
        const RETURN_LINK_KEYS = 0x0000000000100000;
        /// Pin code request event
        const PIN_CODE_REQUEST = 0x0000000000200000;
        /// Link key request event
        const LINK_KEY_REQUEST = 0x0000000000400000;
        /// Link key notification event
        const LINK_KEY_NOTIFICATION = 0x0000000000800000;
        /// Loopback command event
        const LOOPBACK_COMMAND = 0x0000000001000000;
        /// Data buffer overflow event
        const DATA_BUFFER_OVERFLOW = 0x0000000002000000;
        /// Max slots change event
        const MAX_SLOTS_CHANGE = 0x0000000004000000;
        /// Read clock offset complete event
        const READ_CLOCK_OFFSET_COMPLETE = 0x0000000008000000;
        /// Connection packet type changed event
        const CONNECTION_PACKET_TYPE_CHANGED = 0x0000000010000000;
        /// Qos violation event
        const QOS_VIOLATION = 0x0000000020000000;
        /// Page scan mode change event. Deprecated in Bluetooth spec.
        #[deprecated]
        const PAGE_SCAN_MODE_CHANGE = 0x0000000040000000;
        /// Page scan repetition mode change event
        const PAGE_SCAN_REPETITION_MODE_CHANGE = 0x0000000080000000;
        /// Flow specification complete event
        const FLOW_SPECIFICATION_COMPLETE = 0x0000000100000000;
        /// Inquiry result with rssi event
        const INQUIRY_RESULT_WITH_RSSI = 0x0000000200000000;
        /// Read remote extended features complete event
        const READ_REMOTE_EXTENDED_FEATURES_COMPLETE = 0x0000000400000000;
        /// Synchronous connection complete event
        const SYNCHRONOUS_CONNECTION_COMPLETE = 0x0000080000000000;
        /// Synchronous connection changed event
        const SYNCHRONOUS_CONNECTION_CHANGED = 0x0000100000000000;
        /// Sniff subrating event
        const SNIFF_SUBRATING = 0x0000200000000000;
        /// Extended inquiry result event
        const EXTENDED_INQUIRY_RESULT = 0x0000400000000000;
        /// Encryption key refresh complete event
        const ENCRYPTION_KEY_REFRESH_COMPLETE = 0x0000800000000000;
        /// Io capability request event
        const IO_CAPABILITY_REQUEST = 0x0001000000000000;
        /// Io capability request reply event
        const IO_CAPABILITY_REQUEST_REPLY = 0x0002000000000000;
        /// User confirmation request event
        const USER_CONFIRMATION_REQUEST = 0x0004000000000000;
        /// User passkey request event
        const USER_PASSKEY_REQUEST = 0x0008000000000000;
        /// Remote oob data request event
        const REMOTE_OOB_DATA_REQUEST = 0x0010000000000000;
        /// Simple pairing complete event
        const SIMPLE_PAIRING_COMPLETE = 0x0020000000000000;
        /// Link supervision timeout changed event
        const LINK_SUPERVISION_TIMEOUT_CHANGED = 0x0080000000000000;
        /// Enhanced flush complete event
        const ENHANCED_FLUSH_COMPLETE = 0x0100000000000000;
        /// User passkey notification event
        const USER_PASSKEY_NOTIFICATION = 0x0400000000000000;
        /// Keypress notification event
        const KEYPRESS_NOTIFICATION = 0x0800000000000000;
        /// Remote host supported features notification event
        const REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION = 0x1000000000000000;
        /// LE meta-events
        const LE_META_EVENT = 0x2000000000000000;
    }
}

/// For the [`read_tx_power_level`](Hci::read_tx_power_level) command, the allowed values for the
/// type of power level to read.
///
/// See the Bluetooth spec, Vol 2, Part E, Section 7.3.35.
#[repr(u8)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum TxPowerLevel {
    /// Read Current Transmit Power Level.
    Current = 0x00,
    /// Read Maximum Transmit Power Level.
    Maximum = 0x01,
}

bitflags! {
    /// Event flags defined for the [`le_set_event_mask`](Hci::le_set_event_mask) command.
    #[derive(Default)]
    pub struct LeEventFlags : u64 {
        /// LE connection complete event
        const CONNECTION_COMPLETE = 1 << 0;
        /// LE advertising report event
        const ADVERTISING_REPORT = 1 << 1;
        /// LE connection update complete event
        const CONNECTION_UPDATE_COMPLETE = 1 << 2;
        /// LE read remote features complete event
        const READ_REMOTE_FEATURES_COMPLETE = 1 << 3;
        /// LE long term key request event
        const LONG_TERM_KEY_REQUEST = 1 << 4;
        /// LE remote connection parameter request event
        const REMOTE_CONNECTION_PARAMETER_REQUEST = 1 << 5;
        /// LE data length change event
        #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
        const DATA_LENGTH_CHANGE = 1 << 6;
        /// LE read local p256 public key complete event
        #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
        const READ_LOCAL_P256_PUBLIC_KEY_COMPLETE = 1 << 7;
        /// LE generate dhkey complete event
        #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
        const GENERATE_DHKEY_COMPLETE = 1 << 8;
        /// LE enhanced connection complete event
        #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
        const ENHANCED_CONNECTION_COMPLETE = 1 << 9;
        /// LE directed advertising report event
        #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
        const DIRECTED_ADVERTISING_REPORT = 1 << 10;
        /// LE phy update complete event
        #[cfg(feature = "version-5-0")]
        const PHY_UPDATE_COMPLETE = 1 << 11;
        /// LE extended advertising report event
        #[cfg(feature = "version-5-0")]
        const EXTENDED_ADVERTISING_REPORT = 1 << 12;
        /// LE periodic advertising sync established event
        #[cfg(feature = "version-5-0")]
        const PERIODIC_ADVERTISING_SYNC_ESTABLISHED = 1 << 13;
        /// LE periodic advertising report event
        #[cfg(feature = "version-5-0")]
        const PERIODIC_ADVERTISING_REPORT = 1 << 14;
        /// LE periodic advertising sync lost event
        #[cfg(feature = "version-5-0")]
        const PERIODIC_ADVERTISING_SYNC_LOST = 1 << 15;
        /// LE extended scan timeout event
        #[cfg(feature = "version-5-0")]
        const EXTENDED_SCAN_TIMEOUT = 1 << 16;
        /// LE extended advertising set terminated event
        #[cfg(feature = "version-5-0")]
        const EXTENDED_ADVERTISING_SET_TERMINATED = 1 << 17;
        /// LE scan request received event
        #[cfg(feature = "version-5-0")]
        const SCAN_REQUEST_RECEIVED = 1 << 18;
        /// LE channel selection algorithm event
        #[cfg(feature = "version-5-0")]
        const CHANNEL_SELECTION_ALGORITHM = 1 << 19;
    }
}

fn validate_random_address<E, VS>(bd_addr: &::BdAddr) -> Result<(), Error<E, VS>> {
    let (pop_count, bit_count) = match (bd_addr.0[5] & 0b1100_0000) >> 6 {
        0b00 | 0b11 => (pop_count_except_top_2_bits(&bd_addr.0[0..]), 46),
        0b10 => (pop_count_except_top_2_bits(&bd_addr.0[3..]), 22),
        _ => return Err(Error::BadRandomAddress(*bd_addr)),
    };

    if pop_count == 0 || pop_count == bit_count {
        return Err(Error::BadRandomAddress(*bd_addr));
    }

    Ok(())
}

fn pop_count_except_top_2_bits(bytes: &[u8]) -> u32 {
    let mut pop_count = 0;
    for byte in bytes[..bytes.len() - 1].iter() {
        pop_count += pop_count_of(*byte);
    }
    pop_count += pop_count_of(bytes[bytes.len() - 1] & 0b0011_1111);

    pop_count
}

fn pop_count_of(byte: u8) -> u32 {
    byte.count_ones()
}

/// Parameters for the [`le_set_advertising_parameters`](Hci::le_set_advertising_parameters)
/// command.
#[derive(Clone, Debug)]
pub struct AdvertisingParameters {
    /// Type and allowable duration of advertising.
    pub advertising_interval: AdvertisingInterval,

    /// Indicates the type of address being used in the advertising packets.
    ///
    /// If this is [`PrivateFallbackPublic`](OwnAddressType) or
    /// [`PrivateFallbackRandom`](OwnAddressType), the
    /// [`peer_address`](AdvertisingParameters::peer_address) parameter contains the peer's identity
    /// address and type. These parameters are used to locate the corresponding local IRK in the
    /// resolving list; this IRK is used to generate the own address used in the advertisement.
    pub own_address_type: OwnAddressType,

    /// If directed advertising is performed, i.e. when `advertising_type` is set to
    /// [`ConnectableDirectedHighDutyCycle`](AdvertisingType::ConnectableDirectedHighDutyCycle) or
    /// [`ConnectableDirectedLowDutyCycle`](AdvertisingType::ConnectableDirectedLowDutyCycle), then
    /// `peer_address` shall be valid.
    ///
    /// If `own_address_type` is [`PrivateFallbackPublic`](OwnAddressType) or
    /// [`PrivateFallbackRandom`](OwnAddressType), the Controller generates
    /// the peer's Resolvable Private Address using the peer's IRK corresponding to the peer's
    /// Identity Address contained in `peer_address`.
    pub peer_address: ::BdAddrType,

    /// Bit field that indicates the advertising channels that shall be used when transmitting
    /// advertising packets. At least one channel bit shall be set in the bitfield.
    pub advertising_channel_map: Channels,

    /// This parameter shall be ignored when directed advertising is enabled.
    pub advertising_filter_policy: AdvertisingFilterPolicy,
}

impl AdvertisingParameters {
    fn into_bytes<E, VS>(&self, bytes: &mut [u8]) -> Result<(), Error<E, VS>> {
        assert_eq!(bytes.len(), 15);

        if self.advertising_channel_map.is_empty() {
            return Err(Error::BadChannelMap(self.advertising_channel_map));
        }

        self.advertising_interval.into_bytes(&mut bytes[0..5]);
        bytes[5] = self.own_address_type as u8;
        self.peer_address.into_bytes(&mut bytes[6..13]);
        bytes[13] = self.advertising_channel_map.bits();
        bytes[14] = self.advertising_filter_policy as u8;

        Ok(())
    }
}

/// Indicates the type of address being used in the advertising packets.
#[repr(u8)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum OwnAddressType {
    /// Public Device Address (default)
    Public = 0x00,
    /// Random Device Address
    Random = 0x01,
    /// Controller generates Resolvable Private Address based on the local IRK from resolving
    /// list. If resolving list contains no matching entry, use public address.
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    PrivateFallbackPublic = 0x02,
    /// Controller generates Resolvable Private Address based on the local IRK from resolving
    /// list. If resolving list contains no matching entry, use random address from
    /// [`le_set_random_address`](Hci::le_set_random_address).
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    PrivateFallbackRandom = 0x03,
}

bitflags! {
    /// The advertising channels that shall be used when transmitting advertising packets.
    pub struct Channels : u8 {
        /// Channel 37 shall be used
        const CH_37 = 0b0000_0001;
        /// Channel 38 shall be used
        const CH_38 = 0b0000_0010;
        /// Channel 39 shall be used
        const CH_39 = 0b0000_0100;
    }
}

impl Default for Channels {
    fn default() -> Channels {
        Channels::all()
    }
}

/// Possible filter policies used for undirected advertising.
///
/// See [`AdvertisingParameters`]($crate::host::AdvertisingParameters).
#[repr(u8)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum AdvertisingFilterPolicy {
    /// Process scan and connection requests from all devices (i.e., the White List is not in use)
    /// (default).
    AllowConnectionAndScan = 0x00,
    /// Process connection requests from all devices and only scan requests from devices that are in
    /// the White List.
    AllowConnectionWhiteListScan = 0x01,
    /// Process scan requests from all devices and only connection requests from devices that are in
    /// the White List.
    WhiteListConnectionAllowScan = 0x02,
    /// Process scan and connection requests only from devices in the White List.
    WhiteListConnectionAndScan = 0x03,
}

/// Parameters for the [`le_set_scan_parameters`](Hci::le_set_scan_parameters) command.
#[derive(Clone, Debug)]
pub struct ScanParameters {
    /// The type of scan to perform
    pub scan_type: ScanType,

    /// Recommendation from the host on how frequently the controller should scan.  See the
    /// Bluetooth spec, Vol 6, Part B, Section 4.5.3.
    pub scan_window: ScanWindow,

    /// Indicates the type of address being used in the scan request packets.
    pub own_address_type: OwnAddressType,

    /// Indicates which advertising packets to accept.
    pub filter_policy: ScanFilterPolicy,
}

impl ScanParameters {
    fn into_bytes(&self, bytes: &mut [u8]) {
        assert_eq!(bytes.len(), 7);

        bytes[0] = self.scan_type as u8;
        self.scan_window.into_bytes(&mut bytes[1..5]);
        bytes[5] = self.own_address_type as u8;
        bytes[6] = self.filter_policy as u8;
    }
}

/// Types of scan to perform.
///
/// See [`ScanParameters`] and [`le_set_scan_parameters`](Hci::le_set_scan_parameters).
#[derive(Copy, Clone, Debug)]
#[repr(u8)]
pub enum ScanType {
    /// Passive Scanning. No scanning PDUs shall be sent (default).
    Passive = 0x00,
    /// Active scanning. Scanning PDUs may be sent.
    Active = 0x01,
}

/// Which advertising packets to accept from a scan.
///
/// See [`ScanParameters`] and [`le_set_scan_parameters`](Hci::le_set_scan_parameters).
#[derive(Copy, Clone, Debug)]
#[repr(u8)]
pub enum ScanFilterPolicy {
    /// Accept all advertising packets except directed advertising packets not addressed to this
    /// device (default).
    AcceptAll = 0x00,
    /// Accept only advertising packets from devices where the advertiser’s address is in the White
    /// List. Directed advertising packets which are not addressed to this device shall be ignored.
    WhiteList = 0x01,
    /// Accept all advertising packets except directed advertising packets where the initiator's
    /// identity address does not address this device.
    ///
    /// Note: Directed advertising packets where the initiator's address is a resolvable private
    /// address that cannot be resolved are also accepted.
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    AddressedToThisDevice = 0x02,
    /// Accept all advertising packets except:
    /// - advertising packets where the advertiser's identity address is not in the White List; and
    /// - directed advertising packets where the initiator's identity addressdoes not address this
    ///   device
    ///
    /// Note: Directed advertising packets where the initiator's address is a resolvable private
    /// address that cannot be resolved are also accepted.
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    WhiteListAddressedToThisDevice = 0x03,
}

/// Parameters for the [`le_create_connection`](Hci::le_create_connection`) event.
#[derive(Clone, Debug)]
pub struct ConnectionParameters {
    /// Recommendation from the host on how frequently the Controller should scan.
    pub scan_window: ScanWindow,

    /// Determines whether the White List is used.  If the White List is not used, `peer_address`
    /// specifies the address type and address of the advertising device to connect to.
    pub initiator_filter_policy: ConnectionFilterPolicy,

    /// Indicates the type and value of the address used in the connectable advertisement sent by
    /// the peer. The Host shall not use [`PublicIdentityAddress`](PeerAddrType) or
    /// [`RandomIdentityAddress`](PeerAddrType) (both introduced in v4.2) if both the Host and the
    /// Controller support the `le_set_privacy_mode` command (introduced in v5.0). If a Controller
    /// that supports the LE Set Privacy Mode command receives the
    /// [`le_create_connection`](Hci::le_create_connection) command with `peer_address` set to
    /// either [`PublicIdentityAddress`](PeerAddrType) or [`RandomIdentityAddress`](PeerAddrType),
    /// it may use either device privacy mode or network privacy mode for that peer device.
    pub peer_address: PeerAddrType,

    /// The type of address being used in the connection request packets.
    ///
    /// If this is [`Random`](OwnAddressType::Random) and the random address for the device has not
    /// been initialized, the Controller shall return the error code
    /// [`::Status::InvalidParameters`].
    ///
    /// If this is [`PrivateFallbackRemote`](OwnAddressType), `initiator_filter_policy` is
    /// [`UseAddress`](ConnectionFilterPolicy::UseAddress), the controller's resolving list did not
    /// contain a matching entry, and the random address for the device has not been initialized,
    /// the Controller shall return the error code [`::Status::InvalidParameters`].
    ///
    /// If this is set [`PrivateFallbackRandom`](`OwnAddressType`), `initiator_filter_policy` is
    /// [`WhiteList`](ConnectionFilterPolicy::WhiteList), and the random address for the device has
    /// not been initialized, the Controller shall return the error code
    /// [`::Status::InvalidParameters`].
    pub own_address_type: OwnAddressType,

    /// Defines the minimum and maximum allowed connection interval, latency, and supervision
    /// timeout.
    pub conn_interval: ConnectionInterval,

    /// Informative parameters providing the Controller with the expected minimum and maximum length
    /// of the connection events.
    pub expected_connection_length: ExpectedConnectionLength,
}

impl ConnectionParameters {
    fn into_bytes(&self, bytes: &mut [u8]) {
        assert_eq!(bytes.len(), 25);

        self.scan_window.into_bytes(&mut bytes[0..4]);
        bytes[4] = self.initiator_filter_policy as u8;
        match self.initiator_filter_policy {
            ConnectionFilterPolicy::UseAddress => {
                self.peer_address.into_bytes(&mut bytes[5..12]);
            }
            ConnectionFilterPolicy::WhiteList => {
                bytes[5..12].copy_from_slice(&[0; 7]);
            }
        }
        bytes[12] = self.own_address_type as u8;
        self.conn_interval.into_bytes(&mut bytes[13..21]);
        self.expected_connection_length
            .into_bytes(&mut bytes[21..25]);
    }
}

/// Possible values for the initiator filter policy in the
/// [`le_create_connection`](Hci::le_create_connection) command.
#[derive(Copy, Clone, Debug)]
#[repr(u8)]
pub enum ConnectionFilterPolicy {
    /// White List is not used to determine which advertiser to connect to.  `peer_address` shall be
    /// used in the connection complete event.
    UseAddress = 0x00,

    /// White List is used to determine which advertiser to connect to. `peer_address` shall be
    /// ignored in the connection complete event.
    WhiteList = 0x01,
}

/// Possible values for the peer address in the [`le_create_connection`](Hci::le_create_connection)
/// command.
#[derive(Copy, Clone, Debug)]
pub enum PeerAddrType {
    /// Public Device Address
    PublicDeviceAddress(::BdAddr),
    /// Random Device Address
    RandomDeviceAddress(::BdAddr),
    /// Public Identity Address (Corresponds to peer's Resolvable Private Address). This value shall
    /// only be used by the Host if either the Host or the Controller does not support the LE Set
    /// Privacy Mode command.
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    PublicIdentityAddress(::BdAddr),
    /// Random (static) Identity Address (Corresponds to peer’s Resolvable Private Address). This
    /// value shall only be used by a Host if either the Host or the Controller does not support the
    /// LE Set Privacy Mode command.
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    RandomIdentityAddress(::BdAddr),
}

impl PeerAddrType {
    /// Serialize the peer address into the given byte buffer.
    ///
    /// # Panics
    ///
    /// `bytes` must be 7 bytes long.
    #[cfg(not(any(feature = "version-4-2", feature = "version-5-0")))]
    pub fn into_bytes(&self, bytes: &mut [u8]) {
        assert_eq!(bytes.len(), 7);
        match *self {
            PeerAddrType::PublicDeviceAddress(bd_addr) => {
                bytes[0] = 0x00;
                bytes[1..7].copy_from_slice(&bd_addr.0);
            }
            PeerAddrType::RandomDeviceAddress(bd_addr) => {
                bytes[0] = 0x01;
                bytes[1..7].copy_from_slice(&bd_addr.0);
            }
        }
    }

    /// Serialize the peer address into the given byte buffer.
    ///
    /// # Panics
    ///
    /// `bytes` must be 7 bytes long.
    #[cfg(any(feature = "version-4-2", feature = "version-5-0"))]
    pub fn into_bytes(&self, bytes: &mut [u8]) {
        assert_eq!(bytes.len(), 7);
        match *self {
            PeerAddrType::PublicDeviceAddress(bd_addr) => {
                bytes[0] = 0x00;
                bytes[1..7].copy_from_slice(&bd_addr.0);
            }
            PeerAddrType::RandomDeviceAddress(bd_addr) => {
                bytes[0] = 0x01;
                bytes[1..7].copy_from_slice(&bd_addr.0);
            }
            PeerAddrType::PublicIdentityAddress(bd_addr) => {
                bytes[0] = 0x02;
                bytes[1..7].copy_from_slice(&bd_addr.0);
            }
            PeerAddrType::RandomIdentityAddress(bd_addr) => {
                bytes[0] = 0x03;
                bytes[1..7].copy_from_slice(&bd_addr.0);
            }
        }
    }
}

/// Parameters for the [`le_connection_update`](Hci::le_connection_update) command.
///
/// See the Bluetooth spec, Vol 2, Part E, Section 7.8.18.
pub struct ConnectionUpdateParameters {
    /// Handle for identifying a connection.
    pub conn_handle: ::ConnectionHandle,

    /// Defines the connection interval, latency, and supervision timeout.
    pub conn_interval: ConnectionInterval,

    /// Information parameters providing the Controller with a hint about the expected minimum and
    /// maximum length of the connection events.
    pub expected_connection_length: ExpectedConnectionLength,
}

impl ConnectionUpdateParameters {
    fn into_bytes(&self, bytes: &mut [u8]) {
        assert_eq!(bytes.len(), 14);

        LittleEndian::write_u16(&mut bytes[0..], self.conn_handle.0);
        self.conn_interval.into_bytes(&mut bytes[2..10]);
        self.expected_connection_length
            .into_bytes(&mut bytes[10..14]);
    }
}

/// Parameters for the [`le_encrypt`](Hci::le_encrypt) command.
#[derive(Clone, Debug)]
pub struct AesParameters {
    /// Key for the encryption of the data given in the command.
    ///
    /// The most significant (last) octet of the key corresponds to `key[0]` using the notation
    /// specified in FIPS 197.
    pub key: EncryptionKey,

    /// Data block that is requested to be encrypted.
    ///
    /// The most significant (last) octet of the PlainText_Data corresponds to `in[0]` using the
    /// notation specified in FIPS 197.
    pub plaintext_data: PlaintextBlock,
}

/// Newtype for the encryption key.
///
/// See [`AesParameters`]
#[derive(Clone, PartialEq)]
pub struct EncryptionKey(pub [u8; 16]);

impl Debug for EncryptionKey {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        write!(f, "AES-128 Key ({:X?})", self.0)
    }
}

/// Newtype for the plaintext data.
///
/// See [`AesParameters`].
#[derive(Clone)]
pub struct PlaintextBlock(pub [u8; 16]);

impl Debug for PlaintextBlock {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        write!(f, "AES-128 Plaintext (REDACTED)")
    }
}

/// Parameters for the [`le_start_encryption`](Hci::le_start_encryption) command.
pub struct EncryptionParameters {
    /// ID for the connection.
    pub conn_handle: ::ConnectionHandle,

    /// Random value distrubuted by the peripheral during pairing
    pub random_number: u64,

    /// Encrypted diversifier distrubuted by the peripheral during pairing
    pub encrypted_diversifier: u16,

    /// Encryption key, distributed by the host.
    pub long_term_key: EncryptionKey,
}

/// Possible values of the `payload` parameter for the
/// [`le_transmitter_test`](Hci::le_transmitter_test) command.
#[derive(Copy, Clone, Debug)]
#[repr(u8)]
pub enum TestPacketPayload {
    /// Pseudo-Random bit sequence 9
    PrbS9 = 0x00,
    /// Pattern of alternating bits `11110000
    Nibbles10 = 0x01,
    /// Pattern of alternating bits `10101010'
    Bits10 = 0x02,
    /// Pseudo-Random bit sequence 15
    PrbS15 = 0x03,
    /// Pattern of All `1' bits
    All1 = 0x04,
    /// Pattern of All `0' bits
    All0 = 0x05,
    /// Pattern of alternating bits `00001111
    Nibbles01 = 0x06,
    /// Pattern of alternating bits `0101'
    Bits01 = 0x07,
}