From 903b3a0bb2470e938e68f1f07edba1c84265a61d Mon Sep 17 00:00:00 2001 From: Trung Do Date: Mon, 8 Jan 2024 22:52:00 +0700 Subject: [PATCH] Add SPI2_SCK pin for stm32f769i-discovery Refer: https://www.st.com/resource/en/user_manual/dm00276557.pdf Signed-off-by: Trung Do --- CHANGELOG.md | 1 + src/spi.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb27672..391a249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Updated `stm32-fmc` dependency 0.2.0 -> 0.3 - Added Interruptable trait to Alternate mode pins - Added a "low pin count" variant of the f730 chip to the crate features: packages <144 pins don't include a high speed USB PHY +- Added SPI2_SCK pin for stm32f769i-discovery ## [v0.7.0] - 2022-06-05 diff --git a/src/spi.rs b/src/spi.rs index d75036d..e536765 100644 --- a/src/spi.rs +++ b/src/spi.rs @@ -479,6 +479,7 @@ impl_instance!( pins: { SCK: [ gpio::PA9>, + gpio::PA12>, gpio::PB10>, gpio::PB13>, gpio::PD3>,