1 #ifndef _FBT_HCI_SIZES_H
2 #define _FBT_HCI_SIZES_H
3 
4 // Sizes
5 #define FBT_HCI_CMD_MIN_SIZE		3
6 #define FBT_HCI_CMD_MAX_SIZE		258
7 
8 #define FBT_HCI_EVENT_MAX_SIZE		257
9 
10 #define FBT_HCI_DATA_MIN_SIZE		5
11 #define FBT_HCI_DATA_MAX_SIZE		343
12 
13 #define FBT_HCI_BDADDR_SIZE			6
14 #define FBT_HCI_NAME_SIZE			248
15 
16 #define FBT_HCI_DEVICE_CLASS_SIZE	3
17 
18 #define FBT_HCI_LAP_SIZE			3
19 #define FBT_HCI_MAX_CONDITION_SIZE	7
20 
21 #define FBT_HCI_LINK_KEY_SIZE		16
22 #define FBT_HCI_PIN_CODE_SIZE		16
23 
24 #define FBT_HCI_VARIABLE_SIZE       1
25 
26 
27 #endif // _FBT_HCI_SIZES_H
28