I'm searching a way to exit from bootloader after having successfully programmed my flash. Is it possible to jump to the flash program holding the boot0 pin always high? I have done some attempts using STM32_Programmer_CLI.exe specifying the start address (option -s from command line) of my ResetHandler function which is in flash at address 0x8000970. It seems that this doesn't work and it needs to switch boot0 pin at a low level to make it works.
Just to explain my setup: I'm using the STM32_Programmer_CLI.exe program as following:
STM32_Programmer_CLI.exe -c port=USB1 -w myprog.bin 0x8000000 -s 0x8000970
Do you have some suggests? Thank you!