ESP-IDF
+
0
/2 examples
SourceVu will show references to
ble_l2cap_event
from the following samples and libraries:
coc_blecent sample
coc_bleprph sample
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ble_l2cap_event
ble_l2cap_event struct
Represents a L2CAP-related event. When such an event occurs, the host notifies the application by passing an instance of this structure to an application-specified callback.
Syntax
Show:
Summary
Declaration
from
ble_l2cap.h:350
struct
ble_l2cap_event
{
uint8_t
type
;
union
{
struct
{
int
status
;
uint16_t
conn_handle
;
struct
ble_l2cap_chan
*
chan
;
}
connect
;
struct
{
uint16_t
conn_handle
;
struct
ble_l2cap_chan
*
chan
;
}
disconnect
;
struct
{
uint16_t
conn_handle
;
uint16_t
peer_sdu_size
;
struct
ble_l2cap_chan
*
chan
;
}
accept
;
struct
{
uint16_t
conn_handle
;
struct
ble_l2cap_chan
*
chan
;
struct
os_mbuf
*
sdu_rx
;
}
receive
;
struct
{
uint16_t
conn_handle
;
struct
ble_l2cap_chan
*
chan
;
int
status
;
}
tx_unstalled
;
struct
{
int
status
;
uint16_t
conn_handle
;
struct
ble_l2cap_chan
*
chan
;
}
reconfigured
;
}
;
}
;
Fields
Field
Declared as
Description
ble_l2cap_event::type
uint8_t
Indicates the type of L2CAP event that occurred. This is one of the BLE_L2CAP_EVENT codes.
Examples
ble_l2cap_event
is referenced by 2 libraries and example projects:
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out