STM32 builtin bootloader GO command problem
Hi,
I am trying to set up bootloader on my STM32G030, via usart.
When I enter it and send start command (0x7F) I do get ACK response(0x79). I cna read ID and protocol verions, but when I try do use "Go" command to start my application, it gets stuck.
What I am sending and responses I get from bootlaoder:
Send: 0x7F (start)
Response: 0x79
Send: 0x21 0xDE (go command)
Response: 0x79
Send: 0x0800004 0x04 (my application program is at address 0x08000000) (0x04 is length of address in bytes for checksum)
Response: nothing
I assume I am doing something wrong with checksum value, but I cant figure out what.
