pub struct Rtc { /* private fields */ }Expand description
Real-time counter 0.
Implementations§
Source§impl Rtc
impl Rtc
pub const unsafe fn from_ptr(ptr: *mut ()) -> Self
pub const fn as_ptr(&self) -> *mut ()
Sourcepub const fn tasks_start(self) -> Reg<u32, W>
pub const fn tasks_start(self) -> Reg<u32, W>
Start RTC counter.
Sourcepub const fn tasks_stop(self) -> Reg<u32, W>
pub const fn tasks_stop(self) -> Reg<u32, W>
Stop RTC counter.
Sourcepub const fn tasks_clear(self) -> Reg<u32, W>
pub const fn tasks_clear(self) -> Reg<u32, W>
Clear RTC counter.
Sourcepub const fn tasks_trigovrflw(self) -> Reg<u32, W>
pub const fn tasks_trigovrflw(self) -> Reg<u32, W>
Set counter to 0xFFFFF0.
Sourcepub const fn tasks_capture(self, n: usize) -> Reg<u32, W>
pub const fn tasks_capture(self, n: usize) -> Reg<u32, W>
Description collection: Capture RTC counter to CC[n] register.
Sourcepub const fn subscribe_start(self) -> Reg<Subscribe, RW>
pub const fn subscribe_start(self) -> Reg<Subscribe, RW>
Subscribe configuration for task START.
Sourcepub const fn subscribe_stop(self) -> Reg<Subscribe, RW>
pub const fn subscribe_stop(self) -> Reg<Subscribe, RW>
Subscribe configuration for task STOP.
Sourcepub const fn subscribe_clear(self) -> Reg<Subscribe, RW>
pub const fn subscribe_clear(self) -> Reg<Subscribe, RW>
Subscribe configuration for task CLEAR.
Sourcepub const fn subscribe_trigovrflw(self) -> Reg<Subscribe, RW>
pub const fn subscribe_trigovrflw(self) -> Reg<Subscribe, RW>
Subscribe configuration for task TRIGOVRFLW.
Sourcepub const fn subscribe_capture(self, n: usize) -> Reg<Subscribe, RW>
pub const fn subscribe_capture(self, n: usize) -> Reg<Subscribe, RW>
Description collection: Subscribe configuration for task CAPTURE[n].
Sourcepub const fn events_tick(self) -> Reg<u32, RW>
pub const fn events_tick(self) -> Reg<u32, RW>
Event on counter increment.
Sourcepub const fn events_ovrflw(self) -> Reg<u32, RW>
pub const fn events_ovrflw(self) -> Reg<u32, RW>
Event on counter overflow.
Sourcepub const fn events_compare(self, n: usize) -> Reg<u32, RW>
pub const fn events_compare(self, n: usize) -> Reg<u32, RW>
Description collection: Compare event on CC[n] match.
Sourcepub const fn publish_tick(self) -> Reg<Publish, RW>
pub const fn publish_tick(self) -> Reg<Publish, RW>
Publish configuration for event TICK.
Sourcepub const fn publish_ovrflw(self) -> Reg<Publish, RW>
pub const fn publish_ovrflw(self) -> Reg<Publish, RW>
Publish configuration for event OVRFLW.
Sourcepub const fn publish_compare(self, n: usize) -> Reg<Publish, RW>
pub const fn publish_compare(self, n: usize) -> Reg<Publish, RW>
Description collection: Publish configuration for event COMPARE[n].
Trait Implementations§
impl Copy for Rtc
impl Eq for Rtc
impl Send for Rtc
impl StructuralPartialEq for Rtc
impl Sync for Rtc
Auto Trait Implementations§
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