This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

250kbps PHY Coded in NRF52832 BLE Mesh

How to set 250kbps PHY Coded in NRF52832 BLE Mesh?
I have tried to change  scanner_config_radio_mode_set(RADIO_MODE_BLE_1MBIT); to  scanner_config_radio_mode_set(RADIO_MODE_NRF_250KBIT);

but didn't getting data.
Can I get maximum range using 250kbps in BLE Mesh?
Is BLE Mesh reliable at 250kbps?

Mesh SDK:3.2.0

Thank You
Bivay







Parents Reply
  • 62.5kbps is available for long range as suggest in above link.
    But in

    NRF_RADIO->PCNF0 |=(
     
                     ((RADIO_PCNF0_PLEN_LongRange << RADIO_PCNF0_PLEN_Pos) & RADIO_PCNF0_PLEN_Msk) |
                     ((2 << RADIO_PCNF0_CILEN_Pos) & RADIO_PCNF0_CILEN_Msk) |
                     ((3 << RADIO_PCNF0_TERMLEN_Pos) & RADIO_PCNF0_TERMLEN_Msk) );
            


    RADIO_PCNF0_PLEN_LongRange and other two, how to define them.
    will I find unprovisioned node in NRF Mesh if I use 62.5kbps?

Children
Related