Everything

debugger.DebugTool.GetType


This function displays information about the debug tool.

[Specification format]

debugger.DebugTool.GetType()

[Argument(s)]

None

[Return value]

Debug tool type

Type

Description

Simulator

Simulator

Minicube

MINICUBE

Minicube2

MINICUBE2 (Serial connect)

Minicube2Jtag

MINICUBE2 (JTAG connect)

Iecube

IECUBE

Iecube2

IECUBE2

E1Jtag

E1 (JTAG connect)

E1Serial

E1 (Serial connect)

E1Lpd

E1 (LPD connect)

E2

E2 emulator

E2Lite

E2 emulator Lite

E20Jtag

E20 (JTAG connect)

E20Serial

E20 (Serial connect)

E20Lpd

E20 (LPD connect)

IE850A

IE850A

ComPort

COM Port

[Detailed description]

-

This function displays information about the debug tool.

[Example of use]

>>>debugType = debugger.DebugTool.GetType()
Minicube2
>>>if debugType != DebugTool.Simulator:
... debugger.DebugTool.Change(DebugTool.Simulator)
...
>>>