This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Direction Finding Example Zephyr

Hi I am working on nrf5340 direction finding example using nrfconnect zephyr v1.6.0-rc2. i had build example zephyr\samples\bluetooth\direction_finding_connectionless_tx for build_nrf5340dk_nrf5340_cpuapp. when i am debugging it facing issue 

static int bt_rpmsg_open(void)
{
BT_DBG("");

while (!bt_rpmsg_platform_endpoint_is_bound()) {
k_sleep(K_MSEC(1));
}
return 0;
}

code is stuck in this loop.

i search issue i found that i have to program hci_rpmsg project in network core. i  build this for  build_nrf5340dk_nrf5340_cpunet and tried to flash but i am not able to flash it getting error-

Parents Reply
  • Hi i clone full repo using nrfconnect getting started. from it  1.699 version i downloaded 

    I build project  nrf\samples\bluetooth\direction_finding_connectionless_tx - by placing overlay-aoa.conf content at hci_rpmsg.conf

    No flash merge.hex in board.

    getting print 

    Bluetooth initialization...*** Booting Zephyr OS build v2.6.0-rc1-ncs1-2275-g2716fad989a4 ***
    Starting Connectionless Beacon Demo
    Bluetooth initialization...

    still seems same issue as above

    I have doubt which build type i should select app or net. i had selected app

Children
Related