From b71451d3b8ae85c88a6e417b9983dbc792609fbf Mon Sep 17 00:00:00 2001 From: Sihyung Woo <75494566+sihyung-maxim@users.noreply.github.com> Date: Fri, 12 Apr 2024 14:23:46 -0500 Subject: [PATCH] fix(CMSIS): Add GPIOWAKE_IRQn to MAX32675 (#989) --- Libraries/CMSIS/Device/Maxim/MAX32675/Include/max32675.h | 2 +- .../CMSIS/Device/Maxim/MAX32675/Source/GCC/startup_max32675.S | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Libraries/CMSIS/Device/Maxim/MAX32675/Include/max32675.h b/Libraries/CMSIS/Device/Maxim/MAX32675/Include/max32675.h index 4f9cd5d39b4..29b9dfa2560 100644 --- a/Libraries/CMSIS/Device/Maxim/MAX32675/Include/max32675.h +++ b/Libraries/CMSIS/Device/Maxim/MAX32675/Include/max32675.h @@ -121,7 +121,7 @@ typedef enum { RSV51_IRQn, /* 0x43 0x010C 67: Reserved */ RSV52_IRQn, /* 0x44 0x0110 68: Reserved */ RSV53_IRQn, /* 0x45 0x0114 69: Reserved */ - RSV54_IRQn, /* 0x46 0x0118 70: Reserved */ + GPIOWAKE_IRQn, /* 0x46 0x0118 70: GPIOWAKE */ RSV55_IRQn, /* 0x47 0x011C 71: Reserved */ RSV56_IRQn, /* 0x48 0x0120 72: Reserved */ WDT1_IRQn, /* 0x49 0x0124 73: Watchdog 1 */ diff --git a/Libraries/CMSIS/Device/Maxim/MAX32675/Source/GCC/startup_max32675.S b/Libraries/CMSIS/Device/Maxim/MAX32675/Source/GCC/startup_max32675.S index 41e6fb464fa..393c4978f37 100644 --- a/Libraries/CMSIS/Device/Maxim/MAX32675/Source/GCC/startup_max32675.S +++ b/Libraries/CMSIS/Device/Maxim/MAX32675/Source/GCC/startup_max32675.S @@ -130,7 +130,7 @@ __isr_vector: .long RSV51_IRQHandler /* 0x43 0x010C 67: Reserved */ .long RSV52_IRQHandler /* 0x44 0x0110 68: Reserved */ .long RSV53_IRQHandler /* 0x45 0x0114 69: Reserved */ - .long RSV54_IRQHandler /* 0x46 0x0118 70: Reserved */ + .long GPIOWAKE_IRQHandler /* 0x46 0x0118 70: GPIOWAKE */ .long RSV55_IRQHandler /* 0x47 0x011C 71: Reserved */ .long RSV56_IRQHandler /* 0x48 0x0120 72: Reserved */ .long WDT1_IRQHandler /* 0x49 0x0124 73: Watchdog 1 */ @@ -338,7 +338,7 @@ Reset_Handler: def_irq_handler RSV51_IRQHandler /* 0x43 0x010C 67: Reserved */ def_irq_handler RSV52_IRQHandler /* 0x44 0x0110 68: Reserved */ def_irq_handler RSV53_IRQHandler /* 0x45 0x0114 69: Reserved */ - def_irq_handler RSV54_IRQHandler /* 0x46 0x0118 70: Reserved */ + def_irq_handler GPIOWAKE_IRQHandler /* 0x46 0x0118 70: GPIOWAKE */ def_irq_handler RSV55_IRQHandler /* 0x47 0x011C 71: Reserved */ def_irq_handler RSV56_IRQHandler /* 0x48 0x0120 72: Reserved */ def_irq_handler WDT1_IRQHandler /* 0x49 0x0124 73: Watchdog 1 */