11 lines
332 B
C
11 lines
332 B
C
#ifndef IT_H_
|
|
#define IT_H_
|
|
#include <stm32f10x.h>
|
|
static void (*p_IT_functions[4])(void);
|
|
void MyTimer_ActiveIT(TIM_TypeDef *Timer, char Prio,void(*IT_function)(void));
|
|
void TIM1_CC_IRQHandler(void);
|
|
void TIM1_UP_IRQHandler(void);
|
|
void TIM2_IRQHandler(void);
|
|
void TIM3_IRQHandler(void);
|
|
void TIM4_IRQHandler(void);
|
|
#endif // IT_H_
|