summaryrefslogtreecommitdiff
path: root/Project/src/stm32f0xx_it.c
diff options
context:
space:
mode:
Diffstat (limited to 'Project/src/stm32f0xx_it.c')
-rw-r--r--Project/src/stm32f0xx_it.c33
1 files changed, 15 insertions, 18 deletions
diff --git a/Project/src/stm32f0xx_it.c b/Project/src/stm32f0xx_it.c
index 20e6b67..b628455 100644
--- a/Project/src/stm32f0xx_it.c
+++ b/Project/src/stm32f0xx_it.c
@@ -134,6 +134,8 @@ void LTIMER_IRQHandler ( void )
}
}
+void TIM17_handler(void) { LTIMER_IRQHandler(); }
+
// ----------------------------------------------------------------------------
// Обработчик прерывания таймера для работы NixieDriver
@@ -150,6 +152,9 @@ void NIX_DRIVER_TIM_IRQHandler ( void )
}
}
+void TIM16_handler(void) { NIX_DRIVER_TIM_IRQHandler(); }
+
+
// ----------------------------------------------------------------------------
// Обработчик прерывания таймера для работы LED_Driver
// ----------------------------------------------------------------------------
@@ -163,6 +168,8 @@ void LED_TIM_IRQHandler ( void )
}
}
+void TIM3_handler(void) { LED_TIM_IRQHandler(); }
+
// ----------------------------------------------------------------------------
// - поставить этому прерыванию наивысший приоритет, чтобы передавать 2 байта
@@ -184,6 +191,8 @@ void NIX_SPIx_IRQHandler ( void )
}
}
+void SPI1_handler(void) { NIX_SPIx_IRQHandler(); }
+
// ----------------------------------------------------------------------------
//
@@ -200,6 +209,8 @@ void LED_SPIx_IRQHandler ( void )
LED_ST_PIN_SET;
}
}
+
+void SPI2_handler(void) { LED_SPIx_IRQHandler(); }
#endif
@@ -222,6 +233,8 @@ void TSC_IRQHandler ( void )
Gv_EOA = 1; /* To inform the main loop routine of the End Of Acquisition */
}
+void TSC_handler(void) { TSC_IRQHandler(); }
+
// ----------------------------------------------------------------------------
//
@@ -232,23 +245,7 @@ void TS_TIM_IRQHandler ( void )
TSL_tim_ProcessIT();
}
-
-/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+void TIM15_handler(void) { TS_TIM_IRQHandler(); }
+/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/