Skip to content

Commit

Permalink
Rebase Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernQ committed Jan 17, 2025
1 parent 9fd3e72 commit 6e85726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp-hal/src/spi/master.rs
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ where
/// You want to use this for full-duplex SPI or [DataMode::Single]
pub fn with_mosi<MOSI: PeripheralOutput>(self, mosi: impl Peripheral<P = MOSI> + 'd) -> Self {
crate::into_mapped_ref!(mosi);
mosi.enable_output(false, private::Internal);
mosi.enable_output(false);

self.driver().info.mosi.connect_to(&mut mosi);

Expand Down

0 comments on commit 6e85726

Please sign in to comment.