Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
attdona committed Oct 7, 2017
1 parent 6c63a0d commit 42819e5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions burba/boards/cc3200-launchxl/dist/gdbinit
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,17 @@ load
# Initialize the SP and PC values from the application's
# vector table
#*****************************************************************************
set $sp = interrupt_vector[0]
set $pc = interrupt_vector[1]
#set $sp = cortex_vector_base[0]
#set $pc = cortex_vector_base[1]

set $sp = cortex_vector_base._estack
set $pc = cortex_vector_base.vectors[0]

#*****************************************************************************
# Set break point at main and run to main
#*****************************************************************************

break main
break reset_handler_default

continue

0 comments on commit 42819e5

Please sign in to comment.