-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix sercom::uart valid pad definitions The pad definitions in sercom::uart didn't take into account that the XCK pad would be unavailable for use, even if asynchronous mode isn't unavailable. Especially, implement the same `impl_rxpotxpo` macro system for thumbv7em targets as the one already in use for thumbv6m targets. Additionnally, reject pad combinations where XCK would conflict on thumbv6m targets. * Bump HAL to 0.15.1 * Bump HAL to 0.15.1
- Loading branch information
1 parent
49f8724
commit e241dc0
Showing
16 changed files
with
257 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Unreleased | ||
|
||
# v0.12.1 | ||
|
||
- Update to `atsamd-hal` version `0.15.1` | ||
- Update .cargo/config | ||
|
||
# v0.12.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "feather_m0" | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
authors = ["Ben Bergman <[email protected]>"] | ||
description = "Board Support crate for the Adafruit Feather M0" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
|
@@ -21,7 +21,7 @@ optional = true | |
|
||
[dependencies.atsamd-hal] | ||
path = "../../hal" | ||
version = "0.15" | ||
version = "0.15.1" | ||
default-features = false | ||
|
||
[dependencies.usb-device] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "feather_m4" | ||
version = "0.10.0" | ||
version = "0.10.1" | ||
edition = "2021" | ||
authors = ["Theodore DeRego <[email protected]>"] | ||
description = "Board Support crate for the Adafruit Feather M4" | ||
|
@@ -21,7 +21,7 @@ optional = true | |
|
||
[dependencies.atsamd-hal] | ||
path = "../../hal" | ||
version = "0.15" | ||
version = "0.15.1" | ||
default-features = false | ||
|
||
[dependencies.usb-device] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "metro_m0" | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
authors = ["Wez Furlong <[email protected]>"] | ||
description = "Board Support crate for the Adafruit Metro M0" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
|
@@ -20,7 +20,7 @@ optional = true | |
|
||
[dependencies.atsamd-hal] | ||
path = "../../hal" | ||
version = "0.15" | ||
version = "0.15.1" | ||
default-features = false | ||
|
||
[dependencies.usb-device] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "metro_m4" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Paul Sajna <[email protected]>", "Wez Furlong <[email protected]>"] | ||
description = "Board Support crate for the Adafruit Metro M4" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
|
@@ -20,7 +20,7 @@ optional = true | |
|
||
[dependencies.atsamd-hal] | ||
path = "../../hal" | ||
version = "0.15" | ||
version = "0.15.1" | ||
default-features = false | ||
|
||
[dependencies.usb-device] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "samd11_bare" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Jesse Braham <[email protected]>"] | ||
description = "Support crate for the ATSAMD11C" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
|
@@ -19,7 +19,7 @@ optional = true | |
|
||
[dependencies.atsamd-hal] | ||
path = "../../hal" | ||
version = "0.15" | ||
version = "0.15.1" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wio_terminal" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = [ | ||
"Jesse Braham <[email protected]>", | ||
"Tom <[email protected]>" | ||
|
@@ -45,7 +45,7 @@ seeed-erpc = { version = "0.1.1", optional = true } | |
|
||
[dependencies.atsamd-hal] | ||
path = "../../hal" | ||
version = "0.15" | ||
version = "0.15.1" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "atsamd-hal" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = [ | ||
"Wez Furlong <[email protected]>", | ||
"Paul Sajna <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.