diff options
Diffstat (limited to 'embassy-mspm0/src/gpio.rs')
| -rw-r--r-- | embassy-mspm0/src/gpio.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embassy-mspm0/src/gpio.rs b/embassy-mspm0/src/gpio.rs index d5fd36dbf..4668262a9 100644 --- a/embassy-mspm0/src/gpio.rs +++ b/embassy-mspm0/src/gpio.rs | |||
| @@ -1125,14 +1125,14 @@ fn GPIOB() { | |||
| 1125 | // Defining these as no_mangle is required so that the linker will pick these over the default handler. | 1125 | // Defining these as no_mangle is required so that the linker will pick these over the default handler. |
| 1126 | 1126 | ||
| 1127 | #[cfg(all(feature = "rt", not(any(mspm0c110x, mspm0c1105_c1106, mspm0l110x))))] | 1127 | #[cfg(all(feature = "rt", not(any(mspm0c110x, mspm0c1105_c1106, mspm0l110x))))] |
| 1128 | #[no_mangle] | 1128 | #[unsafe(no_mangle)] |
| 1129 | #[allow(non_snake_case)] | 1129 | #[allow(non_snake_case)] |
| 1130 | fn GPIOA() { | 1130 | fn GPIOA() { |
| 1131 | irq_handler(pac::GPIOA, &PORTA_WAKERS); | 1131 | irq_handler(pac::GPIOA, &PORTA_WAKERS); |
| 1132 | } | 1132 | } |
| 1133 | 1133 | ||
| 1134 | #[cfg(all(feature = "rt", gpio_pb, not(mspm0c1105_c1106)))] | 1134 | #[cfg(all(feature = "rt", gpio_pb, not(mspm0c1105_c1106)))] |
| 1135 | #[no_mangle] | 1135 | #[unsafe(no_mangle)] |
| 1136 | #[allow(non_snake_case)] | 1136 | #[allow(non_snake_case)] |
| 1137 | fn GPIOB() { | 1137 | fn GPIOB() { |
| 1138 | irq_handler(pac::GPIOB, &PORTB_WAKERS); | 1138 | irq_handler(pac::GPIOB, &PORTB_WAKERS); |
| @@ -1140,7 +1140,7 @@ fn GPIOB() { | |||
| 1140 | 1140 | ||
| 1141 | #[cfg(all(feature = "rt", gpio_pc))] | 1141 | #[cfg(all(feature = "rt", gpio_pc))] |
| 1142 | #[allow(non_snake_case)] | 1142 | #[allow(non_snake_case)] |
| 1143 | #[no_mangle] | 1143 | #[unsafe(no_mangle)] |
| 1144 | fn GPIOC() { | 1144 | fn GPIOC() { |
| 1145 | irq_handler(pac::GPIOC, &PORTC_WAKERS); | 1145 | irq_handler(pac::GPIOC, &PORTC_WAKERS); |
| 1146 | } | 1146 | } |
