Removed one function call from ISR chain

This commit is contained in:
Attila Body 2020-12-05 01:00:21 +01:00
parent c187a62bfd
commit 09263346a5
5 changed files with 11 additions and 23 deletions

View file

@ -65,9 +65,11 @@ void StartSparkle( Sparkle &s )
#endif
}
extern "C" void HandleSpiDmaIrq()
extern "C" void DMA1_Channel3_IRQHandler(void)
{
LL_GPIO_TogglePin(GPIOA, LL_GPIO_PIN_0);
g_strip.SpiDmaIsr();
LL_GPIO_TogglePin(GPIOA, LL_GPIO_PIN_0);
}
void TimerCallback(TimerHandle_t th)