Is there any solution to jump to application from the internal bootloader with BOOT0 pin connected to VDD
I'm using STSPIN32F0A witch is based on STM32F031C6 MCU and in my case BOOT0 pin is always connected to the VDD to force the board to boot on system memory, and the idea is to jump from the bootloader to the application on the main flash using the bootloader GO command.

the problem is, when i run the GO command the sequence seems to be correct and I get the ACK as expected but the program does not jump to the application, but instead he goes back to bootloader again.
Here a screen shot of what happens from host side:

i start the communication with the bootloader with 0x7F and i get the ACK (0x79)
after that i sent the Go command (0x21 0xDE ) and i got the ACK (0x79) and then i send the address (0x08000000) with 0x08 as checksum and i got the ACK.
what i assume is that the program should jump to the memory address received in the Go command without reseting the board.
