#[repr(C)]pub struct RegisterBlock {Show 17 fields
pub tasks_start: TASKS_START,
pub tasks_stop: TASKS_STOP,
pub tasks_sample: TASKS_SAMPLE,
pub events_ready: EVENTS_READY,
pub events_down: EVENTS_DOWN,
pub events_up: EVENTS_UP,
pub events_cross: EVENTS_CROSS,
pub shorts: SHORTS,
pub intenset: INTENSET,
pub intenclr: INTENCLR,
pub result: RESULT,
pub enable: ENABLE,
pub psel: PSEL,
pub refsel: REFSEL,
pub extrefsel: EXTREFSEL,
pub anadetect: ANADETECT,
pub power: POWER,
/* private fields */
}Expand description
Register block
Fields§
§tasks_start: TASKS_START0x00 - Start the comparator.
tasks_stop: TASKS_STOP0x04 - Stop the comparator.
tasks_sample: TASKS_SAMPLE0x08 - Sample comparator value.
events_ready: EVENTS_READY0x100 - LPCOMP is ready and output is valid.
events_down: EVENTS_DOWN0x104 - Input voltage crossed the threshold going down.
events_up: EVENTS_UP0x108 - Input voltage crossed the threshold going up.
events_cross: EVENTS_CROSS0x10c - Input voltage crossed the threshold in any direction.
shorts: SHORTS0x200 - Shortcuts for the LPCOMP.
intenset: INTENSET0x304 - Interrupt enable set register.
intenclr: INTENCLR0x308 - Interrupt enable clear register.
result: RESULT0x400 - Result of last compare.
enable: ENABLE0x500 - Enable the LPCOMP.
psel: PSEL0x504 - Input pin select.
refsel: REFSEL0x508 - Reference select.
extrefsel: EXTREFSEL0x50c - External reference select.
anadetect: ANADETECT0x520 - Analog detect configuration.
power: POWER0xffc - Peripheral power control.
Auto Trait Implementations§
impl !Freeze for RegisterBlock
impl !RefUnwindSafe for RegisterBlock
impl Send for RegisterBlock
impl !Sync for RegisterBlock
impl Unpin for RegisterBlock
impl UnwindSafe for RegisterBlock
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