Skip to content

Commit

Permalink
Add support for STM32F302x6 and STM32F302x8 devices
Browse files Browse the repository at this point in the history
  • Loading branch information
sprhawk authored Aug 30, 2020
1 parent 5a1c06e commit 0ccda91
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- stm32f302xc
- stm32f302xd
- stm32f302xe
- stm32f302x6
- stm32f302x8
- stm32f303xb
- stm32f303xc
- stm32f303xd
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

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

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

Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ stm32f302xb = ["stm32f302", "device-selected"]
stm32f302xc = ["stm32f302", "device-selected"]
stm32f302xd = ["stm32f302", "device-selected"]
stm32f302xe = ["stm32f302", "device-selected"]
stm32f302x6 = ["stm32f302", "device-selected"]
stm32f302x8 = ["stm32f302", "device-selected"]
stm32f303 = ["stm32f3/stm32f303", "direct-call-deprecated"]
stm32f303xb = ["stm32f303", "stm32-usbd/ram_access_1x16", "device-selected"]
stm32f303xc = ["stm32f303", "stm32-usbd/ram_access_1x16", "device-selected"]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ Note: `x` denotes any character in [a-z]
* stm32f302xc
* stm32f302xd
* stm32f302xe
* stm32f302x6
* stm32f302x8
* stm32f303xb
* stm32f303xc
* stm32f303xd
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
* stm32f302xc
* stm32f302xd
* stm32f302xe
* stm32f302x6
* stm32f302x8
* stm32f303xb
* stm32f303xc
* stm32f303xd
Expand Down Expand Up @@ -46,6 +48,8 @@ compile_error!(
* stm32f302xc
* stm32f302xd
* stm32f302xe
* stm32f302x6
* stm32f302x8
* stm32f303xb
* stm32f303xc
* stm32f303xd
Expand Down

0 comments on commit 0ccda91

Please sign in to comment.