This function checks the connection status of the debug tool.
[Specification format]
[Argument(s)]
None
[Return value]
If the debug tool is connected: True
If the debug tool is not connected: False
[Detailed description]
- | This function checks the connection status of the debug tool. |
[Example of use]
>>>if debugger.IsConnected() == True :
... print "OK"
...
True
OK
>>>
|