debug.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Copyright (c) 2018 Open Source Foundries Limited.
  2. # Copyright 2019 Foundries.io
  3. # Copyright (c) 2020 Nordic Semiconductor ASA
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. '''west "debug", "debugserver", and "attach" commands.'''
  7. from textwrap import dedent
  8. from west.commands import WestCommand
  9. from run_common import add_parser_common, do_run_common
  10. class Debug(WestCommand):
  11. def __init__(self):
  12. super(Debug, self).__init__(
  13. 'debug',
  14. # Keep this in sync with the string in west-commands.yml.
  15. 'flash and interactively debug a Zephyr application',
  16. dedent('''
  17. Connect to the board, flash the program, and start a
  18. debugging session. Use "west attach" instead to attach
  19. a debugger without reflashing.'''),
  20. accepts_unknown_args=True)
  21. self.runner_key = 'debug-runner' # in runners.yaml
  22. def do_add_parser(self, parser_adder):
  23. return add_parser_common(self, parser_adder)
  24. def do_run(self, my_args, runner_args):
  25. do_run_common(self, my_args, runner_args)
  26. class DebugServer(WestCommand):
  27. def __init__(self):
  28. super(DebugServer, self).__init__(
  29. 'debugserver',
  30. # Keep this in sync with the string in west-commands.yml.
  31. 'connect to board and launch a debug server',
  32. dedent('''
  33. Connect to the board and launch a debug server which accepts
  34. incoming connections for debugging the connected board.
  35. The debug server binds to a known port, and allows client software
  36. started elsewhere to connect to it and debug the running
  37. Zephyr image.'''),
  38. accepts_unknown_args=True)
  39. self.runner_key = 'debug-runner' # in runners.yaml
  40. def do_add_parser(self, parser_adder):
  41. return add_parser_common(self, parser_adder)
  42. def do_run(self, my_args, runner_args):
  43. do_run_common(self, my_args, runner_args)
  44. class Attach(WestCommand):
  45. def __init__(self):
  46. super(Attach, self).__init__(
  47. 'attach',
  48. # Keep this in sync with the string in west-commands.yml.
  49. 'interactively debug a board',
  50. "Like \"west debug\", but doesn't reflash the program.",
  51. accepts_unknown_args=True)
  52. self.runner_key = 'debug-runner' # in runners.yaml
  53. def do_add_parser(self, parser_adder):
  54. return add_parser_common(self, parser_adder)
  55. def do_run(self, my_args, runner_args):
  56. do_run_common(self, my_args, runner_args)