1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
pub mod analog;
pub mod digital;

/**
 * Type representing pin's high or low state (on/off).
 */
pub use crate::rp::rp_pinState_t as State;

/**
 * Type representing pin's input or output direction.
 */
pub use crate::rp::rp_pinDirection_t as Direction;