csplus.launch_debug_session
|
This function launches a debug session.
[Specification format]
csplus.launch_debug_session(debug_config_name, block_download=False)
|
[Argument(s)]
|
|
debug_config_name
|
This argument is ignored in this version.
|
block_download
|
Whether to block the download of load module files
|
[Return value]
This version always returns 0.
[Detailed description]
- | If block_download is False, a new debug session will be launched using the specified launch config. |
- | If block_download is True, do not download load modules. |
[Example of use]
>>> import sys
>>> sys.path.append("C:\Program Files (x86)\Renesas Electronics\CS+\CC\Plugins\PythonConsole\integration_service")
>>> import csplus
>>> csplus.connect()
>>> session_id = csplus.launch_debug_session("")
>>>
|