uart_dma.h
282 字节
#ifndef __UART_DMA_H_
#define __UART_DMA_H_
#include "stm32f4xx.h"
extern uint32_t count;
extern uint16_t testLen;
//串口 DMA 初始化
void UartDMA_Init(void);
//串口接收
int8_t UartIDLE_Recive_Data(void);
//串口发送
int8_t Uart_DMA_Send(uint8_t* data,uint16_t size);
#endif