-- When a ble peripheral starts advertising and then receives a BLE_GAP_EVT_CONNECTED event, the stack stops advertising automatically right?
-- When you get BLE_GAP_EVT_CONNECTED and the connection parameters aren't OK (i.e. is_conn_params_ok returns false), then a timer is started. What is supposed to happen during this timer's period? It is the timeout that triggers the sending of a message to the master via sd_ble_gap_conn_param_update. Then, the master will should respond with a BLE_GAP_EVT_CONN_PARAM_UPDATE event at which point you can re-evaluate the connection parameters. I guess I don't understand what the timers are doing here. Why not just send call sd_ble_gap_conn_param_update right away without waiting?