Embassy
embassy-nrf

Crates

git

Versions

nrf52832

Flavors

Struct embassy_nrf::radio::ble::Radio

source ·
pub struct Radio<'d, T: Instance> { /* private fields */ }
Expand description

Radio driver.

Implementations§

source§

impl<'d, T: Instance> Radio<'d, T>

source

pub fn new( radio: impl Peripheral<P = T> + 'd, _irq: impl Binding<T::Interrupt, InterruptHandler<T>> + 'd ) -> Self

Create a new radio driver.

source

pub fn set_mode(&mut self, mode: Mode)

Set the radio mode

The radio must be disabled before calling this function

source

pub fn set_header_expansion(&mut self, use_s1_field: bool)

Set the header size changing the S1’s len field

The radio must be disabled before calling this function

source

pub fn set_whitening_init(&mut self, whitening_init: u8)

Set initial data whitening value Data whitening is used to avoid long sequences of zeros or ones, e.g., 0b0000000 or 0b1111111, in the data bit stream On BLE the initial value is the channel index | 0x40

The radio must be disabled before calling this function

source

pub fn set_frequency(&mut self, frequency: u32)

Set the central frequency to be used It should be in the range 2400..2500

The radio must be disabled before calling this function

source

pub fn set_access_address(&mut self, access_address: u32)

Set the acess address This address is always constants for advertising And a random value generate on each connection It is used to filter the packages

The radio must be disabled before calling this function

source

pub fn set_crc_poly(&mut self, crc_poly: u32)

Set the CRC polynomial It only uses the 24 least significant bits

The radio must be disabled before calling this function

source

pub fn set_crc_init(&mut self, crc_init: u32)

Set the CRC init value It only uses the 24 least significant bits The CRC initial value varies depending of the PDU type

The radio must be disabled before calling this function

source

pub fn set_tx_power(&mut self, tx_power: TxPower)

Set the radio tx power

The radio must be disabled before calling this function

source

pub async fn transmit(&mut self, buffer: &[u8]) -> Result<(), Error>

Send packet If the length byte in the package is greater than the buffer length the radio will read memory out of the buffer bounds

source

pub async fn receive(&mut self, buffer: &mut [u8]) -> Result<(), Error>

Receive packet If the length byte in the received package is greater than the buffer length the radio will write memory out of the buffer bounds

Trait Implementations§

source§

impl<'d, T: Instance> Drop for Radio<'d, T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'d, T> Freeze for Radio<'d, T>
where T: Freeze,

§

impl<'d, T> RefUnwindSafe for Radio<'d, T>
where T: RefUnwindSafe,

§

impl<'d, T> Send for Radio<'d, T>

§

impl<'d, T> Sync for Radio<'d, T>
where T: Sync,

§

impl<'d, T> Unpin for Radio<'d, T>
where T: Unpin,

§

impl<'d, T> !UnwindSafe for Radio<'d, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.