mirror of
https://github.com/espressif/esp-idf
synced 2025-03-26 01:10:12 -04:00
14 lines
264 B
C
14 lines
264 B
C
#ifndef __BT_API_COMMON_H__
|
|
#define __BT_API_COMMON_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "bt_types.h"
|
|
|
|
|
|
typedef tBT_UUID esp_bt_uuid_t; /* tBT_UUID in "bt_types.h" */
|
|
|
|
typedef BD_ADDR esp_bd_addr_t; /* BD_ADDR in bt_types.h */
|
|
|
|
#endif /* __BT_API_COMMON_H__ */
|