diff options
| author | i509VCB <[email protected]> | 2025-05-20 12:27:28 -0500 |
|---|---|---|
| committer | i509VCB <[email protected]> | 2025-05-20 12:27:28 -0500 |
| commit | 44dce8206124359459facbb373887ca51c33c60b (patch) | |
| tree | 3bcb2b62fa7a3bde7bfd0c251c06fbb40f885df2 /embassy-mspm0/src | |
| parent | ef32187ed7349f3883d997b6f1590e11dbc8db81 (diff) | |
mspm0: add gpio handlers to l122x
Diffstat (limited to 'embassy-mspm0/src')
| -rw-r--r-- | embassy-mspm0/src/int_group/l12xx.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-mspm0/src/int_group/l12xx.rs b/embassy-mspm0/src/int_group/l12xx.rs index 833771eea..eeb2ce70d 100644 --- a/embassy-mspm0/src/int_group/l12xx.rs +++ b/embassy-mspm0/src/int_group/l12xx.rs | |||
| @@ -41,9 +41,9 @@ fn GROUP1() { | |||
| 41 | 41 | ||
| 42 | match group { | 42 | match group { |
| 43 | Group1::GPIOA => crate::gpio::gpioa_interrupt(), | 43 | Group1::GPIOA => crate::gpio::gpioa_interrupt(), |
| 44 | Group1::GPIOB => todo!("implement GPIOB"), | 44 | Group1::GPIOB => crate::gpio::gpiob_interrupt(), |
| 45 | Group1::COMP0 => todo!("implement COMP0"), | 45 | Group1::COMP0 => todo!("implement COMP0"), |
| 46 | Group1::TRNG => todo!("implement TRNG"), | 46 | Group1::TRNG => todo!("implement TRNG"), |
| 47 | Group1::GPIOC => todo!("implement GPIOC"), | 47 | Group1::GPIOC => crate::gpio::gpioc_interrupt(), |
| 48 | } | 48 | } |
| 49 | } | 49 | } |
