Not able to jump to application after enabling HDP
@JHOUD @TDK @Dimitrios Bako
I have configured HDP as follows :
By Bootloader .icf details are :
define symbol __ICFEDIT_region_ROM_start__ = 0x0C000800;
define symbol __ICFEDIT_region_ROM_end__ = 0x0C007FFF;
Configurations when i debug the code are also fine :
Now from Bootloader i Jump to my secure application in which i Enable Hide protection :
HAL_FLASHEx_EnableSecHideProtection(FLASH_BANK_1);
issue is after this i am not able to jump to my nonsecure application. .icf details are:
define symbol __ICFEDIT_intvec_start__ = 0x08020000;
/*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x08020800;
define symbol __ICFEDIT_region_ROM_end__ = 0x08027FFF;
without enabling Hide protection it works fine.
Am i missing something?
