Select one of the symbols to view example projects that use it.
 
Outline
#define __UART_DRIVER_H__
#include <stdint.h>
#include <stdbool.h>
hci_uart_open();
hci_uart_close();
hci_uart_send(uint8_t *, uint16_t);
Files
loading...
SourceVuESP-IDF Framework and Examplesbleprph_host_only samplemain/uart_driver.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #ifndef __UART_DRIVER_H__ #define __UART_DRIVER_H__ #include <stdint.h> #include <stdbool.h> /** * @brief open HCI transport of uart *//* ... */ void hci_uart_open(void); /** * @brief close HCI transport of uart *//* ... */ void hci_uart_close(void); /** * @brief send data from host to HCI transport * * @param[in] data pointer to data buffer * @param[in] len length of data *//* ... */ void hci_uart_send(uint8_t *data, uint16_t len); /* ... */ #endif /* __UART_DRIVER_H__ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.