pub struct ReuseTxPl();
Expand description
§REUSE_TX_PL command
Reuse last transmitted payload. Packets are repeatedly transmitted as long
as CE is high. TX payload reuse is active until W_TX_PAYLOAD
or FLUSH_TX
is executed.
§Example
use nrf24l01_commands::commands::{self, Command};
assert_eq!(commands::ReuseTxPl::WORD, 0b1110_0011);
assert_eq!(commands::ReuseTxPl::bytes(), [0b1110_0011]);
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReuseTxPl
impl RefUnwindSafe for ReuseTxPl
impl Send for ReuseTxPl
impl Sync for ReuseTxPl
impl Unpin for ReuseTxPl
impl UnwindSafe for ReuseTxPl
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