mspm0: actually enable GPIOA interrupt for l110x

This commit is contained in:
i509VCB 2025-08-14 16:01:31 -05:00
parent 32f142d585
commit dd233b38f5
No known key found for this signature in database
GPG Key ID: 3E860D038915EF88
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
- 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);
#[cfg(mspm0c110x)]
#[cfg(any(mspm0c110x, mspm0l110x))]
unsafe {
use crate::_generated::interrupt::typelevel::Interrupt;
crate::interrupt::typelevel::GPIOA::enable();