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

Gazell nrf24 host, nrf52 device compatibility

Hi,

We have a product with nrf24L01p Gazell (LastChangedRevision: 133) that acts as a Host. At the moment I'm trying to pair with this host via a PCA10040 Devkit (nRF52832) that acts as a device. For this I'm using the SDK15.3 example: gzll_dynamic_pairing_device_pca10040

Should this setup pair out-of-the-box? Or can I expect some compatibility issues with this setup? At the moment it does not pair at all. Secret key, PIPE addresses and so on are equal.

Parents Reply
  • You mean like: #define GZP_ADDRESS 10, 8, 6, 4

    I notice that if the nrf24 host is powered off, I receive this message on the nrf52 device: "<error> app: Gazelle: transmission failed" about every second, when I power on the nrf24 host, the frequency of receiving this message is increased. So there seems to be some kind of communication.

    When I try: #define GZP_ADDRESS 10, 8, 6, 4, I don't see the effect.

    edit 1: I also tried to pair with our nrf24 device product to pair with nrf52 devkit as host, this also doesn't work.

    edit 2: If I modify the example to this:

    if(send_crypt_data)
    {	
        NRF_LOG_ERROR("Gazelle: encrypted transmission failed");
    }
    else
    {
        NRF_LOG_ERROR("Gazelle: not crypted transmission failed");
    }

    I only receive error messages at the "not encrypted data", for some reason the encrypted messages do arrive? So this means I'm paired, can you elaborate?

Children
Related