5#include <ble/core/ble_std.h>
6#include <ble/core/ble_defs.h>
12#define BASIC_FEATURES 0
21#define LL_ONLY_BASIC 0
71#define BLE_CMD_MAX_PARAM_LEN HCI_COMMAND_MAX_PARAM_LEN
75#define BLE_EVT_MAX_PARAM_LEN HCI_EVENT_MAX_PARAM_LEN
87extern int hci_send_req(
struct hci_request* req, uint8_t async);
94#define MIN(a, b) (((a) < (b)) ? (a) : (b))
98#define MAX(a, b) (((a) > (b)) ? (a) : (b))
Definition ble_const.h:78