From 1a1047fe113dcd661f6bcadba09d8317a860d9c0 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 9 Apr 2019 10:52:17 +0200 Subject: [PATCH] nimble/ll: Fix hci_le_subev_periodic_adv_rpt declaration Unused byte is part of spec and must have a placeholder. --- nimble/include/nimble/hci_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/nimble/include/nimble/hci_common.h b/nimble/include/nimble/hci_common.h index 4d6fa2985..65e1f2056 100644 --- a/nimble/include/nimble/hci_common.h +++ b/nimble/include/nimble/hci_common.h @@ -1027,6 +1027,7 @@ struct hci_le_subev_periodic_adv_rpt { uint16_t sync_handle; uint8_t tx_power; int8_t rssi; + uint8_t unused; uint8_t data_status; uint8_t data_length; uint8_t data[0];