Documentation on nrf5340 network core

Hi,

I'm building an application for the nrf5340 in rust and I want to be able to use the bluetooth LE audio functionality. For this I have two questions:

  1. How can I build the network core software separately so I can use that with my own application core FW
  2. Is there some documentation on how to communicate to the network core and use it for the LE audio usecase.

I'm currently interested in using it as a CIS server.

Thanks in advance.

  • Could you confirm whether the netcore implementation is using the "icmsg" or "rpmsg" (and thus openamp) backend.

    Also, do I understand correctly that the softdevice_controller and mpsl libraries in nrfxlib could be used on the app core to control the network core? Or is this the software actually running on the network core?

    In the former case, I seem to only have soft-float builds for the softdevice_controller and mpsl but a hardfloat build of the lc3 encoder. Is this correct?

  • The softdevicd controller itself will run on the netcore, but the MPSL will be running on the app core, communicating with the softdevice controller on the net core. 

    ChristiaanP said:
    Could you confirm whether the netcore implementation is using the "icmsg" or "rpmsg" (and thus openamp) backend.

    That depends on the NCS version you are using. If you try to build an NCS sample in any until around 2.4.3, I think, you can see in the build folder that there is a hci_rpmsg child image.

    Then it changed to hci_ipc around 2.5.0. Then in 2.7.0 the build system was once more updated to sysbuild, so the structure in the build folder is a little different, but I believe it is still using hci_ipc.

    BR,

    Edvin

Related