Struct device_driver::CommandOperation
source · pub struct CommandOperation<'a, D> { /* private fields */ }Expand description
Intermediate type for doing command operations
Implementations§
source§impl<'a, D: CommandDevice> CommandOperation<'a, D>
impl<'a, D: CommandDevice> CommandOperation<'a, D>
sourcepub fn dispatch(self) -> Result<(), D::Error>
pub fn dispatch(self) -> Result<(), D::Error>
Dispatch the command to the device
Examples found in repository?
examples/test-macro-driver.rs (line 333)
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
fn main() {
let mut test_device = TestDevice::new();
println!("{:?}", test_device.id().read().unwrap());
assert!(!test_device.int_flags().read().unwrap().rx());
test_device.int_enable().write(|w| w.rx(true)).unwrap();
assert!(test_device.int_enable().read().unwrap().rx());
assert_eq!(test_device.device_memory[17], 1);
test_device.baudrate().write(|w| w.value(12)).unwrap();
write_baud(&mut test_device);
assert_eq!(test_device.baudrate().read().unwrap().value(), 12);
// Test it's actually doing little endian
assert_eq!(test_device.device_memory[42], 12);
assert_eq!(test_device.device_memory[43], 0);
test_device
.foo_0()
.baudrate()
.write(|w| w.value(12))
.unwrap();
assert_eq!(test_device.foo_0().baudrate().read().unwrap().value(), 12);
assert_eq!(test_device.device_memory[64], 12);
assert_eq!(test_device.device_memory[65], 0);
test_device
.foo_1()
.baudrate()
.write(|w| w.value(34))
.unwrap();
assert_eq!(test_device.foo_1().baudrate().read().unwrap().value(), 34);
assert_eq!(test_device.device_memory[80], 34);
assert_eq!(test_device.device_memory[81], 0);
test_device.foo().clear().unwrap();
assert_eq!(test_device.foo().read().unwrap().value(), 0x1234);
test_device.foo().write(|w| w.value(5)).unwrap();
assert_eq!(test_device.foo().read().unwrap().value(), 5);
test_device.foo().write_with_zero(|w| w).unwrap();
assert_eq!(test_device.foo().read().unwrap().value(), 0);
test_device.foo().write(|w| w).unwrap();
assert_eq!(test_device.foo().read().unwrap().value(), 0x1234);
test_device.cfg_reg().clear().unwrap();
#[cfg(windows)]
assert_eq!(test_device.cfg_reg().read().unwrap().value(), 0x1234);
#[cfg(not(windows))]
assert_eq!(test_device.cfg_reg().read().unwrap().value(), 0x5678);
test_device.sleep().dispatch().unwrap();
assert_eq!(test_device.last_command, 0);
test_device.burn().dispatch().unwrap();
assert_eq!(test_device.last_command, 0xDEAD);
let mut data = [1, 2, 3, 4, 5];
test_device.fifo().write_all(&data).unwrap();
test_device.fifo().read_exact(&mut data).unwrap();
assert_eq!(data, [1, 2, 3, 4, 5]);
assert_eq!(test_device.last_buffer, 124);
// Create a mask
let register_mask = registers::Baudrate::ZERO
.into_w()
.value(1234)
.into_register();
// Write test value
test_device.baudrate().write(|w| w.value(u16::MAX)).unwrap();
// Read back and apply mask
let read_baud = (*test_device.baudrate().read().unwrap() & register_mask).into_r();
assert_eq!(read_baud.value(), 1234);
}source§impl<'a, D: AsyncCommandDevice> CommandOperation<'a, D>
impl<'a, D: AsyncCommandDevice> CommandOperation<'a, D>
sourcepub async fn dispatch_async(self) -> Result<(), D::Error>
pub async fn dispatch_async(self) -> Result<(), D::Error>
Dispatch the command to the device
Auto Trait Implementations§
impl<'a, D> Freeze for CommandOperation<'a, D>
impl<'a, D> RefUnwindSafe for CommandOperation<'a, D>where
D: RefUnwindSafe,
impl<'a, D> Send for CommandOperation<'a, D>where
D: Send,
impl<'a, D> Sync for CommandOperation<'a, D>where
D: Sync,
impl<'a, D> Unpin for CommandOperation<'a, D>
impl<'a, D> !UnwindSafe for CommandOperation<'a, D>
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
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self to use its Binary implementation when Debug-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self to use its Display implementation when
Debug-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self to use its LowerExp implementation when
Debug-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self to use its LowerHex implementation when
Debug-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self to use its Octal implementation when Debug-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self to use its Pointer implementation when
Debug-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self to use its UpperExp implementation when
Debug-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self to use its UpperHex implementation when
Debug-formatted.source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self, then passes self.as_ref() into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self, then passes self.as_mut() into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self, then passes self.deref() into the pipe function.source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B> of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B> of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R> view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R> view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap() only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut() only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow() only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut() only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref() only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut() only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref() only in debug builds, and is erased in release
builds.