aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-05-20 12:35:17 -0500
committeri509VCB <[email protected]>2025-05-20 12:35:17 -0500
commit156bf00009495bbdffefd67f920919b4cd35c418 (patch)
tree6999fbd8fe55a88bdecdc4cf08d4cceb0ee2d2f8 /embassy-mspm0
parent44dce8206124359459facbb373887ca51c33c60b (diff)
mspm0: L110x has no group1
Diffstat (limited to 'embassy-mspm0')
-rw-r--r--embassy-mspm0/src/gpio.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-mspm0/src/gpio.rs b/embassy-mspm0/src/gpio.rs
index 3c824b0e6..19a6230b6 100644
--- a/embassy-mspm0/src/gpio.rs
+++ b/embassy-mspm0/src/gpio.rs
@@ -10,7 +10,7 @@ use embassy_sync::waitqueue::AtomicWaker;
10 10
11use crate::pac::gpio::vals::*; 11use crate::pac::gpio::vals::*;
12use crate::pac::gpio::{self}; 12use crate::pac::gpio::{self};
13#[cfg(all(feature = "rt", mspm0c110x))] 13#[cfg(all(feature = "rt", any(mspm0c110x, mspm0l110x)))]
14use crate::pac::interrupt; 14use crate::pac::interrupt;
15use crate::pac::{self}; 15use crate::pac::{self};
16 16
@@ -1120,7 +1120,7 @@ impl Iterator for BitIter {
1120} 1120}
1121 1121
1122// C110x has a dedicated interrupt just for GPIOA, as it does not have a GROUP1 interrupt. 1122// C110x has a dedicated interrupt just for GPIOA, as it does not have a GROUP1 interrupt.
1123#[cfg(all(feature = "rt", mspm0c110x))] 1123#[cfg(all(feature = "rt", any(mspm0c110x, mspm0l110x)))]
1124#[interrupt] 1124#[interrupt]
1125fn GPIOA() { 1125fn GPIOA() {
1126 gpioa_interrupt(); 1126 gpioa_interrupt();