Update IDF to 9a26296

This commit is contained in:
me-no-dev
2017-09-12 09:40:52 +03:00
parent 0bce98e72c
commit ba929be27a
232 changed files with 6316 additions and 2105 deletions

View File

@ -21,8 +21,8 @@
#define GAP_INT_H
#include "bt_target.h"
#include "fixed_queue.h"
#include "gap_api.h"
#include "gki.h"
#include "gatt_api.h"
#define GAP_MAX_BLOCKS 2 /* Concurrent GAP commands pending at a time*/
/* Define the Generic Access Profile control structure */
@ -71,8 +71,8 @@ typedef struct {
UINT16 rem_mtu_size;
BOOLEAN is_congested;
BUFFER_Q tx_queue; /* Queue of buffers waiting to be sent */
BUFFER_Q rx_queue; /* Queue of buffers waiting to be read */
fixed_queue_t *tx_queue; /* Queue of buffers waiting to be sent */
fixed_queue_t *rx_queue; /* Queue of buffers waiting to be read */
UINT32 rx_queue_size; /* Total data count in rx_queue */
@ -119,7 +119,7 @@ typedef struct {
UINT16 cl_op_uuid;
BOOLEAN in_use;
BOOLEAN connected;
BUFFER_Q pending_req_q;
fixed_queue_t *pending_req_q;
} tGAP_CLCB;