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

nrf5340 dk do not advertise for ble examples

hi

my board nrf5340 do not run any ble example . it creates build and everything is good in softwre while running. but when i try to receive any signal from board of blutooth. it do not receive any from my baoard. i have run i beacon , light and hrm . but no one work. plus blinky project work very well... please help .. 

my sdk version is 1.6.1

Parents
  • Hey Rajni!

    The nRF5340 has two cores, an app core and a network core. This makes flashing an application to it a bit more difficult, which you might notice when flashing an application that requires the radio. The blinky project for instance doesn't.

    Using SES, you can flash the application you want to the appcore, and then flash the sample called "hci_rpmsg" to the netcore. You can also use "west", which might make it a bit simpler as it flashes both of the cores using one command.

    To use west, open the terminal from the drop down menu, of the NCS version of your choice, in the Toolchain manager. Then change directory to the sample you want to use, and then run:

    west build

    west flash --recover

    Let me know if there is anything else!

    Best regards,

    Elfving

Reply
  • Hey Rajni!

    The nRF5340 has two cores, an app core and a network core. This makes flashing an application to it a bit more difficult, which you might notice when flashing an application that requires the radio. The blinky project for instance doesn't.

    Using SES, you can flash the application you want to the appcore, and then flash the sample called "hci_rpmsg" to the netcore. You can also use "west", which might make it a bit simpler as it flashes both of the cores using one command.

    To use west, open the terminal from the drop down menu, of the NCS version of your choice, in the Toolchain manager. Then change directory to the sample you want to use, and then run:

    west build

    west flash --recover

    Let me know if there is anything else!

    Best regards,

    Elfving

Children
Related