Skip to content

Commit

Permalink
fix(CMSIS): Add GPIOWAKE_IRQn to MAX32675 (#989)
Browse files Browse the repository at this point in the history
  • Loading branch information
sihyung-maxim committed Apr 12, 2024
1 parent 52174ec commit b71451d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Libraries/CMSIS/Device/Maxim/MAX32675/Include/max32675.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit b71451d

Please sign in to comment.