aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0/src/lib.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-05-19 18:15:05 +0200
committerDario Nieuwenhuis <[email protected]>2025-05-19 18:15:42 +0200
commitef32187ed7349f3883d997b6f1590e11dbc8db81 (patch)
treeef3cc709dc9d752ad79094f4c7a9db1a85c7837f /embassy-mspm0/src/lib.rs
parentf820eb2eba724d13a2cfde379ecf8dc63f477681 (diff)
mspm0: fix build for int groups.
Diffstat (limited to 'embassy-mspm0/src/lib.rs')
-rw-r--r--embassy-mspm0/src/lib.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/embassy-mspm0/src/lib.rs b/embassy-mspm0/src/lib.rs
index df2d83cc0..f129e221b 100644
--- a/embassy-mspm0/src/lib.rs
+++ b/embassy-mspm0/src/lib.rs
@@ -41,9 +41,15 @@ mod time_driver;
41 41
42// Interrupt group handlers. 42// Interrupt group handlers.
43#[cfg_attr(mspm0c110x, path = "int_group/c110x.rs")] 43#[cfg_attr(mspm0c110x, path = "int_group/c110x.rs")]
44#[cfg_attr(mspm0g110x, path = "int_group/g110x.rs")]
45#[cfg_attr(mspm0g150x, path = "int_group/g150x.rs")]
44#[cfg_attr(mspm0g350x, path = "int_group/g350x.rs")] 46#[cfg_attr(mspm0g350x, path = "int_group/g350x.rs")]
47#[cfg_attr(mspm0g151x, path = "int_group/g151x.rs")]
45#[cfg_attr(mspm0g351x, path = "int_group/g351x.rs")] 48#[cfg_attr(mspm0g351x, path = "int_group/g351x.rs")]
46#[cfg_attr(mspm0l130x, path = "int_group/l130x.rs")] 49#[cfg_attr(mspm0g310x, path = "int_group/g310x.rs")]
50#[cfg_attr(mspm0l110x, path = "int_group/l11xx.rs")]
51#[cfg_attr(mspm0l122x, path = "int_group/l12xx.rs")]
52#[cfg_attr(any(mspm0l130x, mspm0l134x), path = "int_group/l13xx.rs")]
47#[cfg_attr(mspm0l222x, path = "int_group/l222x.rs")] 53#[cfg_attr(mspm0l222x, path = "int_group/l222x.rs")]
48mod int_group; 54mod int_group;
49 55