Skip to content

Commit 0ccda91

Browse files
authored
Add support for STM32F302x6 and STM32F302x8 devices
1 parent 5a1c06e commit 0ccda91

File tree

5 files changed

+11
-0
lines changed

5 files changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
- stm32f302xc
1919
- stm32f302xd
2020
- stm32f302xe
21+
- stm32f302x6
22+
- stm32f302x8
2123
- stm32f303xb
2224
- stm32f303xc
2325
- stm32f303xd

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
- Support for 16-bit words with SPI ([#107](https://github.com/stm32-rs/stm32f3xx-hal/pull/107))
1313
- SPI support for reclock after initialization ([#98](https://github.com/stm32-rs/stm32f3xx-hal/pull/98))
14+
- Support for `stm32f302x6` and `stm32f302x8` devices ([#132](https://github.com/stm32-rs/stm32f3xx-hal/pull/132))
1415

1516
## [v0.5.0] - 2020-07-21
1617

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ stm32f302xb = ["stm32f302", "device-selected"]
6464
stm32f302xc = ["stm32f302", "device-selected"]
6565
stm32f302xd = ["stm32f302", "device-selected"]
6666
stm32f302xe = ["stm32f302", "device-selected"]
67+
stm32f302x6 = ["stm32f302", "device-selected"]
68+
stm32f302x8 = ["stm32f302", "device-selected"]
6769
stm32f303 = ["stm32f3/stm32f303", "direct-call-deprecated"]
6870
stm32f303xb = ["stm32f303", "stm32-usbd/ram_access_1x16", "device-selected"]
6971
stm32f303xc = ["stm32f303", "stm32-usbd/ram_access_1x16", "device-selected"]

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ Note: `x` denotes any character in [a-z]
5959
* stm32f302xc
6060
* stm32f302xd
6161
* stm32f302xe
62+
* stm32f302x6
63+
* stm32f302x8
6264
* stm32f303xb
6365
* stm32f303xc
6466
* stm32f303xd

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
* stm32f302xc
1313
* stm32f302xd
1414
* stm32f302xe
15+
* stm32f302x6
16+
* stm32f302x8
1517
* stm32f303xb
1618
* stm32f303xc
1719
* stm32f303xd
@@ -46,6 +48,8 @@ compile_error!(
4648
* stm32f302xc
4749
* stm32f302xd
4850
* stm32f302xe
51+
* stm32f302x6
52+
* stm32f302x8
4953
* stm32f303xb
5054
* stm32f303xc
5155
* stm32f303xd

0 commit comments

Comments
 (0)