Skip to content

Commit 19da5e1

Browse files
committed
the fixes needed
1 parent 9bf0f23 commit 19da5e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

boards/feather_m4/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use hal::sercom::{
1515
v2::{
1616
spi,
1717
uart::{self, BaudMode, Oversampling},
18-
IoSet1, IoSet3, Sercom1, Sercom5,
18+
IoSet1, Sercom1, Sercom5, UndocIoSet1,
1919
},
2020
I2CMaster2,
2121
};
@@ -158,7 +158,7 @@ hal::bsp_pins!(
158158
/// SPI pads for the labelled SPI peripheral
159159
///
160160
/// You can use these pads with other, user-defined [`spi::Config`]urations.
161-
pub type SpiPads = spi::Pads<Sercom1, IoSet3, Miso, Mosi, Sclk, NoneT>;
161+
pub type SpiPads = spi::Pads<Sercom1, UndocIoSet1, Miso, Mosi, Sclk, NoneT>;
162162

163163
/// SPI master for the labelled SPI peripheral
164164
///

hal/src/thumbv7em/sercom/v2/impl_pad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ pad_table!(
137137
D: (Sercom3, Pad1, IoSet3),
138138
}
139139
PA17 {
140-
C: (Sercom1, Pad1, IoSet1, IoSet3),
140+
C: (Sercom1, Pad1, IoSet1),
141141
D: (Sercom3, Pad0, IoSet3),
142142
}
143143
PA18 {

0 commit comments

Comments
 (0)