diff options
author | Ulf Lilleengen <lulf@redhat.com> | 2022-01-12 12:43:24 +0100 |
---|---|---|
committer | Ulf Lilleengen <lulf@redhat.com> | 2022-01-12 14:28:10 +0100 |
commit | 2bc105803ab5ad176978a56aa90ad03b276bfc47 (patch) | |
tree | 0638a2e801daa5302f9ae5f033b691bec859475d /examples/stm32g0 | |
parent | e7668a86bd118ae8c4eb3e695130d7cac90c1dfe (diff) | |
download | embassy-2bc105803ab5ad176978a56aa90ad03b276bfc47.zip |
Make exti an optional feature
* Add embassy-stm32 build with exti
* Add exti to examples
Diffstat (limited to 'examples/stm32g0')
-rw-r--r-- | examples/stm32g0/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32g0/Cargo.toml b/examples/stm32g0/Cargo.toml index 6b249ee0..511d9968 100644 --- a/examples/stm32g0/Cargo.toml +++ b/examples/stm32g0/Cargo.toml @@ -8,7 +8,7 @@ resolver = "2" [dependencies] embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt"] } embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } -embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "time-driver-tim2", "stm32g071rb", "memory-x", "unstable-pac"] } +embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "time-driver-tim2", "stm32g071rb", "memory-x", "unstable-pac", "exti"] } defmt = "0.3" defmt-rtt = "0.3" |