pub enum PinType {
Mux = 1,
Ext = 2,
SynceEthPort = 3,
IntOscillator = 4,
Gnss = 5,
}Available on crate feature
dpll only.Expand description
defines possible types of a pin, valid values for DPLL_A_PIN_TYPE attribute Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Mux = 1
aggregates another layer of selectable pins
Ext = 2
external input
SynceEthPort = 3
ethernet port PHY’s recovered clock
IntOscillator = 4
device internal oscillator
Gnss = 5
GNSS recovered clock
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PinType
impl RefUnwindSafe for PinType
impl Send for PinType
impl Sync for PinType
impl Unpin for PinType
impl UnsafeUnpin for PinType
impl UnwindSafe for PinType
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