-
Notifications
You must be signed in to change notification settings - Fork 214
chore: multiple minor cleanups #872
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ authors = ["Eric Rushing <[email protected]>"] | |
description = "Board Support crate for the Arduino MKR 1000 WiFi" | ||
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" | ||
readme = "README.md" | ||
edition = "2021" | ||
edition.workspace = true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this is a "tier 2" BSP, I don't think we want to use the wider workspace settings for it, that kinda defeats the purpose of the distinction from tier 1. |
||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ authors = ["Sameer Puri <[email protected]>"] | |
description = "Board Support crate for the Arduino MKR VIDOR 4000" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal", "arduino"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
readme = "README.md" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ authors = ["Wez Furlong <[email protected]>", "David McGillicuddy <contact@djmc | |
description = "Board Support crate for the Arduino MKRZERO" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal", "arduino"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
readme = "README.md" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ authors = ["Gus Wynn <[email protected]>"] | |
description = "Board Support crate for the Arduino Nano 33 IOT" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal", "arduino"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
readme = "README.md" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
[package] | ||
authors = [ | ||
"Karsten Große <[email protected]>", | ||
"John Little <[email protected]>", | ||
"Karsten Große <[email protected]>", | ||
"John Little <[email protected]>", | ||
] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
description = "Board Support crate for the SAM E54 Xplained Pro Evaluation Kit" | ||
edition = "2021" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
license = "MIT OR Apache-2.0" | ||
name = "atsame54_xpro" | ||
readme = "README.md" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
version = "0.12.0" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
optional = true | ||
|
@@ -32,9 +35,9 @@ version = "0.3.1" | |
|
||
[dev-dependencies] | ||
mcan = "0.2" | ||
panic-rtt-target = {version = "0.1", features = ["cortex-m"]} | ||
rtic = {version = "2.1.2", features = ["thumbv7-backend"]} | ||
rtt-target = {version = "0.3", features = ["cortex-m"]} | ||
panic-rtt-target = { version = "0.1", features = ["cortex-m"] } | ||
rtic = { version = "2.1.2", features = ["thumbv7-backend"] } | ||
rtt-target = { version = "0.3", features = ["cortex-m"] } | ||
|
||
[features] | ||
default = ["rt", "atsamd-hal/same54p"] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,12 @@ version = "0.11.1" | |
authors = ["Paul Sajna <[email protected]>"] | ||
description = "Board Support crate for the Adafruit Circuit Playground Express" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
readme = "README.md" | ||
edition = "2018" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,15 @@ | |
authors = ["Ben Bergman <[email protected]>"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
description = "Board Support crate for the Adafruit Feather M0" | ||
edition = "2021" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
license = "MIT OR Apache-2.0" | ||
name = "feather_m0" | ||
readme = "README.md" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
resolver = "2" | ||
version = "0.19.0" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wonder if the |
||
|
||
[lints] | ||
workspace = true | ||
|
||
# for cargo flash | ||
[package.metadata] | ||
|
@@ -47,14 +48,14 @@ cortex-m-semihosting = "0.3" | |
defmt = "0.3" | ||
defmt-rtt = "0.4" | ||
drogue-nom-utils = "0.1" | ||
embassy-executor = {version = "0.6.2", features = ["arch-cortex-m", "executor-thread", "task-arena-size-64"]} | ||
embassy-executor = { version = "0.6.2", features = ["arch-cortex-m", "executor-thread", "task-arena-size-64"] } | ||
embedded-graphics = "0.7.1" | ||
heapless = "0.8" | ||
nom = {version = "5", default-features = false} | ||
nom = { version = "5", default-features = false } | ||
panic-halt = "0.2" | ||
panic-probe = "0.3" | ||
panic-semihosting = "0.6" | ||
rtic-monotonics = {version = "1.3.0", features = ["cortex-m-systick", "systick-10khz"]} | ||
rtic-monotonics = { version = "1.3.0", features = ["cortex-m-systick", "systick-10khz"] } | ||
ssd1306 = "0.7" | ||
usbd-serial = "0.2" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,15 @@ authors = ["Theodore DeRego <[email protected]>"] | |
categories = ["embedded", "hardware-support", "no-std"] | ||
description = "Board Support crate for the Adafruit Feather M4" | ||
documentation = "https://atsamd-rs.github.io/atsamd/atsamd51j/feather_m4/" | ||
edition = "2021" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
license = "MIT OR Apache-2.0" | ||
name = "feather_m4" | ||
readme = "README.md" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
version = "0.17.0" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
# for cargo flash | ||
[package.metadata] | ||
|
@@ -37,7 +39,7 @@ heapless = "0.7" | |
panic-halt = "0.2" | ||
cortex-m-semihosting = "0.5.0" | ||
panic-semihosting = "0.5" | ||
rtic = {version = "2.1.1", features = ["thumbv7-backend"]} | ||
rtic = { version = "2.1.1", features = ["thumbv7-backend"] } | ||
smart-leds = "0.3" | ||
usbd-serial = "0.2" | ||
ws2812-timer-delay = "0.3" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ authors = ["Wez Furlong <[email protected]>"] | |
description = "Board Support crate for the Adafruit Gemma M0" | ||
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" | ||
readme = "README.md" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,12 @@ authors = ["Dustin Little <[email protected]>"] | |
description = "Board Support crate for the Adafruit Grand Central M4 Express" | ||
keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
repository = "https://github.com/atsamd-rs/atsamd" | ||
readme = "README.md" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies.cortex-m-rt] | ||
version = "0.7" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,17 @@ authors = ["Ben Bergman <[email protected]>"] | |
description = "Board Support crate for the Adafruit ItsyBitsy M0" | ||
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" | ||
readme = "README.md" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
bitbang-hal = "0.3" | ||
apa102-spi = "0.3" | ||
embedded-hal-02 = {package = "embedded-hal", version = "0.2", features = ["unproven"]} | ||
embedded-hal-02 = { package = "embedded-hal", version = "0.2", features = ["unproven"] } | ||
smart-leds = "0.3" | ||
|
||
[dependencies.cortex-m-rt] | ||
|
@@ -34,7 +36,7 @@ optional = true | |
|
||
[dev-dependencies] | ||
cortex-m-rtic = "1.0" | ||
cortex-m = {version = "0.7", features = ["critical-section-single-core"]} | ||
cortex-m = { version = "0.7", features = ["critical-section-single-core"] } | ||
usbd-serial = "0.2.2" | ||
usbd-hid = "0.8.2" | ||
cortex-m-semihosting = "0.3" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason for adding these empty lints sections?