1
6
7
8
9
10
11
12
13
16
17
18
21
22
23
29
30
31
/* ... */
#ifndef __UART_DRIVER_H__
#define __UART_DRIVER_H__
#include <stdint.h>
#include <stdbool.h>
/* ... */
void hci_uart_open(void);
/* ... */
void hci_uart_close(void);
/* ... */
void hci_uart_send(uint8_t *data, uint16_t len);
/* ... */
#endif