Removed one function call from ISR chain
This commit is contained in:
parent
c187a62bfd
commit
09263346a5
5 changed files with 11 additions and 23 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue