Merge pull request #4552 from i509VCB/l110x-gpio-irq-en

mspm0: actually enable GPIOA interrupt for l110x
This commit is contained in:
i509VCB 2025-08-14 21:10:44 +00:00 committed by GitHub
commit 26a8aa9566
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -8,3 +8,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased - ReleaseDate ## Unreleased - ReleaseDate
- feat: Add I2C Controller (blocking & async) + examples for mspm0l1306, mspm0g3507 (tested MCUs) (#4435) - feat: Add I2C Controller (blocking & async) + examples for mspm0l1306, mspm0g3507 (tested MCUs) (#4435)
- fix gpio interrupt not being set for mspm0l110x

View File

@ -194,7 +194,7 @@ pub fn init(config: Config) -> Peripherals {
_generated::enable_group_interrupts(cs); _generated::enable_group_interrupts(cs);
#[cfg(mspm0c110x)] #[cfg(any(mspm0c110x, mspm0l110x))]
unsafe { unsafe {
use crate::_generated::interrupt::typelevel::Interrupt; use crate::_generated::interrupt::typelevel::Interrupt;
crate::interrupt::typelevel::GPIOA::enable(); crate::interrupt::typelevel::GPIOA::enable();