1
0
mirror of https://github.com/bluekitchen/btstack.git synced 2025-04-04 13:20:44 +00:00

provide access to CTS irq and allow for sleep mode

This commit is contained in:
matthias.ringwald 2011-08-20 12:47:17 +00:00
parent bcbb77fff8
commit 7d11b61d2f

@ -32,7 +32,9 @@
/* /*
* hal_uart_dma.h * hal_uart_dma.h
* *
* Hardware abstraction layer for blockwise read (IRQ-driven) and write (polling) * Hardware abstraction layer that provides
* - blockwise IRQ-driven read/write
* - CSR IRQs
* *
*/ */
@ -43,6 +45,8 @@
void hal_uart_dma_init(void); void hal_uart_dma_init(void);
void hal_uart_dma_set_block_received( void (*block_handler)(void)); void hal_uart_dma_set_block_received( void (*block_handler)(void));
void hal_uart_dma_set_block_sent( void (*block_handler)(void)); void hal_uart_dma_set_block_sent( void (*block_handler)(void));
void hal_uart_dma_set_csr_irq_handler( void (*csr_irq_handler)(void));
int hal_uart_dma_set_baud(uint32_t baud); 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_send_block(const uint8_t *buffer, uint16_t length);
void hal_uart_dma_receive_block(uint8_t *buffer, uint16_t len); void hal_uart_dma_receive_block(uint8_t *buffer, uint16_t len);
void hal_uart_dma_set_sleep(uint8_t sleep);