Bootloader not going into application code and is presenting with a hard fault. Even after using the correct address of the reset handler the problem still persists
Hi @enthuCutlet
if you step the jump command using asm instruction stepping (do not use stepping in C, it's useless here), can you see if it jumps to entry point of the application? It usually does jump to the entry point. And it usually fails later in the code due to insufficient de-initialization.
So, first step is to check if it jumps to the entry point or not.
Regards,
Lukas