Browse Source

when fault occurs, the registers dump shall be output firstly.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@186 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong 15 years ago
parent
commit
6a0d160604
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libcpu/arm/stm32/fault.c

+ 1 - 1
libcpu/arm/stm32/fault.c

@@ -17,7 +17,6 @@ extern void list_thread(void);
 extern rt_thread_t rt_current_thread;
 extern rt_thread_t rt_current_thread;
 void rt_hw_hard_fault_exception(struct stack_contex* contex)
 void rt_hw_hard_fault_exception(struct stack_contex* contex)
 {
 {
-	rt_kprintf("hard fault on thread: %s\n", rt_current_thread->name);
 	rt_kprintf("psr: 0x%08x\n", contex->psr);
 	rt_kprintf("psr: 0x%08x\n", contex->psr);
 	rt_kprintf(" pc: 0x%08x\n", contex->pc);
 	rt_kprintf(" pc: 0x%08x\n", contex->pc);
 	rt_kprintf(" lr: 0x%08x\n", contex->lr);
 	rt_kprintf(" lr: 0x%08x\n", contex->lr);
@@ -27,6 +26,7 @@ void rt_hw_hard_fault_exception(struct stack_contex* contex)
 	rt_kprintf("r01: 0x%08x\n", contex->r1);
 	rt_kprintf("r01: 0x%08x\n", contex->r1);
 	rt_kprintf("r00: 0x%08x\n", contex->r0);
 	rt_kprintf("r00: 0x%08x\n", contex->r0);
 
 
+	rt_kprintf("hard fault on thread: %s\n", rt_current_thread->name);
 #ifdef RT_USING_FINSH
 #ifdef RT_USING_FINSH
 	list_thread();
 	list_thread();
 #endif
 #endif