1 /* 2 * Copyright 2008 Mika Lindqvist, monni1995_at_gmail.com 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #ifndef _BTHCI_SCO_H_ 6 #define _BTHCI_SCO_H_ 7 8 #include <bluetooth/HCI/btHCI.h> 9 10 #define HCI_SCO_HDR_SIZE 3 11 12 struct hci_sco_header { 13 uint16 handle; 14 uint8 slen; 15 } __attribute__((packed)); 16 17 #endif // _BTHCI_SCO_H_ 18