2010-11-10 07:04 AM
Boot Loader and FreeRtos
2011-05-17 05:14 AM
Could somebody give a clue?
Install a real hard fault handler, and have it show you where the problem is. The hard fault is where other faults end up if not handled, the processor provides plenty of information about the location of the fault, and the registers when it faulted. You will likely see it if your PC becomes even, the stack overflows, you access the wrong or an unaligned memory region. Make sure your application sets the vector address block for itself correctly.2011-05-17 05:14 AM
I found out that the reason was in __disable_interrupt. I shouldn't have put it there.