1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

PICO: Initial implementation of led strip

This commit is contained in:
blckmn 2025-07-09 16:02:28 +10:00
parent 1743a43d19
commit c87fd3160a
17 changed files with 414 additions and 132 deletions

View file

@ -135,7 +135,6 @@ void dmaSetHandler(dmaIdentifier_e identifier, dmaCallbackHandlerFuncPtr callbac
dmaDescriptors[index].irqN = core ? DMA_IRQ_1_IRQn : DMA_IRQ_0_IRQn;
irq_handler_t irq_handler = core ? dma_irq1_handler : dma_irq0_handler;
irq_set_exclusive_handler(dmaDescriptors[index].irqN, irq_handler);
irq_set_enabled(dmaDescriptors[index].irqN, true);