UART_DMA.h 302 B

123456789101112131415161718192021
  1. #ifndef __UART_DMA_H
  2. #define __UART_DMA_H
  3. #include "main.h"
  4. extern uint8_t TxBufferUart[];
  5. extern uint8_t RxBufferUart[];
  6. extern void ConfigurationUsart1 ( void );
  7. extern void NVIC_ConfigurationUSART1 ( void );
  8. extern void UartSend ( char *buffer, int nBytes );
  9. #endif