diff options
author | Oxore <oxore@protonmail.com> | 2022-10-09 02:54:07 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2022-10-09 02:57:01 +0300 |
commit | b1c8bb5df090d65cdd37a7acafb5dee8e3c530c6 (patch) | |
tree | 04e77389b96ed575bff7810ebb71857eff7e3b46 /Project/src/stm32f0xx_it.c | |
parent | 59651845feac3c6a2cb8e91e7494fd0e7940d145 (diff) |
Add CMakeLists.txt and make it compile with GCC
Diffstat (limited to 'Project/src/stm32f0xx_it.c')
-rw-r--r-- | Project/src/stm32f0xx_it.c | 33 |
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****/ |