pio: Fix some doc comments.

This commit is contained in:
Mathias Gottschlag 2021-09-28 19:51:36 +02:00
parent e5a7c325b0
commit 2ff9ae156f

View file

@ -674,13 +674,13 @@ pub struct PIOBuilder<'a> {
pull_threshold: u8, pull_threshold: u8,
/// Number of bits shifted into `ISR` before autopush or conditional push will take place. /// Number of bits shifted into `ISR` before autopush or conditional push will take place.
push_threshold: u8, push_threshold: u8,
// Shift direction for `OUT` instruction. /// Shift direction for `OUT` instruction.
out_shiftdir: ShiftDirection, out_shiftdir: ShiftDirection,
// Shift direction for `IN` instruction. /// Shift direction for `IN` instruction.
in_shiftdir: ShiftDirection, in_shiftdir: ShiftDirection,
// Enable autopull. /// Enable autopull.
autopull: bool, autopull: bool,
// Enable autopush. /// Enable autopush.
autopush: bool, autopush: bool,
/// Number of pins asserted by a `SET`. /// Number of pins asserted by a `SET`.