rp2040-hal 0.8.1

A Rust Embeded-HAL impl for the rp2040 microcontroller
Documentation
//! Semi-internal enums mostly used in typelevel magic

/// Value-level `struct` representing slice IDs
#[derive(PartialEq, Eq, Clone, Copy)]
pub struct DynSliceId {
    /// Slice id
    pub num: u8,
}

/// Slice modes
#[derive(PartialEq, Eq, Clone, Copy)]
pub enum DynSliceMode {
    /// Count continuously whenever the slice is enabled
    FreeRunning,
    /// Count continuously when a high level is detected on the B pin
    InputHighRunning,
    /// Count once with each rising edge detected on the B pin
    CountRisingEdge,
    /// Count once with each falling edge detected on the B pin
    CountFallingEdge,
}

/// Channel ids
#[derive(PartialEq, Eq, Clone, Copy)]
pub enum DynChannelId {
    /// Channel A
    A,
    /// Channel B
    B,
}