-
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 pull request #974 from quartiq/urukul-crates-split
Urukul-crates-split
- Loading branch information
Showing
11 changed files
with
132 additions
and
35 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "ad9912" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "AD9912 1 GHz DDS SPI driver" | ||
authors = [ | ||
"Robert Jördens <[email protected]>", | ||
] | ||
categories = ["embedded", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["spi"] | ||
repository = "https://github.com/quartiq/stabilizer" | ||
|
||
[dependencies] | ||
arbitrary-int = { version = "1.2.7", features = ["serde"] } | ||
thiserror = { version = "2.0.3", default-features = false } | ||
num-traits = { version = "0.2.19", default-features = false } | ||
embedded-hal = { version = "1.0" } | ||
bitbybit = "1.3.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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "encoded_pin" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "Binary encoded OutputPin, e.g. for encoded SPI chip select" | ||
authors = [ | ||
"Robert Jördens <[email protected]>", | ||
] | ||
categories = ["embedded", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["spi"] | ||
repository = "https://github.com/quartiq/stabilizer" | ||
|
||
[dependencies] | ||
arbitrary-int = { version = "1.2.7", features = ["serde"] } | ||
embedded-hal = { version = "1.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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[package] | ||
name = "urukul" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "Sinara Urukul quad 1 GHz DDS driver" | ||
authors = [ | ||
"Robert Jördens <[email protected]>", | ||
] | ||
categories = ["embedded", "no-std"] | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["spi"] | ||
repository = "https://github.com/quartiq/stabilizer" | ||
|
||
[dependencies] | ||
encoded_pin = { version = "0.1", path = "../encoded_pin" } | ||
arbitrary-int = { version = "1.2.7", features = ["serde"] } | ||
thiserror = { version = "2.0.3", default-features = false } | ||
num-traits = { version = "0.2.19", default-features = false } | ||
embedded-hal = { version = "1.0" } | ||
embedded-hal-bus = "0.2.0" | ||
bitbybit = "1.3.2" | ||
ad9912 = { version = "0.1", path = "../ad9912" } | ||
log = "0.4" | ||
serde = { version = "1.0", features = ["derive"], default-features = false } |
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