Skip to content

Commit

Permalink
Fix compile errors for stm32l4x1 and stm32l4x2
Browse files Browse the repository at this point in the history
  • Loading branch information
valff committed Dec 18, 2019
1 parent 3539369 commit 2676ed2
Show file tree
Hide file tree
Showing 28 changed files with 71 additions and 84 deletions.
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ members = [

[package]
name = "drone-stm32-map"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
exclude = ["/svd_files"]
Expand Down Expand Up @@ -74,50 +74,50 @@ version = "0.11.1"
path = "../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "src/pieces"

[dependencies.drone-stm32-map-periph-adc]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/adc"
optional = true

[dependencies.drone-stm32-map-periph-dma]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/dma"
optional = true

[dependencies.drone-stm32-map-periph-exti]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/exti"
optional = true

[dependencies.drone-stm32-map-periph-gpio]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/gpio"
optional = true

[dependencies.drone-stm32-map-periph-i2c]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/i2c"
optional = true

[dependencies.drone-stm32-map-periph-rtc]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/rtc"
optional = true

[dependencies.drone-stm32-map-periph-spi]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/spi"
optional = true

[dependencies.drone-stm32-map-periph-tim]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/tim"
optional = true

[dependencies.drone-stm32-map-periph-uart]
version = "=0.11.1"
version = "=0.11.2"
path = "src/periph/uart"
optional = true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Place the following to the Cargo.toml:

```toml
[dependencies]
drone-stm32-map = { version = "0.11.0", features = [...] }
drone-stm32-map = { version = "0.11.2", features = [...] }
```

## License
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2019-11-06
nightly-2019-12-13
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
//!
//! ```toml
//! [dependencies]
//! drone-stm32-map = { version = "0.11.1", features = [...] }
//! drone-stm32-map = { version = "0.11.2", features = [...] }
//! ```

#![deny(elided_lifetimes_in_paths)]
Expand Down
4 changes: 2 additions & 2 deletions src/periph/adc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-adc"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/dma/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-dma"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/exti/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-exti"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/gpio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-gpio"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/i2c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-i2c"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/rtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-rtc"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/spi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-spi"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/tim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-tim"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/periph/uart/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-periph-uart"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[dependencies.drone-stm32-map-pieces]
version = "=0.11.1"
version = "=0.11.2"
path = "../../pieces"
4 changes: 2 additions & 2 deletions src/pieces/1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-1"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/10/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-10"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/11/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-11"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/12/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-12"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-2"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-3"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-4"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-5"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/6/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-6"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/7/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-7"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
4 changes: 2 additions & 2 deletions src/pieces/8/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drone-stm32-map-pieces-8"
version = "0.11.1"
version = "0.11.2"
authors = ["Valentine Valyaeff <[email protected]>"]
edition = "2018"
repository = "https://github.com/drone-os/drone-stm32-map"
Expand All @@ -23,5 +23,5 @@ version = "0.11.1"
path = "../../../../drone-cortex-m"

[build-dependencies.drone-stm32-map-svd]
version = "=0.11.1"
version = "=0.11.2"
path = "../../../svd"
Loading

0 comments on commit 2676ed2

Please sign in to comment.