This window allows you to export the selected configuration into one of supported formats.
You can choose one of the following formats for export:
COM2 ↔ COM4
:///<reference path="hhdvspkit.d.ts" />
var library = (${IVirtualSerialLibrary}) new ActiveXObject("hhdvspkit.VirtualPortLibrary.4");
{
var port1 = library.${createDevice}(2);
var port2 = library.${createDevice}(4);
port1.${createBridge}(port2, false);
}
COM6
:var library = new hhdvspkit.SerialPortLibrary();
{
var port = library.${createRemotePort}(6);
port.${remoteHost} = "servername";
port.${remotePort} = 1;
port.${login} = "UserName";
port.${domain} = "Domain";
port.${password} = "<password>";
}
COM5
:hhdvspkit::${ISerialPortLibraryPtr#ISerialPortLibrary} library;
library.CreateInstance(__uuidof(hhdvspkit::SerialPortLibrary));
{
auto port = library->${createSharedPort}(5);
port->${sharedPort} = 1;
port->${baudRate} = 115200;
port->${dataBits} = 8;
port->${parity} = hhdvspkit::${PortParity}::MarkParity;
port->${stopBits} = hhdvspkit::${PortStopBits}::OneAndHalf;
port->${flowControl} = hhdvspkit::${PortFlowControl}::Hardware;
}
COM7
:.\${rspcli.exe} -create alias --local-port 7 --alias-port 1 --baud-rate 57600 --flow-control software
IVirtualSerialLibrary createDevice createBridge ISerialPortLibraryPtr createRemotePort remoteHost remotePort login domain password createSharedPort sharedPort baudRate dataBits parity stopBits flowControl PortParity PortStopBits PortFlowControl rspcli.exe