2025-03-05 3:49 PM
Hello dear friends,
this is my first post and I need your help with an issue I have. I designed some devices based on STM32C031C6. I use an I2C command to jump to bootloader and I upload the new firmware via I2C also from a microcomputer using the stm32flash software.
The problem comes when I switch to RDP L1. Then, stm32flash can't upload the new firmware. As far I understood, before the upload a mass erase should be done, which is not possible. I can change the RDP level from stm32flash using -k and -j parameters, but this is possible only when I enter bootloader using the jumper configuration. If I enter bootloader from the software via the I2C command, -k and -j parameters result on a NACK from the device.
- How can I complete the upload process via I2C, while my devices are secured with RDP L1?
- Is the issue software related?
- Do I need to switch RDP levels, before the upload? If yes, is a power circle also required?
Here is the code I use for the bootloader jump:
Thank you for any help in advance!
Konstantinos
Solved! Go to Solution.
2025-03-06 12:51 PM
When RDP level 1 is active, booting from the "system bootloader" is possible but it cannot access the internal flash. Read the reference manual (RM) for your STM32, all the details are there.
2025-03-06 9:25 AM
Hello again, I made some progress. I added the following lines to JumpToBootloader function and now I can change RDP level even if I enter bootloader from the software.
NVIC_DisableIRQ(I2C1_IRQn);
NVIC_ClearPendingIRQ(I2C1_IRQn);
NVIC_DisableIRQ(TIM1_IRQn);
NVIC_ClearPendingIRQ(TIM1_IRQn);
To do the firmware upload I change to RDP L0, then I upload it and finally I switch back to RDP L1.
The problem is that after switching to L1, the device is halted and needs a power circle.
Is there a way to upload firmware to RDP L1 device without the need of physical contact?
2025-03-06 12:51 PM
When RDP level 1 is active, booting from the "system bootloader" is possible but it cannot access the internal flash. Read the reference manual (RM) for your STM32, all the details are there.
2025-03-08 8:06 AM
Thank you Pavel.
It is embarrassing but I wasn't aware of the RM document. I was working only with the datasheet and the ANs.
I do the L1 switch on startup and then a software POR to take effect.
Since jumping to the application isn't possible (?) from the bootloader on RDP L1, how can I start the application except from causing a bootloader timeout with a bad command?
2025-03-08 10:59 AM
How world you start the application normally? Reset the MCU and pull BOOT0 up.
2025-03-11 7:19 AM
Applications start running on powerup. I am just curious if starting the application is possible without physical contact, while being in bootloader mode and RDP L1.