Remove status LED code

This commit is contained in:
fruchti 2020-05-23 18:51:58 +02:00
parent e4f5946c8c
commit 34ed9791ce
5 changed files with 2 additions and 14 deletions

View file

@ -308,9 +308,6 @@ void Camera_Init(void)
void TIM1_CC_IRQHandler(void)
{
// VSYNC
// GPIOC->BRR = (1 << PIN_LED);
LineCount = CurrentLine;
CurrentLine = 0;
FrameCount++;
@ -335,8 +332,6 @@ void TIM1_CC_IRQHandler(void)
// Dummy read
TIM1->CCR2;
TIM1->SR &= ~TIM_SR_CC2IF;
// GPIOC->BSRR = (1 << PIN_LED);
}
void TIM3_IRQHandler(void)
@ -431,4 +426,4 @@ void TIM3_IRQHandler(void)
// Dummy read
TIM3->CCR2;
TIM3->SR &= ~TIM_SR_CC2IF;
}
}