Bluetooth: controller: Added some comments for fields in node rx struct
Added internal comments about the use of some of the fields in the node rx structure. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
61e7eb907c
commit
10142ab398
1 changed files with 6 additions and 6 deletions
|
@ -247,14 +247,14 @@ struct node_rx_ftr {
|
|||
/* Header of node_rx_pdu */
|
||||
struct node_rx_hdr {
|
||||
union {
|
||||
void *next;
|
||||
memq_link_t *link;
|
||||
uint8_t ack_last;
|
||||
void *next; /* For slist, by hci module */
|
||||
memq_link_t *link; /* Supply memq_link from ULL to LLL */
|
||||
uint8_t ack_last; /* Tx ack queue index at this node rx */
|
||||
};
|
||||
|
||||
enum node_rx_type type;
|
||||
uint8_t user_meta; /* User metadata */
|
||||
uint16_t handle;
|
||||
enum node_rx_type type;
|
||||
uint8_t user_meta; /* User metadata */
|
||||
uint16_t handle; /* State/Role instance handle */
|
||||
|
||||
union {
|
||||
#if defined(CONFIG_BT_CTLR_RX_PDU_META)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue