Implement autodetecting of default debug tool

This commit is contained in:
Ivan Kravets
2018-02-09 21:47:59 +02:00
parent cc08bb0fd0
commit 231bd8b294
7 changed files with 63 additions and 16 deletions

View File

@ -238,3 +238,15 @@ class CygwinEnvDetected(PlatformioException):
MESSAGE = ("PlatformIO does not work within Cygwin environment. "
"Use native Terminal instead.")
class DebugSupportError(PlatformioException):
MESSAGE = ("Currently, PlatformIO does not support debugging for `{0}`.\n"
"Please mail contact@pioplus.com or visit "
"< http://docs.platformio.org/page/plus/debugging.html >")
class DebugInvalidOptions(PlatformioException):
pass