Struct kernel::utilities::cells::VolatileCell
source · pub struct VolatileCell<T> { /* private fields */ }
Expand description
VolatileCell
provides a wrapper around unsafe volatile pointer reads and
writes. This is particularly useful for accessing microcontroller registers
by (unsafely) casting a pointer to the register into a VolatileCell
.
use tock_cells::volatile_cell::VolatileCell;
let myptr: *const usize = 0xdeadbeef as *const usize;
let myregister: &VolatileCell<usize> = unsafe { core::mem::transmute(myptr) };
Implementations§
source§impl<T> VolatileCell<T>
impl<T> VolatileCell<T>
sourcepub const fn new(value: T) -> VolatileCell<T>
pub const fn new(value: T) -> VolatileCell<T>
Creates a new VolatileCell
containing the given value
sourcepub fn get(&self) -> Twhere
T: Copy,
pub fn get(&self) -> Twhere
T: Copy,
Performs a memory read and returns a copy of the value represented by the cell.
§Side-Effects
get
always performs a memory read on the underlying location. If
this location is a memory-mapped I/O register, the side-effects of
performing the read are register-specific.
§Examples
use tock_cells::volatile_cell::VolatileCell;
let vc = VolatileCell::new(5);
let five = vc.get();
sourcepub fn set(&self, value: T)where
T: Copy,
pub fn set(&self, value: T)where
T: Copy,
Performs a memory write with the provided value.
§Side-Effects
set
always performs a memory write on the underlying location. If
this location is a memory-mapped I/O register, the side-effects of
performing the write are register-specific.
§Examples
use tock_cells::volatile_cell::VolatileCell;
let vc = VolatileCell::new(123);
vc.set(432);
Trait Implementations§
source§impl<T> Default for VolatileCell<T>where
T: Default,
impl<T> Default for VolatileCell<T>where
T: Default,
source§fn default() -> VolatileCell<T>
fn default() -> VolatileCell<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> !Freeze for VolatileCell<T>
impl<T> !RefUnwindSafe for VolatileCell<T>
impl<T> Send for VolatileCell<T>where
T: Send,
impl<T> !Sync for VolatileCell<T>
impl<T> Unpin for VolatileCell<T>where
T: Unpin,
impl<T> UnwindSafe for VolatileCell<T>where
T: UnwindSafe,
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