aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0/src/lib.rs
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-03-21 19:20:09 -0500
committeri509VCB <[email protected]>2025-03-21 19:23:43 -0500
commit46a96ff68c7070c11e201f07ff4a21563b976542 (patch)
tree06fb72ddd353e6385e6db070f6db6039b85d48f3 /embassy-mspm0/src/lib.rs
parent4033a619a87da733e2087bb7a2eb92017b33a9c5 (diff)
mspm0: Remove features for which int_group is not implemented in metapac yet
These will be readded again when I eliminate int_group manual impls in the near future
Diffstat (limited to 'embassy-mspm0/src/lib.rs')
-rw-r--r--embassy-mspm0/src/lib.rs7
1 files changed, 0 insertions, 7 deletions
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