I have uploaded nordic thingy 91 with lte_ble_gateway program and modified it so that it can connect with 7 devices, however when i try to connect the 6th device I get bluetooth error, namely bt_att: ATT Timeout
can anyone tell me how to fix this problem? is this something caused by autoconf.h, where some default parameters only support 5 devices? or is caused by connection parameters as I am using very large interval ?
static const struct bt_le_conn_param cp = {
.interval_min = 2400,
.interval_max = 2400,
.latency = 4,
.timeout = 3200,
};
or is it caused by something else?