-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feature/serial-settin…
…gs-release * origin/main: signal_generator -> source serial-settings: manifest fields bump ad9959, fix gitignores v0.10.0 prep style stream_target -> stream, livestream -> stream comments/docs update (clippy), add thermostat-eem stream id
- Loading branch information
Showing
18 changed files
with
77 additions
and
85 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,3 +1,2 @@ | ||
/target | ||
/dsp/target | ||
vpy/ | ||
/py/build |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 +1,7 @@ | ||
[package] | ||
name = "stabilizer" | ||
# Keep versions in Cargo.toml and py/setup.py synchronized. | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
resolver = "2" | ||
authors = [ | ||
"Robert Jördens <[email protected]>", | ||
|
@@ -16,7 +16,6 @@ readme = "README.md" | |
documentation = "https://docs.rs/stabilizer/" | ||
edition = "2021" | ||
exclude = [ | ||
".gitignore", | ||
"doc/", | ||
"doc/*" | ||
] | ||
|
@@ -50,7 +49,7 @@ embedded-hal = "0.2.7" | |
num_enum = { version = "0.7.3", default-features = false } | ||
paste = "1" | ||
idsp = "0.15.1" | ||
ad9959 = { path = "ad9959", version = "0.2.1" } | ||
ad9959 = { path = "ad9959", version = "0.3.0" } | ||
serial-settings = { version = "0.1", path = "serial-settings" } | ||
mcp230xx = "1.0" | ||
mutex-trait = "0.2" | ||
|
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 = "ad9959" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
authors = ["Ryan Summers <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ text = "MIT" | |
[project] | ||
name = "stabilizer" | ||
# Note: keep this in sync with Cargo.toml | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
description = "Utilities for configuring Stabilizer" | ||
authors = [ | ||
{ name = "Robert Jördens", email = "[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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ name = "serial-settings" | |
version = "0.1.0" | ||
edition = "2021" | ||
readme = "README.md" | ||
description = "Embedded device settings management over serial terminal and flash" | ||
authors = [ | ||
"Robert Jördens <[email protected]>", | ||
"Ryan Summers <[email protected]>", | ||
] | ||
description = "Persistent settings management over serial interfaces" | ||
categories = ["embedded", "no-std", "config", "command-line-interface"] | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["serial", "settings", "cli", "management", "async"] | ||
|
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.