Hi there!
I face issue with setting the connection using PHY Coded.
I've:
- set the #define NRF_BLE_SCAN_SCAN_PHY 4 (it's Coded one) on Central side.
- forced PHY Coded to be set on GAP Update in "ble_evt_handler" function on both Central and Peripheral side:
case BLE_GAP_EVT_PHY_UPDATE_REQUEST:
{
ble_gap_phys_t const phys =
{
.rx_phys = BLE_GAP_PHY_CODED,
.tx_phys = BLE_GAP_PHY_CODED,
};
- extended #define NRF_BLE_SCAN_BUFFER 255 on Central side (according to some other DevZone topic)
- let everything else like in PHY 1M project.
But I see it's not PHY Coded, because range didn't extend. What else am I supposed to do?