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

DFU compatibility for a mesh example

Hi,

I am interested to know how to make a mesh node (for example, a light server) compatible to perform a DFU.

I have gone through the DFU page and I noticed that the DFU is done over the Serial port. I understand that the dfu firmware is being replaced with blinky firmware. Correct me if I am wrong.

Now, what changes should I make to the commands inorder to make the light_server example node to be DFU compatible/capable over the air?

Would replacing the application hex file on step 8 to light_server instead of dfu solve it? or should I add any other commands to have light_server firmware first?

Thank you.

Parents
  • Hello,

    well. The short answer is that you need the mesh_evt_handler() to handle DFU packets, like it does in the DFU example. In addition, if you want the device to handle Serial DFU (the one who receives the packets from nrfutil), you need it to support serial DFU as well. 

    This is done in nrf_mesh_serial_init(NULL); in mesh_init(void).

    Inside this call, serial_handler_dfu_init() is called, which handles the DFU serial messages.

    When you try to include the DFU packets (over Mesh) you will probably have to include everything you need around as well. Give it a go, and let me know if you get stuck.

    BR,

    Edvin

  • Hi,

    The short answer is that you need the mesh_evt_handler() to handle DFU packets, like it does in the DFU example.

    I notice that nrf_mesh_evt_handler_t is used in only few examples like EnOcean, light switch provisioner, Lpn examples. 

    So, in order to make other examples DFU capable, I need to add the nrf_mesh_evt_handler while mesh initilization.

    Give it a go, and let me know if you get stuck.

    If I am trying to push the dfu packets over the air but not serial, I should push it from the nrf connect app right? or can we do it from the mesh app? Sorry but I have no idea about how to push it OTA!!

    Thank you.

  • What compiler do you use? Segger Embedded Studio? Armgcc (what version)?

    I use Segger Embedded Studio v4.12.

    I suggest that you have one node that only uses UART for DFU, and the rest can use it for the sensors. Is that a viable solution?

    Yes, I can do that. I can use a gateway node which can use the serial Bootloader to push the application onto the network and all the nodes that have UART application can use a Mesh Bootloader(not serial).

    You can have the bootloader over Mesh on a node without using the UART

    Do you mean the "mesh_bootloader_gccarmemb_nrf52832_xxAA.hex" file in the bin/bootloader folder?

    Thank you.

  • DeveloperZ said:
    Do you mean the "mesh_bootloader_gccarmemb_nrf52832_xxAA.hex" file in the bin/bootloader folder?

     Yes. That is correct. Also, in mesh_init() (in main.c), make sure nrf_mesh_serial_init() is not called for the nodes that intend to use the UART for sensors, only the gateway node that sends the update from serial to the network. This is skipped by defining NRF_MESH_SERIAL_ENABLE to 0. 

    In your SES, can you click "Help" -> About Segger Embedded Studio, and take a screenshot of the window that pops up:

    BR,

    Edvin

  • Can you please try to downgrade to Segger Embedded Studio version 3.40?

    This is the version that is tested with the SDK. As mentioned, I have seen a similar error with another customer using a later version of the compiler. Please try to downgrade SES to version 3.40. It is also mentioned in the release notes for SDK15.2.0 what versions that are officially supported.

  • Hi,

    I was able to successfully push the update yesterday using the same files but today, it failed!!

    There is a new issue today which is 

    I can't push the update as it gets stuck at this point before starting to send the firmware update. It says INVALID DATA on the DFU packet but I was trying to push the Blinky example. What could be an invalid data on a Blinky DFU packet?

    I was using the same keys, device pages that I used a day before but today, it doesn't perform the update.

Reply
  • Hi,

    I was able to successfully push the update yesterday using the same files but today, it failed!!

    There is a new issue today which is 

    I can't push the update as it gets stuck at this point before starting to send the firmware update. It says INVALID DATA on the DFU packet but I was trying to push the Blinky example. What could be an invalid data on a Blinky DFU packet?

    I was using the same keys, device pages that I used a day before but today, it doesn't perform the update.

Children
Related