File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
14
14
15
15
## Unreleased
16
16
17
- No changes.
17
+ ### Fixed
18
+
19
+ - Missing ` MosiPin ` impl for ` PB5 ` ([ #322 ] )
18
20
19
21
## [ v0.9.0] - 2022-03-06
20
22
@@ -554,6 +556,7 @@ let clocks = rcc
554
556
[ defmt ] : https://github.com/knurling-rs/defmt
555
557
[ filter ] : https://defmt.ferrous-systems.com/filtering.html
556
558
559
+ [ #322 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/322
557
560
[ #314 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/314
558
561
[ #309 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/309
559
562
[ #308 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/308
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ pub trait MosiPin<SPI>: crate::private::Sealed {}
53
53
impl SckPin < SPI1 > for gpio:: PA5 < AF5 < PushPull > > { }
54
54
impl MisoPin < SPI1 > for gpio:: PA6 < AF5 < PushPull > > { }
55
55
impl MosiPin < SPI1 > for gpio:: PA7 < AF5 < PushPull > > { }
56
+ impl MosiPin < SPI1 > for gpio:: PB5 < AF5 < PushPull > > { }
56
57
57
58
#[ cfg( not( feature = "gpio-f373" ) ) ]
58
59
impl SckPin < SPI2 > for gpio:: PB13 < AF5 < PushPull > > { }
You can’t perform that action at this time.
0 commit comments