gxGetConnectedEndDevices () : string[]

Returns a list of all connected programmers.

Returns:

string[] - array of programmer identifiers. They normally consist of the string "ed" followed by an optional number, such as "ed0", "ed1", etc.

Example:

string[] lst = gxGetConnectedEndDevices();
for (int i = 0; i < lst.size(); ++i)
{
string s = "Device \""+lst[i]+"\" ("+gxGetEndDeviceName(lst[i])+")";
print(s);
}

See also:

gxImportProject, gxStartAction

► latest version online