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

what is the maximum range to connect 2 NRF51822 devices with Gazell

Hello,

I was looking into Gazell and read that Gazell only allows pairing when Host and Device are in close proximity to each other. This range is about 30 centimeters. I was wondering if this range could be extended? and if this is possible what will be the range it could reach?

Thanks in advance,

Tim

Parents
  • This is a security feature implemented in the gazell pairing library, to prevent bonding to any "wrong"/malicious device. This library is delivered as source code in the SDK, so it is possible to change this behavior.

    Basically the gazell library transmits the pairing request using low (-16dBm) tx power, so only devices in close proximity will receive it.

    To be able to do pairing using normal tx power one only needs to change one line in the file nrf_gzp_config.h(line 53):

    /**
    Reduced TX power for use during close proximity pairing.
    */
    #define GZP_POWER NRF_GZLL_TX_POWER_N16_DBM
    

    change to:

    #define GZP_POWER NRF_GZLL_TX_POWER_0_DBM
    
Reply
  • This is a security feature implemented in the gazell pairing library, to prevent bonding to any "wrong"/malicious device. This library is delivered as source code in the SDK, so it is possible to change this behavior.

    Basically the gazell library transmits the pairing request using low (-16dBm) tx power, so only devices in close proximity will receive it.

    To be able to do pairing using normal tx power one only needs to change one line in the file nrf_gzp_config.h(line 53):

    /**
    Reduced TX power for use during close proximity pairing.
    */
    #define GZP_POWER NRF_GZLL_TX_POWER_N16_DBM
    

    change to:

    #define GZP_POWER NRF_GZLL_TX_POWER_0_DBM
    
Children
Related