File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
devices/ble_hci/common-hal/_bleio/hci_include Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ struct bt_att_handle_group {
89
89
/* Find By Type Value Response */
90
90
#define BT_ATT_OP_FIND_TYPE_RSP 0x07
91
91
struct bt_att_find_type_rsp {
92
+ uint8_t _dummy [0 ];
92
93
struct bt_att_handle_group list [];
93
94
} __packed ;
94
95
@@ -121,6 +122,7 @@ struct bt_att_read_req {
121
122
/* Read Response */
122
123
#define BT_ATT_OP_READ_RSP 0x0b
123
124
struct bt_att_read_rsp {
125
+ uint8_t _dummy [0 ];
124
126
uint8_t value [];
125
127
} __packed ;
126
128
@@ -134,6 +136,7 @@ struct bt_att_read_blob_req {
134
136
/* Read Blob Response */
135
137
#define BT_ATT_OP_READ_BLOB_RSP 0x0d
136
138
struct bt_att_read_blob_rsp {
139
+ uint8_t _dummy [0 ];
137
140
uint8_t value [];
138
141
} __packed ;
139
142
@@ -142,12 +145,14 @@ struct bt_att_read_blob_rsp {
142
145
143
146
#define BT_ATT_OP_READ_MULT_REQ 0x0e
144
147
struct bt_att_read_mult_req {
148
+ uint8_t _dummy [0 ];
145
149
uint16_t handles [];
146
150
} __packed ;
147
151
148
152
/* Read Multiple Respose */
149
153
#define BT_ATT_OP_READ_MULT_RSP 0x0f
150
154
struct bt_att_read_mult_rsp {
155
+ uint8_t _dummy [0 ];
151
156
uint8_t value [];
152
157
} __packed ;
153
158
@@ -233,6 +238,7 @@ struct bt_att_signature {
233
238
234
239
#define BT_ATT_OP_READ_MULT_VL_REQ 0x20
235
240
struct bt_att_read_mult_vl_req {
241
+ uint8_t _dummy [0 ];
236
242
uint16_t handles [];
237
243
} __packed ;
238
244
You can’t perform that action at this time.
0 commit comments