Incremented buffer size to accomodate default MTU

L2CAP Config request was not sent from Bluedroid as the MTU size was
higher than the max buffer size for default apdu tx/rx sizes.
Incremented the buffer size to accomodate this default MTU size. Also
included new datatypes and corresponding tx/rx apdus. This will set the
MTU size to that defined in datatype config rather than selecting
default value.
b/10565872
Change-Id: Id469c836581fb3d020bcb88c381421e0ef965073
diff --git a/btif/src/btif_hl.c b/btif/src/btif_hl.c
index a2fdbff..28a1461 100644
--- a/btif/src/btif_hl.c
+++ b/btif/src/btif_hl.c
@@ -147,7 +147,11 @@
     {BTIF_HL_DATA_TYPE_BODY_THERMOMETER,    896,    224},
     {BTIF_HL_DATA_TYPE_BODY_WEIGHT_SCALE,   896,    224},
     {BTIF_HL_DATA_TYPE_GLUCOSE_METER,       896,    224},
-    {BTIF_HL_DATA_TYPE_STEP_COUNTER,        6624,   224}
+    {BTIF_HL_DATA_TYPE_STEP_COUNTER,        6624,   224},
+    {BTIF_HL_DATA_TYPE_BCA,                 7730,   1230},
+    {BTIF_HL_DATA_TYPE_PEAK_FLOW    ,       2030,   224},
+    {BTIF_HL_DATA_TYPE_ACTIVITY_HUB,        5120,   224},
+    {BTIF_HL_DATA_TYPE_AMM,                 1024,   64}
 };
 
 #define BTIF_HL_DATA_TABLE_SIZE  (sizeof(data_type_table) / sizeof(btif_hl_data_type_cfg_t))