12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef HCI_HOST_H
- #define HCI_HOST_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include "OSAL.h"
- #include "osal_bufmgr.h"
- #include "hci.h"
- #include "hci_task.h"
- #define HCI_EVT_HEADER_LEN 3
- #define HCI_DATA_HEADER_LEN 5
- #define HCI_CONNECTION_HANDLE_MASK 0x0FFF
- #define HCI_PB_MASK 0x03
- #ifdef __cplusplus
- }
- #endif
- #endif
|