No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pins.rs 460B

12345678910111213141516171819
  1. //! GPIO pin configuration.
  2. #![warn(missing_docs)]
  3. /// Type which contains all GPIO pins.
  4. ///
  5. /// The pins are configured as the correct type. Whenever possible, the corresponding HAL driver is
  6. /// instantiated. The initial output state is set during configuration.
  7. pub struct Pins {
  8. // TODO
  9. }
  10. impl Pins {
  11. /// Configures the GPIO pins and sets their initial value.
  12. pub fn configure() -> Pins {
  13. Pins{
  14. // TODO
  15. }
  16. }
  17. }