Bluetooth: Add skeleton for handling LE meta event

All LE related HCI events come wrapped in a LE Meta 'super' event.
This patch adds a basic event handler for it.

Change-Id: I4a037d4af080c3ba0f982586065c0c49b6cf7640
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Johan Hedberg 2015-04-18 18:37:03 +03:00 committed by Anas Nashif
commit 3739760dc2
2 changed files with 21 additions and 0 deletions

View file

@ -185,4 +185,9 @@ struct bt_hci_evt_num_completed_packets {
} h[0] PACK_STRUCT;
} PACK_STRUCT;
#define BT_HCI_EVT_LE_META_EVENT 0x3e
struct bt_hci_evt_le_meta_event {
uint8_t subevent;
} PACK_STRUCT;
#endif /* __BT_HCI_H */