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

problem with Eddystone in nRF52832

Hi

I tried to implement Eddystone example in nRF52810. it worked successfully. Then i tried to implement same in nRF52832 using pca10040. But it not working. I only changed the led pin. why this not working?.

I am using SDK 15.3.0

Parents Reply
  • Hi

    It might be a caching problem. 

    Could you try to change the BLE address of the device and see if the problem disappears?

    To do this please add the following code snippet to the gap_params_init() function in your example:

    uint8_t address_raw[] = {0x01, 0x02, 0x03, 0x04, 0x05, 0xC6};

    ble_gap_addr_t address;

    address.addr_type = BLE_GAP_ADDR_TYPE_RANDOM_STATIC;

    memcpy(address.addr, address_raw, 6);
    sd_ble_gap_addr_set(&address);

    Best regards
    Torbjørn

Children
Related