pub struct Ble<'a> { /* private fields */ }
Implementations§
Source§impl Ble<'_>
impl Ble<'_>
pub fn new() -> Self
pub fn setup_clocks(&self)
pub fn power_up(&self)
pub fn ble_initialise(&self)
pub fn handle_interrupt(&self)
pub fn enable_interrupts(&self)
pub fn disable_interrupts(&self)
Trait Implementations§
Source§impl<'a> BleAdvertisementDriver<'a> for Ble<'a>
impl<'a> BleAdvertisementDriver<'a> for Ble<'a>
fn transmit_advertisement( &self, buf: &'static mut [u8], len: usize, _channel: RadioChannel, )
fn receive_advertisement(&self, _channel: RadioChannel)
fn set_receive_client(&self, client: &'a dyn RxClient)
fn set_transmit_client(&self, client: &'a dyn TxClient)
Auto Trait Implementations§
impl<'a> !Freeze for Ble<'a>
impl<'a> !RefUnwindSafe for Ble<'a>
impl<'a> !Send for Ble<'a>
impl<'a> !Sync for Ble<'a>
impl<'a> Unpin for Ble<'a>
impl<'a> !UnwindSafe for Ble<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more