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

nrf5340 bluetooth initialization is not worked

Hello, everybody.

I bought the nrf5340-dk board and tested the zephyr sample code. The Blinky code is worked. I tried the beacon sample code. But it is not worked. I think the bluetooth initialization is not worked.

void main(void)
{
int err;

printk("Starting Beacon Demo\n");

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

The printk("starting beacon demo\n") is worked. and then the next line is not worked.. that is, the be_enalbe(bt_ready) function is not worked....

Please help me....

Related