File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1212
1313
1414class GdbCommand (PebbleCommand ):
15- """Connects a debugger to the current app."""
15+ """Connects a debugger to the current app. Only works in the emulator. """
1616 command = 'gdb'
1717 valid_connections = {'emulator' }
1818
@@ -73,6 +73,7 @@ def __call__(self, args):
7373 "break app_crashed" , # app crashes (as of FW 3.10) go through this symbol for our convenience.
7474 'echo \n Press ctrl-D or type \' quit\' to exit.\n ' ,
7575 'echo Try `pebble gdb --help` for a short cheat sheet.\n '
76+ 'echo Note that the emulator does not yet crash on memory access violations.\n '
7677 ]
7778
7879 gdb_args = ['arm-none-eabi-gdb' , fw_elf , '-q' ] + ['--ex={}' .format (x ) for x in gdb_commands ]
Original file line number Diff line number Diff line change 1- version_base = (4 , 1 , 1 )
2- version_suffix = None
1+ version_base = (4 , 2 , 0 )
2+ version_suffix = 'rc1'
33
44if version_suffix is None :
55 __version_info__ = version_base
You can’t perform that action at this time.
0 commit comments