when I use this function "void do_bank_swap_reboot(void)" in "nortos" its properly work butt when in "freeRtos"the following error occur.
Where can I find this function, do_bank_swap_reboot?
in data sheet or reference manual
renesas.github.io/.../group___f_l_a_s_h___h_p.html
Looks like you need to
/* Disable SysTick and clear its exception pending bit */ SysTick->CTRL = 0 ; SCB->ICSR |= SCB_ICSR_PENDSTCLR_Msk ;
Thanks the above issue is clear but at this point code is stuck
this error happen when restart function call " __NVIC_SystemReset(); " or hardware reset (press red button S3)
I dont see this issue. Can you share the project that produces this?
I am experiencing a similar issue after bank swap and reboot, the code is stuck in vbatt_bsp_init() function. How did you solve the problem? Thanks!
Hello,
Would you mind to create a new post and give some more details about the issue.
Thanks.
Thanks for your response.
I've been trying to do software upgrade without a bootloader. I enabled the dual bank mode in BSP and successfully programmed the upper bank with the same application code. I then exported both banks' memory and made sure that the content of the lower bank and upper bank is identical. Then I did bank swap and upon successful bank swap, rebooted the board by calling:
NVIC_SystemReset();
But after reboot, the code is always stuck somewhere in SystemInit(). Here is the screen capture for the issue I have.