From 01db26f2048f2357bbb84d260d3ce583e2d477c5 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 30 May 2019 22:26:42 +0300 Subject: [PATCH] Add a link to PIO Unified Debugger options --- platformio/commands/debug/client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platformio/commands/debug/client.py b/platformio/commands/debug/client.py index 460682d9..4a950a7a 100644 --- a/platformio/commands/debug/client.py +++ b/platformio/commands/debug/client.py @@ -151,7 +151,7 @@ class GDBClient(BaseProcess): # pylint: disable=too-many-instance-attributes ] # yapf: disable banner = [ - "echo PlatformIO Unified Debugger > http://bit.ly/pio-debug\\n", + "echo PlatformIO Unified Debugger -> http://bit.ly/pio-debug\\n", "echo PlatformIO: Initializing remote target...\\n" ] footer = ["echo %s\\n" % self.INIT_COMPLETED_BANNER] @@ -228,6 +228,8 @@ class GDBClient(BaseProcess): # pylint: disable=too-many-instance-attributes self.console_log( "PlatformIO: Resume the execution to `debug_init_break = %s`" % self.debug_options['init_break']) + self.console_log("PlatformIO: More configuration options -> " + "http://bit.ly/pio-debug") self.transport.write(b"0-exec-continue\n" if helpers. is_mi_mode(self.args) else b"continue\n") self._target_is_run = True