typo in IRQ Handlers

master
polymurph 2 years ago
parent 70f2035c2c
commit 53c87c9cf9

@ -250,7 +250,7 @@ void timerThrowError(timerError_t error)
// Interrupt service routines
void TIM1_BRK_UP_TRG_COM_IRQn()
void TIM1_BRK_UP_TRG_COM_IRQHandler()
{
if(TIM1->SR & TIM_SR_BIF) {
TIM1->SR &= ~TIM_SR_BIF;
@ -273,7 +273,7 @@ void TIM1_BRK_UP_TRG_COM_IRQn()
}
}
void TIM1_CC_IRQn()
void TIM1_CC_IRQHandler()
{
if(TIM1->SR & TIM_SR_CC1IF) {
TIM1-> SR &= ~TIM_SR_CC1IF;
@ -414,7 +414,7 @@ void TIM3_IRQHandler()
}
}
void TIM14_IRQn()
void TIM14_IRQHandler()
{
if(TIM14->SR & TIM_SR_CC1OF) {
TIM14-> SR &= ~TIM_SR_CC1OF;
@ -432,7 +432,7 @@ void TIM14_IRQn()
}
}
void TIM16_IRQn()
void TIM16_IRQHandler()
{
if(TIM16->SR & TIM_SR_CC1OF) {
TIM16-> SR &= ~TIM_SR_CC1OF;
@ -460,7 +460,7 @@ void TIM16_IRQn()
}
}
void TIM117_IRQn()
void TIM117_IRQHandler()
{
if(TIM17->SR & TIM_SR_CC1OF) {
TIM17-> SR &= ~TIM_SR_CC1OF;

Loading…
Cancel
Save