How do I debug from reset?

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How do I debug from reset?

1,561件の閲覧回数
lpcware-support
Senior Contributor I

Case 1. I have ResetISR in my application

You can do this by changing the startup breakpoint. By default it is the first instruction in main().

  • Open the Debug Configuration for your application (Run->Debug Configurations ...).
  • Switch to the "Debugger tab".
  • In the "Stop on startup at:" field, enter ResetISR (or the name of the function called by the Reset vector if different)
  • Click 'Debug'.
  • You will now be stopped in the first instruction of the ResetISR function.

Case 2. ResetISR is already in flash

First, you need to find the address of the reset vector. To do this:

  • Load your application and stop at main.
  • Now open the Peripherals view, and then click on "MFlashxxx".
    • This will open a Memory window at address 0x0.
    • Address 0x4 contains the address of the ResetISR function. Make a note of the address.
  • Stop debugging.

Now, to set the startup breakpoint at this address:

  • Open the Debug Configuration for your application (Run->Debug Configurations ...).
  • Switch to the "Debugger tab".
  • In the "Stop on startup at:" field, enter the address you made a note of, prefixed by '*'. So, if the address was 0x3071, then enter *0x3071.
  • Click 'Debug'.
  • You will now be stopped in the first instruction of the ResetISR function.

For further information please see the FAQ Changing the Initial Breakpoint on startup

ラベル(1)
タグ(3)
0 件の賞賛
0 返答(返信)