update hal_uart_dma interface

This commit is contained in:
matthias.ringwald 2011-06-05 09:50:25 +00:00
parent 3b6029ff28
commit c0af504239

View File

@ -41,12 +41,7 @@
#include <stdint.h>
void hal_uart_dma_init(void);
void hal_uart_dma_enable_rx(void);
void hal_uart_dma_disable_Rx(void);
void hal_uart_dma_send_byte(uint8_t b);
void hal_uart_dma_send_block(uint8_t *buffer, uint16_t length);
void hal_uart_dma_set_block_received( void (*block_handler)(void));
int hal_uart_dma_set_baud(uint32_t baud);
void hal_uart_dma_send_block(uint8_t *buffer, uint16_t length);
void hal_uart_dma_receive_block(uint8_t *buffer, uint16_t len);