diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2005-04-18 15:00:58 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2005-04-18 15:00:58 +0000 |
commit | ddcf94ef9f9f154b8263932a3c372894a61a2bff (patch) | |
tree | fc70f603416026797c0ff783fe249025c1700448 | |
parent | 788fef63f4ab0f7948726bbc4e442f4ede573285 (diff) |
Add definitions for synchronous connection events
-rw-r--r-- | include/hci.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/hci.h b/include/hci.h index dfb866bd..af2e0dd1 100644 --- a/include/hci.h +++ b/include/hci.h @@ -1152,6 +1152,31 @@ typedef struct { } __attribute__ ((packed)) evt_read_remote_ext_features_complete; #define EVT_READ_REMOTE_EXT_FEATURES_COMPLETE_SIZE 13 +#define EVT_SYNC_CONN_COMPLETE 0x2C +typedef struct { + uint8_t status; + uint16_t handle; + bdaddr_t bdaddr; + uint8_t link_type; + uint8_t trans_interval; + uint8_t retrans_window; + uint16_t rx_pkt_len; + uint16_t tx_pkt_len; + uint8_t air_mode; +} __attribute__ ((packed)) evt_sync_conn_complete; +#define EVT_SYNC_CONN_COMPLETE_SIZE 17 + +#define EVT_SYNC_CONN_CHANGED 0x2D +typedef struct { + uint8_t status; + uint16_t handle; + uint8_t trans_interval; + uint8_t retrans_window; + uint16_t rx_pkt_len; + uint16_t tx_pkt_len; +} __attribute__ ((packed)) evt_sync_conn_changed; +#define EVT_SYNC_CONN_CHANGED_SIZE 9 + #define EVT_TESTING 0xFE #define EVT_VENDOR 0xFF |