btle 0.1.4

Lightweight Bluetooth Low Energy Drivers. WIP and very not stable yet!! Designed for https://github.com/AndrewGi/BluetoothMeshRust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Reexports of all the HCI LE Message/Packet types.
use super::*;
pub mod commands {
    pub use super::{
        advertise::{
            ReadAdvertisingChannelTxPower, SetAdvertisingData, SetAdvertisingEnable,
            SetAdvertisingParameters,
        },
        connection::{ReadBufferSizeV1, ReadBufferSizeV2},
        mask::SetMetaEventMask,
        random::Rand,
        scan::{SetScanEnable, SetScanParameters, SetScanResponseData},
    };
}
pub mod events {
    pub use super::report::AdvertisingReport;
}