aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-mspm0/Cargo.toml7
-rw-r--r--embassy-mspm0/src/lib.rs7
2 files changed, 0 insertions, 14 deletions
diff --git a/embassy-mspm0/Cargo.toml b/embassy-mspm0/Cargo.toml
index b747d270e..e63a86103 100644
--- a/embassy-mspm0/Cargo.toml
+++ b/embassy-mspm0/Cargo.toml
@@ -123,14 +123,7 @@ time-driver-tima1 = ["_time-driver"]
123#! e.g. in `.cargo/config.toml`. 123#! e.g. in `.cargo/config.toml`.
124 124
125mspm0c110x = [ "mspm0-metapac/mspm0c110x" ] 125mspm0c110x = [ "mspm0-metapac/mspm0c110x" ]
126mspm0g110x = [ "mspm0-metapac/mspm0g110x" ]
127mspm0g150x = [ "mspm0-metapac/mspm0g150x" ]
128mspm0g151x = [ "mspm0-metapac/mspm0g151x" ]
129mspm0g310x = [ "mspm0-metapac/mspm0g310x" ]
130mspm0g350x = [ "mspm0-metapac/mspm0g350x" ] 126mspm0g350x = [ "mspm0-metapac/mspm0g350x" ]
131mspm0g351x = [ "mspm0-metapac/mspm0g351x" ] 127mspm0g351x = [ "mspm0-metapac/mspm0g351x" ]
132mspm0l110x = [ "mspm0-metapac/mspm0l110x" ]
133mspm0l122x = [ "mspm0-metapac/mspm0l122x" ]
134mspm0l130x = [ "mspm0-metapac/mspm0l130x" ] 128mspm0l130x = [ "mspm0-metapac/mspm0l130x" ]
135mspm0l134x = [ "mspm0-metapac/mspm0l134x" ]
136mspm0l222x = [ "mspm0-metapac/mspm0l222x" ] 129mspm0l222x = [ "mspm0-metapac/mspm0l222x" ]
diff --git a/embassy-mspm0/src/lib.rs b/embassy-mspm0/src/lib.rs
index 1191b1010..3128bb3c7 100644
--- a/embassy-mspm0/src/lib.rs
+++ b/embassy-mspm0/src/lib.rs
@@ -13,16 +13,9 @@ mod time_driver;
13 13
14// Interrupt group handlers. 14// Interrupt group handlers.
15#[cfg_attr(feature = "mspm0c110x", path = "int_group/c110x.rs")] 15#[cfg_attr(feature = "mspm0c110x", path = "int_group/c110x.rs")]
16#[cfg_attr(feature = "mspm0g110x", path = "int_group/g110x.rs")]
17#[cfg_attr(feature = "mspm0g150x", path = "int_group/g150x.rs")]
18#[cfg_attr(feature = "mspm0g151x", path = "int_group/g151x.rs")]
19#[cfg_attr(feature = "mspm0g310x", path = "int_group/g310x.rs")]
20#[cfg_attr(feature = "mspm0g350x", path = "int_group/g350x.rs")] 16#[cfg_attr(feature = "mspm0g350x", path = "int_group/g350x.rs")]
21#[cfg_attr(feature = "mspm0g351x", path = "int_group/g351x.rs")] 17#[cfg_attr(feature = "mspm0g351x", path = "int_group/g351x.rs")]
22#[cfg_attr(feature = "mspm0l110x", path = "int_group/l110x.rs")]
23#[cfg_attr(feature = "mspm0l122x", path = "int_group/l122x.rs")]
24#[cfg_attr(feature = "mspm0l130x", path = "int_group/l130x.rs")] 18#[cfg_attr(feature = "mspm0l130x", path = "int_group/l130x.rs")]
25#[cfg_attr(feature = "mspm0l134x", path = "int_group/l134x.rs")]
26#[cfg_attr(feature = "mspm0l222x", path = "int_group/l222x.rs")] 19#[cfg_attr(feature = "mspm0l222x", path = "int_group/l222x.rs")]
27mod int_group; 20mod int_group;
28 21