Hello Earl Goodrich,
Thanks for making me understand.
As per your suggestions, to write content in DefaultISR function, I search it, but I found it nowhere.
I added hardfault component, and write DefaultISR handler like this in my event.c file.,
void DefaultISR(void)
{
volatile uint32_t fault_isr = 0;
fault_isr = __get_IPSR() & 0x1FF;
printf ("[Fault handler, #%u]\n",fault_isr);
HF1_HardFaultHandler();
}
When my debug stucks, I am able to see that, there are lost of ISR functions in my debug window in thread 1.(Please see image below).

One more thing, register values like CFSR, HFSR, BFSR etc are coming different every time on different debug.
Registers on 1st debug on 2nd debug on 3rd debug
stacked_r0 = 0x20010000 0x20006fa8 0x1a
stacked_r1 = 0x0 0x20005cf4 0x0
stacked_r2 = 0x1fff55c8 0x20005cf4 0x0
stacked_r3 = 0x1fff57a0 0x20005cec 0xe2090000
stacked_r12 = 0x14e9f 0xa5a5a5a5 0x14e9f
stacked_lr = 0xfffffffd 0xdbc9 0xdbb1
stacked_pc = 0xe23e 0xce8c 0xce74
stacked_psr = 0x6100000e 0x1000000 0x6100005d
CFSR = 0x8200 0x8600 0x400
HFSR = 0x40000000 0x40000000 0x40000000
DFSR = 0x1 0x1 0x1
AFSR = 0x0 0x0 0x0
MMAR = 0x20010000 0xe2210004 0xe000ed34
BFAR = 0x20010000 0xe2210004 0xe000ed38
( From CFSR regiester, I got the fault like,
In 1st debug: BusFault- PRECISERR
UsageFault - NOCP
In 2nd Debug: BusFault- PRECISERR,IMPRECISERR
UsageFault - NOCP
In 3rd Debug: BusFault- PRECISERR
Description of this registers I got from DUI0553A_cortex_m4_dgug.pdf )
Though there is dissimilarities in register values, I got same ISR functions is debug window and I got the same value for fault_isr, that is 3.
Now in my MK60D10.h file,
/* Device specific interrupts */
DMA3_IRQn = 3, /**< DMA channel 3 transfer complete */
One more thing on debug stucks, I got the popup indicating me "cannot access memory at address 0x20010004" (see
image below). What is this indicating?

Is this creating a stuck?
I also tried to disable my dmacontroller component,disabled tasks which are using this dma facilities, but still my code stucks.
Should I have to look for dmaISR function, or for Isr functions which are indicated in debug window like, uxListremove() or xTaskRemoveFromEventList() or xQueueGenericSenfFromISR etc...?
How to solve this stucking problem? Which ISR is causing a problem? How to know that?
Please suggest what do next.
Also am I progressing on right direction?
Regards
Utsavi Bharuchwala