Hi,
I use the secure BLE Bootloader to update the nRF52840 (with S140).
Now I want to add a UARTE to update the STM32 connected to nRF52.
Do you have a solution to do that? All my tries have not worked.
Thanks for help.
Best regards.
Hi,
I use the secure BLE Bootloader to update the nRF52840 (with S140).
Now I want to add a UARTE to update the STM32 connected to nRF52.
Do you have a solution to do that? All my tries have not worked.
Thanks for help.
Best regards.
Is there a specific reason you use libuarte in your project? I think you could save yourself some trouble if you used the regular UARTE/APP_UART. If you're not doing DFU very often, so that the extra time the "regular UART" uses doesn't matter too much, I don't think libuarte has a lot of advantages here, and it is harder to use.
Also, can you clarify what the current issue is? Is it that the SoftDevice isn't enabled correctly within the DFU_INIT function on your end? What exactly is the error message you're seeing here?
Best regards,
Simon
Is there a specific reason you use libuarte in your project? I think you could save yourself some trouble if you used the regular UARTE/APP_UART. If you're not doing DFU very often, so that the extra time the "regular UART" uses doesn't matter too much, I don't think libuarte has a lot of advantages here, and it is harder to use.
Also, can you clarify what the current issue is? Is it that the SoftDevice isn't enabled correctly within the DFU_INIT function on your end? What exactly is the error message you're seeing here?
Best regards,
Simon
Hi,
Thanks for your help and time.
I use LibUarte because nRF52 communicates with two other microcontrollers, and I found the best solution with examples in the SDK.
The solution works for the application, so I thought that would work with the bootloader to update an STM32. Unfortunately not. After solving the implementation problem, I saw the data was not sent.
Indeed, we will not make DFU very often. So if you have an example of the UARTE/APP_UART integrated into the secure bootloader, I will be pleased to have it.
At the moment, I modified the firmware to test the STM32 update with the application. And that's work almost, but the problem is on the STM32 side.
To clarify the SoftDevice issue. I think the nRF52 event are managed by the SoftDevice, and as it is enable only in DFU part of the bootloader (after application activation), my implementation of the LibUarte in bootloader does not work. I have no error message only no data transmitted by UARTE.
I hope I am cleared because it is not easy to explain a problem.
Best regards.
Christophe