Skip to content

Commit

Permalink
feat: allow disable NonMaskableInt_IRQn interrupt (#457)
Browse files Browse the repository at this point in the history
Allow disable NonMaskableInt_IRQn interrupt
  • Loading branch information
fabiangottstein authored Nov 27, 2024
1 parent b63139e commit 1529067
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hal_st/cortex/InterruptCortex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ namespace hal
}
else if (irq == -13 /*HardFault_IRQn*/)
;
else if (irq == NonMaskableInt_IRQn)
;
else if (irq == PendSV_IRQn)
;
else if (irq == SysTick_IRQn)
Expand Down

0 comments on commit 1529067

Please sign in to comment.