2024-08-23 04:02 AM - edited 2024-08-23 04:06 AM
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
Solved! Go to Solution.
2024-08-27 06:03 AM
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.
2024-08-27 09:28 PM
Thankyou It solves the issue I was having