cancel
Showing results for 
Search instead for 
Did you mean: 

I2C firmware upload issue on RDP L1

konstantinos_smathi
Associate II

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:

void JumpToBootloader(void) {
    void (*SysMemBootJump)(void);

    // System memory base address for STM32C031xx series
    volatile uint32_t addr = 0x1FFF0000;

    // Disable all interrupts and reset peripherals to avoid conflicts
    __disable_irq();  
    HAL_RCC_DeInit();
    HAL_DeInit();

    RCC->APBENR1 &= ~RCC_APBENR1_I2C1EN;  // Disable I2C1 clock
    RCC->IOPENR &= ~(RCC_IOPENR_GPIOAEN | RCC_IOPENR_GPIOBEN | RCC_IOPENR_GPIOCEN);

    SysTick->CTRL = 0;
    SysTick->LOAD = 0;
    SysTick->VAL = 0;

    NVIC_ClearPendingIRQ(I2C1_IRQn);  // Clear any pending I2C interrupts

    SYSCFG->CFGR1 |= 0x01;  // Remap system memory

    SysMemBootJump = (void (*)(void)) (*((uint32_t *)(addr + 4)));
    __set_MSP(*(uint32_t *)addr);  // Set main stack pointer

    SysMemBootJump();  // Jump to bootloader
}


Thank you for any help in advance!
Konstantinos

1 ACCEPTED SOLUTION

Accepted Solutions

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.

 

View solution in original post

5 REPLIES 5
konstantinos_smathi
Associate II

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?

 

 

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.

 

konstantinos_smathi
Associate II

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?

How world you start the application normally? Reset the MCU and pull BOOT0 up.

 

konstantinos_smathi
Associate II

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.