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
This commit is contained in:
i509VCB 2025-03-21 19:20:09 -05:00
parent 4033a619a8
commit 46a96ff68c
No known key found for this signature in database
GPG Key ID: 3E860D038915EF88
2 changed files with 0 additions and 14 deletions

View File

@ -123,14 +123,7 @@ time-driver-tima1 = ["_time-driver"]
#! e.g. in `.cargo/config.toml`.
mspm0c110x = [ "mspm0-metapac/mspm0c110x" ]
mspm0g110x = [ "mspm0-metapac/mspm0g110x" ]
mspm0g150x = [ "mspm0-metapac/mspm0g150x" ]
mspm0g151x = [ "mspm0-metapac/mspm0g151x" ]
mspm0g310x = [ "mspm0-metapac/mspm0g310x" ]
mspm0g350x = [ "mspm0-metapac/mspm0g350x" ]
mspm0g351x = [ "mspm0-metapac/mspm0g351x" ]
mspm0l110x = [ "mspm0-metapac/mspm0l110x" ]
mspm0l122x = [ "mspm0-metapac/mspm0l122x" ]
mspm0l130x = [ "mspm0-metapac/mspm0l130x" ]
mspm0l134x = [ "mspm0-metapac/mspm0l134x" ]
mspm0l222x = [ "mspm0-metapac/mspm0l222x" ]

View File

@ -13,16 +13,9 @@ mod time_driver;
// Interrupt group handlers.
#[cfg_attr(feature = "mspm0c110x", path = "int_group/c110x.rs")]
#[cfg_attr(feature = "mspm0g110x", path = "int_group/g110x.rs")]
#[cfg_attr(feature = "mspm0g150x", path = "int_group/g150x.rs")]
#[cfg_attr(feature = "mspm0g151x", path = "int_group/g151x.rs")]
#[cfg_attr(feature = "mspm0g310x", path = "int_group/g310x.rs")]
#[cfg_attr(feature = "mspm0g350x", path = "int_group/g350x.rs")]
#[cfg_attr(feature = "mspm0g351x", path = "int_group/g351x.rs")]
#[cfg_attr(feature = "mspm0l110x", path = "int_group/l110x.rs")]
#[cfg_attr(feature = "mspm0l122x", path = "int_group/l122x.rs")]
#[cfg_attr(feature = "mspm0l130x", path = "int_group/l130x.rs")]
#[cfg_attr(feature = "mspm0l134x", path = "int_group/l134x.rs")]
#[cfg_attr(feature = "mspm0l222x", path = "int_group/l222x.rs")]
mod int_group;