You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
443 B

2 years ago
/*
* interrupts.c
*
* Created on: 23 окт. 2021 г.
* Author: ivan
*/
#include "interrupts.h"
#include "downstream_spi.h"
/* DMA0_Channel0 handle function */
//receive
void DMA0_Channel1_IRQHandler(void){
if(dma_interrupt_flag_get(DMA0, DMA_CH1, DMA_INT_FLAG_FTF)){
DMA_SPI_TxRxCpltCallback();
dma_interrupt_flag_clear(DMA0, DMA_CH1, DMA_INT_FLAG_G);
}
}
//transmit
void DMA0_Channel2_IRQHandler(void){
}