-
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.
deps(pygamer)!: Update pygamer HAL dependency to 0.18 and promote to …
…Tier 1 status (#766) * Update all pygamer examples using HAL v0.18.0 * Promote `pygamer` to Tier 1 * Upgrade the following `pygamer` dependencies: * micromath: 0.5.1 -> 2.1 * smart-leds: 0.3 -> 0.4 * lis3dh: 0.1.0 -> 0.4.3 * cortex-m-rtic 1.0 -> rtic 2.1.1 --------- Co-authored-by: Dan Whitman <[email protected]> Co-authored-by: Justin Beaurivage <[email protected]> Co-authored-by: Dan Whitman <[email protected]>
- Loading branch information
1 parent
ef7a1b2
commit 250764c
Showing
20 changed files
with
155 additions
and
1,756 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,79 +1,86 @@ | ||
[package] | ||
name = "pygamer" | ||
version = "0.10.0" | ||
authors = [ | ||
"Paul Sajna <[email protected]>", | ||
"Wez Furlong <[email protected]>" | ||
"Paul Sajna <[email protected]>", | ||
"Wez Furlong <[email protected]>", | ||
] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
description = "Board Support crate for the Adafruit PyGamer" | ||
edition = "2021" | ||
exclude = ["assets"] | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
name = "pygamer" | ||
readme = "README.md" | ||
edition = "2021" | ||
exclude = ["assets"] | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
version = "0.10.0" | ||
|
||
[dependencies] | ||
cortex-m = {version = "0.7", features = ["critical-section-single-core"]} | ||
st7735-lcd = "0.8.1" | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
optional = true | ||
version = "0.7" | ||
|
||
[dependencies.atsamd-hal] | ||
version = "0.17" | ||
default-features = false | ||
|
||
[dependencies.micromath] | ||
version = "0.5.1" | ||
optional = true | ||
|
||
[dependencies.embedded-sdmmc] | ||
version = "0.8.0" | ||
optional = true | ||
path = "../../hal" | ||
version = "0.18.0" | ||
|
||
[dependencies.usb-device] | ||
version = "0.3.1" | ||
optional = true | ||
version = "0.3.1" | ||
|
||
[dev-dependencies] | ||
usbd-serial = "0.2" | ||
panic-halt = "0.2" | ||
embedded-graphics = "0.7.1" | ||
embedded-hal-02 = {package = "embedded-hal", version = "0.2", features = ["unproven"]} | ||
embedded-hal-bus = "0.2.0" | ||
smart-leds = "0.3" | ||
lis3dh = "0.1.0" | ||
cortex-m-rtic = "1.0" | ||
embedded-sdmmc = "0.8.0" | ||
lis3dh = "0.4.3" | ||
micromath = "2.1" | ||
panic-halt = "0.2" | ||
rtic = {version = "2.1.1", features = ["thumbv7-backend"]} | ||
smart-leds = "0.4" | ||
tinybmp = "0.3.1" | ||
usbd-serial = "0.2" | ||
|
||
[features] | ||
# ask the HAL to enable atsamd51j support | ||
default = ["rt", "atsamd-hal/samd51j"] | ||
panic_led = [] | ||
rt = ["cortex-m-rt", "atsamd-hal/samd51j-rt"] | ||
usb = ["atsamd-hal/usb", "usb-device"] | ||
sd-card = ["embedded-sdmmc"] | ||
math = ["micromath"] | ||
panic_led = [] | ||
|
||
# for cargo flash | ||
[package.metadata] | ||
chip = "ATSAMD51J19A" | ||
|
||
[[example]] | ||
name = "usb_poll" | ||
required-features = ["usb"] | ||
name = "blinky_basic" | ||
|
||
[[example]] | ||
name = "sd_card" | ||
required-features = ["sd-card"] | ||
name = "button_rtic" | ||
|
||
[[example]] | ||
name = "clock_out" | ||
|
||
[[example]] | ||
name = "ferris_img" | ||
|
||
[[example]] | ||
name = "pwm_tc4" | ||
required-features = ["math"] | ||
|
||
[[example]] | ||
name = "pwm_tcc0" | ||
required-features = ["math"] | ||
|
||
[[example]] | ||
name = "qspi" | ||
|
||
[[example]] | ||
name = "sd_card" | ||
|
||
[[example]] | ||
name = "timer" | ||
|
||
[[example]] | ||
name = "usb_poll" | ||
required-features = ["usb"] |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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
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.