File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
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/).
1414
1515## Unreleased
1616
17- No changes.
17+ ### Fixed
18+
19+ - Missing ` MosiPin ` impl for ` PB5 ` ([ #322 ] )
1820
1921## [ v0.9.0] - 2022-03-06
2022
@@ -554,6 +556,7 @@ let clocks = rcc
554556[ defmt ] : https://github.com/knurling-rs/defmt
555557[ filter ] : https://defmt.ferrous-systems.com/filtering.html
556558
559+ [ #322 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/322
557560[ #314 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/314
558561[ #309 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/309
559562[ #308 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/308
Original file line number Diff line number Diff line change @@ -14,5 +14,6 @@ ignore = [
1414allow = [
1515 " MIT" ,
1616 " Apache-2.0" ,
17- " 0BSD"
17+ " 0BSD" ,
18+ " Unicode-DFS-2016" ,
1819]
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ pub trait MosiPin<SPI>: crate::private::Sealed {}
5353impl SckPin < SPI1 > for gpio:: PA5 < AF5 < PushPull > > { }
5454impl MisoPin < SPI1 > for gpio:: PA6 < AF5 < PushPull > > { }
5555impl MosiPin < SPI1 > for gpio:: PA7 < AF5 < PushPull > > { }
56+ impl MosiPin < SPI1 > for gpio:: PB5 < AF5 < PushPull > > { }
5657
5758#[ cfg( not( feature = "gpio-f373" ) ) ]
5859impl SckPin < SPI2 > for gpio:: PB13 < AF5 < PushPull > > { }
You can’t perform that action at this time.
0 commit comments