Hi,
I have programmed my Nordic Thingy 91 with lte_ble_gateway and seems to work fine. However whenever I increase the connection parameters, the thingy91 fails in the discoverty state. I tested the same code on nRF9160 DK and it works fine. Can someone check where is this bug coming from? I know that this example had problem before and they have been some patches to solve them. Below is the code i used to change the connection parameters
static const struct bt_le_conn_param cp = {
.interval_min = 2400,
.interval_max = 2400,
.latency = 4,
.timeout = 3200,
};
struct bt_scan_init_param scan_init = {
.connect_if_match = true,
.scan_param = &scan_param,
//.conn_param = BT_LE_CONN_PARAM_DEFAULT,
.conn_param = &cp,
};