cancel
Showing results for 
Search instead for 
Did you mean: 

Error while debug

Rituraj
Associate III

WHile debugging for a custom board this is what I am facing Break at address "0x1fff4080" with no debug information available, or outside of program code.

 

This is the code that I am trying to run . What is the reason for this error and how it can be curated .  I have already verified the most common reason i.e. BOOT0 pin which has been pulled low.

 

I have attached the main.c file to this post

 

 

 

11 REPLIES 11
TDK
Guru

In your system file, uncomment this line:

/* #define USER_VECT_TAB_ADDRESS */

 so it looks like this:

 

#define USER_VECT_TAB_ADDRESS

 

 

Register values can be viewed when debugging in the SFRs window. Window -> Show View -> SFRs or by adding them as expressions. For example, when your code is paused, add "SCB->VTOR" as an expression.

TDK_0-1724763808364.png

 

If you feel a post has answered your question, please click "Accept as Solution".
Rituraj
Associate III

Thankyou It solves the issue I was having