hi
I changed the communication speed to 2Mbps by referring to the link below.
( Pheripheral )
- Link : How to use 2MBPS mode to get max throughput
case BLE_GAP_EVT_CONNECTED: ... // The already included stuff. ... ble_gap_phys_t const phys = { .rx_phys = BLE_GAP_PHY_2MBPS, .tx_phys = BLE_GAP_PHY_2MBPS, }; err_code = sd_ble_gap_phy_update(p_ble_evt->evt.gap_evt.conn_handle, &phys); APP_ERROR_CHECK(err_code); break; case ...:
By the way, I changed the default 1Mbps to 2Mbps, but I'm at a loss as to how to check.
So, just in case, I try to connect with Central, which is 1Mbps, and it works. Is it correct that it is normally changed to 2Mbps?