Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }