aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32l4xx_it.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stm32l4xx_it.c')
-rw-r--r--src/stm32l4xx_it.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/stm32l4xx_it.c b/src/stm32l4xx_it.c
index 2aac023..368fed5 100644
--- a/src/stm32l4xx_it.c
+++ b/src/stm32l4xx_it.c
@@ -4,31 +4,27 @@ void NMI_Handler(void) {}
void HardFault_Handler(void)
{
- GPIOA->BSRR |= (1 << 5) | (1 << 6);
+ GPIOA->BSRR |= (1 << 5);
while (1);
}
void MemManage_Handler(void)
{
- GPIOA->BSRR |= (1 << 5) | (1 << 6);
+ GPIOA->BSRR |= (1 << 5);
while (1);
}
void BusFault_Handler(void)
{
- GPIOA->BSRR |= (1 << 5) | (1 << 6);
+ GPIOA->BSRR |= (1 << 5);
while (1);
}
void UsageFault_Handler(void)
{
- GPIOA->BSRR |= (1 << 5) | (1 << 6);
+ GPIOA->BSRR |= (1 << 5);
while (1);
}
-void SVC_Handler(void) {
-
-}
-
void DebugMon_Handler(void) {}