28 lines
1018 B
Rust
28 lines
1018 B
Rust
//! GPIO support module.
|
|
//!
|
|
//! Contains abstractions to use the pins provided by the [crate::pins] module as GPIO or
|
|
//! IO peripheral pins.
|
|
//!
|
|
//! The core data structures provided for this are the
|
|
//!
|
|
//! - [Output] for push-pull output pins.
|
|
//! - [Input] for input pins.
|
|
//! - [Flex] for pins with flexible configuration requirements.
|
|
//! - [IoPeriphPin] for IO peripheral pins.
|
|
//!
|
|
//! The [crate::pins] module exposes singletons to access the [Pin]s required by this module
|
|
//! in a type-safe way.
|
|
//!
|
|
//! ## Examples
|
|
//!
|
|
//! - [Blinky example](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/simple/examples/blinky.rs)
|
|
//! - [Async GPIO example](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/embassy/src/bin/async-gpio.rs)
|
|
pub use vorago_shared_periphs::gpio::*;
|
|
|
|
pub use vorago_shared_periphs::gpio::asynch;
|
|
/// Low-level GPIO access.
|
|
pub use vorago_shared_periphs::gpio::ll;
|
|
|
|
/// GPIO register definitions.
|
|
pub use vorago_shared_periphs::gpio::regs;
|