diff options
| author | i509VCB <[email protected]> | 2025-08-14 16:01:31 -0500 |
|---|---|---|
| committer | i509VCB <[email protected]> | 2025-08-14 16:07:04 -0500 |
| commit | dd233b38f52e51fc80817e2bee01e61ffa9b329f (patch) | |
| tree | 5b1513b543a24f57b463f8661dfc4cd9efd82697 | |
| parent | 32f142d58587bb219b6835e1507758b7eb6f28b8 (diff) | |
mspm0: actually enable GPIOA interrupt for l110x
| -rw-r--r-- | embassy-mspm0/CHANGELOG.md | 1 | ||||
| -rw-r--r-- | embassy-mspm0/src/lib.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/embassy-mspm0/CHANGELOG.md b/embassy-mspm0/CHANGELOG.md index 7c22b2f28..cf8aeb046 100644 --- a/embassy-mspm0/CHANGELOG.md +++ b/embassy-mspm0/CHANGELOG.md | |||
| @@ -8,3 +8,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
| 8 | ## Unreleased - ReleaseDate | 8 | ## Unreleased - ReleaseDate |
| 9 | 9 | ||
| 10 | - feat: Add I2C Controller (blocking & async) + examples for mspm0l1306, mspm0g3507 (tested MCUs) (#4435) | 10 | - feat: Add I2C Controller (blocking & async) + examples for mspm0l1306, mspm0g3507 (tested MCUs) (#4435) |
| 11 | - fix gpio interrupt not being set for mspm0l110x | ||
diff --git a/embassy-mspm0/src/lib.rs b/embassy-mspm0/src/lib.rs index 54ac2d9e6..6217669d2 100644 --- a/embassy-mspm0/src/lib.rs +++ b/embassy-mspm0/src/lib.rs | |||
| @@ -194,7 +194,7 @@ pub fn init(config: Config) -> Peripherals { | |||
| 194 | 194 | ||
| 195 | _generated::enable_group_interrupts(cs); | 195 | _generated::enable_group_interrupts(cs); |
| 196 | 196 | ||
| 197 | #[cfg(mspm0c110x)] | 197 | #[cfg(any(mspm0c110x, mspm0l110x))] |
| 198 | unsafe { | 198 | unsafe { |
| 199 | use crate::_generated::interrupt::typelevel::Interrupt; | 199 | use crate::_generated::interrupt::typelevel::Interrupt; |
| 200 | crate::interrupt::typelevel::GPIOA::enable(); | 200 | crate::interrupt::typelevel::GPIOA::enable(); |
