Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs

NRF52832 ble detection issue

I've been struggling with a board issue for a week now. I'm using the nRF52835 with an external antenna. I'm trying to run an example after installing the nRF Connect SDK. I've loaded various Bluetooth examples from both the nRF SDK (via Segger IDE) and the nRF Connect SDK, but the device is not being discovered. In my understanding, both examples should work out of the box, but unfortunately, they don't. I've uploaded the projects to the cloud. Link to the files https://drive.google.com/file/d/15gjsuDHun9xgwL13yR_y65k9e1L3tR-k/view?usp=sharing (Versions: NRF SDK 1.7.0, nrf-connect sdk 2.5.0)

When using nRF Connect, I've set the build configuration to the nRF52DK board and tried creating a custom one, but neither option worked. LED examples are working fine. I'm trying to find a BLE device with my phone.

Parents Reply Children
  • What is the internal capacitance of your low frequency and high frequency crystals?

  • The low-frequency crystal (ZQ2) on the board is not installed. In the datasheet for the high-frequency crystal (ZQ1), the Load Capacity is specified as 10 pF, and I couldn't find any other capacitance-related parameter. As far as I understand, BLE can operate using the internal crystal, right?

    6087.datasheet.pdf

    Datasheet 

  • Hi,

    Yes but you need to change the LFCLK to use the RC oscillator instead of the external low frequency crystal. By default it will use the low frequency crystal.

    You can change to RC oscillator by setting CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y in the project config in the nRF Connect SDK project,

    regards

    Jared 

  • Thanks for the help. I added CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y in proj.conf and now debug mode is working properly, and there are no errors occurring during code execution. However, the phone still cannot detect the device. Here is the code I am using: 

    /* main.c - Application main entry point */

    /*
     * Copyright (c) 2015-2016 Intel Corporation
     *
     * SPDX-License-Identifier: Apache-2.0
     */

    #include <zephyr/types.h>
    #include <stddef.h>
    #include <zephyr/sys/printk.h>
    #include <zephyr/sys/util.h>

    #include <zephyr/bluetooth/bluetooth.h>
    #include <zephyr/bluetooth/hci.h>

    static uint8_t mfg_data[] = { 0xff, 0xff, 0x00 };

    static const struct bt_data ad[] = {
        BT_DATA(BT_DATA_MANUFACTURER_DATA, mfg_data, 3),
    };

    static void scan_cb(const bt_addr_le_t *addr, int8_t rssi, uint8_t adv_type,
                struct net_buf_simple *buf)
    {
        mfg_data[2]++;
    }

    int main(void)
    {
        struct bt_le_scan_param scan_param = {
            .type       = BT_HCI_LE_SCAN_PASSIVE,
            .options    = BT_LE_SCAN_OPT_NONE,
            .interval   = 0x0010,
            .window     = 0x0010,
        };
        int err;

        printk("Starting Scanner/Advertiser Demo\n");

        /* Initialize the Bluetooth Subsystem */
        err = bt_enable(NULL);
        if (err) {
            printk("Bluetooth init failed (err %d)\n", err);
            return 0;
        }

        printk("Bluetooth initialized\n");

        err = bt_le_scan_start(&scan_param, scan_cb);
        if (err) {
            printk("Starting scanning failed (err %d)\n", err);
            return 0;
        }

        do {
            k_sleep(K_MSEC(400));

            /* Start advertising */
            err = bt_le_adv_start(BT_LE_ADV_NCONN, ad, ARRAY_SIZE(ad),
                          NULL, 0);
            if (err) {
                printk("Advertising failed to start (err %d)\n", err);
                return 0;
            }

            k_sleep(K_MSEC(400));

            err = bt_le_adv_stop();
            if (err) {
                printk("Advertising failed to stop (err %d)\n", err);
                return 0;
            }
        } while (1);
        return 0;
    }

  • Hi,

    Can you start with something easier such as the unmodified beacon sample in the sdk?

    Can you verify that you're able to flash and run the sample without it asserting?

    regards
    Jared 

Related