microbit-common 0.16.0

Implementation details for the BBC Micro:bit board support crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Named GPIO pin types
//!
//! This module maps the GPIO pin names as described in the
//! [Pins and Signals section of the micro:bit site](https://tech.microbit.org/hardware/edgeconnector/#pins-and-signals)
//! Where appropriate the pins are restricted with the appropriate `MODE`
//! from `nrf-hal`.
#[cfg(feature = "v1")]
pub use crate::v1::gpio::*;

#[cfg(feature = "v2")]
pub use crate::v2::gpio::*;