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
  • In SDK 15.2.0 
    radio_config.h 
    at line 103, there is define
    RADIO_MODE_NRF_250KBIT in radio_mode_t

    typedef enum
    {
    RADIO_MODE_NRF_1MBIT, /*!< Proprietary 1Mbit/s mode*/
    RADIO_MODE_NRF_2MBIT, /*!< High data rate */
    RADIO_MODE_NRF_250KBIT, /*!< Deprecated */
    RADIO_MODE_BLE_1MBIT, /*!< BLE 1Mbit/s mode*/
    #ifdef NRF52_SERIES
    RADIO_MODE_BLE_2MBIT, /*!< BLE high data rate */
    RADIO_MODE_NRF_62K5BIT, /*!< Long range */
    #endif
    RADIO_MODE_END
    } radio_mode_t;

    Can I use 250KBIT?
    There is only define NRF52_SERIES for 62K5BIT. not NRF52840 only(as in many cases it is specially define).

    Or
    Is there option to use low data rate to increase range in NRF52832?

Children
Related