pub trait ResetControl {
// Required methods
fn assert_reset<'w>(&self, w: &'w mut W) -> &'w mut W;
fn clear_reset<'w>(&self, w: &'w mut W) -> &'w mut W;
}Expand description
Internal trait for controlling peripheral reset
This trait is an internal implementation detail and should neither be implemented nor used outside of LPC8xx HAL. Any incompatible changes to this trait won’t be considered breaking changes.
Please refer to syscon::Handle::assert_reset and
syscon::Handle::clear_reset for the public API that uses this trait.
Required Methods§
Sourcefn assert_reset<'w>(&self, w: &'w mut W) -> &'w mut W
fn assert_reset<'w>(&self, w: &'w mut W) -> &'w mut W
Internal method to assert peripheral reset
Sourcefn clear_reset<'w>(&self, w: &'w mut W) -> &'w mut W
fn clear_reset<'w>(&self, w: &'w mut W) -> &'w mut W
Internal method to clear peripheral reset