Hi @Dinesh_Guleria,
There is a lot of useful information in the thread, please read it again.
An example on S32K116:
Read an unimplemented memory (0x80000):
volatile uint32_t read = *((uint32_t*)0x00080000);
void HardFault_Handler(void){
while(1){
}
}
Read the stack from the fault handler
danielmartynek_0-1642002157699.png
In memory view, SP + 0x18
danielmartynek_1-1642002223526.png
Find the instruction:
danielmartynek_2-1642002287673.png
Regards,
Daniel