Exemplo n.º 1
0
void __irq_dma2_channel4_5(void) {
    if ((DMA2_BASE->CCR4 & DMA_CCR_EN) && (DMA2_BASE->ISR & DMA_ISR_GIF4)) {
        dma_irq_handler(DMA2, DMA_CH4);
    }
    if ((DMA2_BASE->CCR5 & DMA_CCR_EN) && (DMA2_BASE->ISR & DMA_ISR_GIF5)) {
        dma_irq_handler(DMA2, DMA_CH5);
    }
}
Exemplo n.º 2
0
void __irq_dma2_channel3(void) {
    dma_irq_handler(DMA2, DMA_CH3);
}
Exemplo n.º 3
0
void __irq_dma2_channel1(void) {
    dma_irq_handler(DMA2, DMA_CH1);
}
Exemplo n.º 4
0
void __irq_dma2_channel2(void) {
    dma_irq_handler(DMA2, DMA_CH2);
}
Exemplo n.º 5
0
void __irq_dma1_channel6(void) {
    dma_irq_handler(DMA1, DMA_CH6);
}
Exemplo n.º 6
0
void __irq_dma1_channel7(void) {
    dma_irq_handler(DMA1, DMA_CH7);
}
Exemplo n.º 7
0
void __irq_dma1_channel4(void) {
    dma_irq_handler(DMA1, DMA_CH4);
}
Exemplo n.º 8
0
void __irq_dma1_channel5(void) {
    dma_irq_handler(DMA1, DMA_CH5);
}
Exemplo n.º 9
0
void __irq_dma1_channel3(void) {
    dma_irq_handler(DMA1, DMA_CH3);
}
Exemplo n.º 10
0
void __irq_dma1_channel2(void) {
    dma_irq_handler(DMA1, DMA_CH2);
}
Exemplo n.º 11
0
void __irq_dma1_channel1(void) {
    dma_irq_handler(DMA1, DMA_CH1);
}
Exemplo n.º 12
0
void __irq_dma2_ch5(void) {
    dma_irq_handler(DMA2, DMA_CH5);
}
Exemplo n.º 13
0
void __irq_dma2_ch4(void) {
    dma_irq_handler(DMA2, DMA_CH4);
}