Skip to content

Commit 42ecd12

Browse files
committed
FMPI2c timings
1 parent 9104ae2 commit 42ecd12

File tree

4 files changed

+257
-64
lines changed

4 files changed

+257
-64
lines changed

CHANGELOG.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10-
- Implement `Ptr`, `Sealed`, `Steal` for generic `Periph`
11-
- Unmacro `Adc`
12-
- Use `write` instead of `modify` to clear flags
13-
- Bump `stm32f4-staging` to 0.18, update other dependencies
14-
- `serial` mod refactor
10+
- Implement `Ptr`, `Sealed`, `Steal` for generic `Periph` [#834]
11+
- Unmacro `Adc` [#832]
12+
- Use `write` instead of `modify` to clear flags [#829]
13+
- Bump `stm32f4-staging` to 0.18, update other dependencies [#831]
14+
- `serial` mod refactor [#833]
15+
- FMPI2c APB timings [#770]
1516
- Fefactor FMPI2c `embedded-hal` implementations [#784]
1617

18+
[#770]: https://github.com/stm32-rs/stm32f4xx-hal/pull/770
1719
[#784]: https://github.com/stm32-rs/stm32f4xx-hal/pull/784
20+
[#829]: https://github.com/stm32-rs/stm32f4xx-hal/pull/829
21+
[#831]: https://github.com/stm32-rs/stm32f4xx-hal/pull/831
22+
[#832]: https://github.com/stm32-rs/stm32f4xx-hal/pull/832
23+
[#833]: https://github.com/stm32-rs/stm32f4xx-hal/pull/833
24+
[#834]: https://github.com/stm32-rs/stm32f4xx-hal/pull/834
1825

1926
## [v0.22.1] - 2024-11-03
2027

21-
- Fix pac `defmt` feature
22-
- Fix timer interrupt status clear
28+
- Fix pac `defmt` feature [#807]
29+
- Fix timer interrupt status clear [#821]
2330

2431
## [v0.22.0] - 2024-10-04
2532

@@ -76,6 +83,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7683
[#796]: https://github.com/stm32-rs/stm32f4xx-hal/pull/796
7784
[#798]: https://github.com/stm32-rs/stm32f4xx-hal/pull/798
7885
[#802]: https://github.com/stm32-rs/stm32f4xx-hal/pull/802
86+
[#807]: https://github.com/stm32-rs/stm32f4xx-hal/pull/807
87+
[#821]: https://github.com/stm32-rs/stm32f4xx-hal/pull/821
7988

8089
## [v0.21.0] - 2024-05-30
8190

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ dsihost = ["embedded-display-controller"]
520520
eth = []
521521
fmc = []
522522
fsmc = []
523-
fmpi2c1 = []
523+
fmpi2c1 = ["dep:micromath"]
524524
gpiod = []
525525
gpioe = []
526526
gpiof = []

examples/display-touch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//!
1+
//!
22
//! Demonstrates use of I2C bus to configure and use FT6x06 touchscreen controller
33
//!
44
//! Hardware Required: STM32F412G-DISCO board or STM32F413H-DISCO board

0 commit comments

Comments
 (0)