| Package | Description |
|---|---|
| com.embeddedunveiled.serial |
Encapsulates behavior and environment centered around serial port communication.
|
| com.embeddedunveiled.serial.bluetooth |
Encapsulates behavior and environment centered around serial port communication
involving use of Bluetooth radio and bluetooth stack.
|
| com.embeddedunveiled.serial.comdb |
Encapsulates behavior and environment centered around releasing the COM port number
assigned by operating system to a plug-and-play serial port.
|
| com.embeddedunveiled.serial.hid |
Encapsulates behavior and environment centered around communication with human
interface devices (HID class devices).
|
| com.embeddedunveiled.serial.internal |
Encapsulates behavior and environment required for internal use of this library
in a consolidated way.
|
| com.embeddedunveiled.serial.mapper |
Encapsulates behavior and environment centered around mapping alias to a serial port.
|
| com.embeddedunveiled.serial.usb |
Encapsulates behavior and environment centered around serial port communication
involving use of USB port and USB services.
|
| com.embeddedunveiled.serial.vendor |
Encapsulates behavior and environment centered around serial port communication
using device vendor supplied libraries and drivers for their hardware devices.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SerialComManager.clearPortIOBuffers(long handle,
boolean clearRxBuffer,
boolean clearTxBuffer)
Discards data sent to port but not transmitted, or data received but not read.
|
boolean |
SerialComManager.closeComPort(long handle)
Close the serial port.
|
boolean |
SerialComManager.configureComPortControl(long handle,
SerialComManager.FLOWCONTROL flowctrl,
char xon,
char xoff,
boolean ParFraError,
boolean overFlowErr)
This method configures the way data communication will be controlled between DTE and DCE.
|
boolean |
SerialComManager.configureComPortData(long handle,
SerialComManager.DATABITS dataBits,
SerialComManager.STOPBITS stopBits,
SerialComManager.PARITY parity,
SerialComManager.BAUDRATE baudRate,
int custBaud)
This method configures the rate at which communication will occur and the format of UART frame.
|
long |
SerialComManager.createBlockingIOContext()
Prepares a context that should be passed to readBytesBlocking, writeBytesBlocking,
readBytes, unblockBlockingIOOperation and destroyBlockingIOContext methods.
|
SerialComInByteStream |
SerialComManager.createInputByteStream(long handle,
SerialComManager.SMODE streamMode)
Prepares context and returns an input streams of bytes for receiving data bytes from the
serial port.
|
SerialComOutByteStream |
SerialComManager.createOutputByteStream(long handle,
SerialComManager.SMODE streamMode)
Prepares context and returns an output streams of bytes for transferring data bytes out of
serial port.
|
boolean |
SerialComManager.destroyBlockingIOContext(long context)
Destroys the context that was created by a call to createBlockingIOContext method for
blocking I/O operations uses.
|
String[] |
SerialComManager.findComPortFromUSBAttributes(int usbVidToMatch,
int usbPidToMatch,
String serialNumber)
Gives COM port (COMxx/ttySx) of a connected USB-UART device (CDC/ACM Interface) assigned by operating
system.
|
String |
SerialComManager.findDriverServingComPort(String comPortName)
Gives the name of the driver who is driving the given serial port.
|
String |
SerialComManager.findIRQnumberForComPort(long handle)
Gives the address and IRQ number associated with the given serial port.
|
boolean |
SerialComManager.fineTuneReadBehaviour(long handle,
int vmin,
int vtime,
int rit,
int rttm,
int rttc)
This method gives more fine tune control to application for tuning performance and behavior of read
operations to leverage OS specific facility for read operation.
|
int[] |
SerialComManager.getByteCountInPortIOBuffer(long handle)
Get number of bytes in input and output port buffers used by operating system for instance tty buffers
in Unix like systems.
|
String[] |
SerialComManager.getCurrentConfiguration(long handle)
This method gives currently applicable settings associated with particular serial port.
|
int |
SerialComManager.getEventsMask(ISerialComEventListener eventListener)
This method return currently applicable mask for events on serial port.
|
int[] |
SerialComManager.getInterruptCount(long handle)
This method gives the number of interrupts on serial line that have occurred.
|
SerialComIOCTLExecutor |
SerialComManager.getIOCTLExecutor(long handle)
Prepares context for excuting IOCTL operations on the given port.
|
String |
SerialComManager.getLibraryVersions()
Gives library versions of java and native library implementations.
|
int[] |
SerialComManager.getLinesStatus(long handle)
Gives status of serial port's control lines as supported by underlying operating system.
|
String |
SerialComManager.getPortName(long handle)
This method gives the port name with which given handle is associated.
|
SerialComBluetooth |
SerialComManager.getSerialComBluetoothInstance(int btStack,
String directoryPath,
String loadedLibName)
Initialize and return an instance of SerialComBluetooth for the given bluetooth stack.
|
SerialComDBRelease |
SerialComManager.getSerialComDBReleaseInstance(String directoryPath,
String loadedLibName)
Allocate, initialize and return an instance of SerialComDBRelease class on whom APIs can
be called to release COM ports in use.
|
SerialComHID |
SerialComManager.getSerialComHIDInstance(int type,
String directoryPath,
String loadedLibName)
Allocate, initialize and return an instance of requested mode for communication with
HID device.
|
SerialComPortMapper |
SerialComManager.getSerialComPortMapperInstance(String directoryPath,
String loadedLibName)
Allocate, initialize and return an instance of SerialComPortMapper class on whom APIs can
be called to map or unmap a serial port alias.
|
SerialComUSB |
SerialComManager.getSerialComUSBInstance()
Get an instance of SerialComUSB class for USB related operations.
|
boolean |
SerialComIOCTLExecutor.ioctlExecuteOperation(long handle,
long operationCode)
Executes the requested operation on the specified handle.
|
long |
SerialComIOCTLExecutor.ioctlGetValue(long handle,
long operationCode)
Executes the requested operation on the specified handle.
|
boolean |
SerialComIOCTLExecutor.ioctlSetValue(long handle,
long operationCode,
long value)
Executes the requested operation on the specified handle passing the given value to operation.
|
boolean |
SerialComIOCTLExecutor.ioctlSetValueCharArray(long handle,
long operationCode,
byte[] values)
Executes the requested operation on the specified handle passing the given value to operation.
|
boolean |
SerialComIOCTLExecutor.ioctlSetValueIntArray(long handle,
long operationCode,
int[] values)
Executes the requested operation on the specified handle passing the given value to operation.
|
boolean |
SerialComManager.isUSBDevConnected(int vendorID,
int productID,
String serialNumber)
Checks whether a particular USB device identified by vendor id, product id and serial number is
connected to the system or not.
|
String[] |
SerialComManager.listAvailableComPorts()
Returns all available UART style ports available on this system, otherwise an empty array of strings,
if no serial style port is found in the system.
|
SerialComBluetoothSPPDevNode[] |
SerialComManager.listBTSPPDevNodesWithInfo()
Gives device node, remote bluetooth device address and channel number in use for device nodes
which are using the RFCOMM service for emulating serial port over bluetooth.
|
SerialComUSBdevice[] |
SerialComManager.listUSBdevicesWithInfo(int vendorFilter)
Returns an array of SerialComUSBdevice class objects containing information about all the USB devices
found by this library.
|
long |
SerialComManager.openComPort(String portName,
boolean enableRead,
boolean enableWrite,
boolean exclusiveOwnerShip)
Opens a serial port for communication.
|
boolean |
SerialComManager.pauseListeningEvents(ISerialComEventListener eventListener)
This pauses delivering events to application.
|
byte[] |
SerialComManager.readBytes(long handle)
If user does not specify any count, library try to read DEFAULT_READBYTECOUNT (1024 bytes)
bytes as default value.
|
int |
SerialComManager.readBytes(long handle,
byte[] buffer,
int offset,
int length,
long context)
Reads data bytes from serial port into given buffer.
|
byte[] |
SerialComManager.readBytes(long handle,
int byteCount)
Read specified number of bytes from given serial port.
|
byte[] |
SerialComManager.readBytesBlocking(long handle,
int byteCount,
long context)
Read specified number of bytes from given serial port and stay blocked till bytes arrive
at serial port.
|
int |
SerialComManager.readBytesDirect(long handle,
ByteBuffer buffer,
int offset,
int length)
Reads the bytes from the serial port into the given direct byte buffer using facilities of
the underlying JVM and operating system.
|
byte[] |
SerialComManager.readSingleByte(long handle)
This is a utility method to read a single byte from serial port.
|
String |
SerialComManager.readString(long handle)
This method reads data from serial port and converts it into string.
|
String |
SerialComManager.readString(long handle,
int byteCount)
This method reads data from serial port and converts it into string.
|
boolean |
SerialComManager.receiveFile(long handle,
File fileToReceive,
SerialComManager.FTPPROTO ftpProto,
SerialComManager.FTPVAR ftpVariant,
boolean textMode,
ISerialComXmodemProgress progressListener,
SerialComXModemAbort transferState)
Receives file using specified file transfer protocol.
|
boolean |
SerialComXModemCRC.receiveFileX()
Represents actions to execute in state machine to implement
xmodem-crc protocol for receiving files.
|
boolean |
SerialComXModem.receiveFileX()
Represents actions to execute in state machine to implement xmodem protocol for receiving files.
|
boolean |
SerialComXModem1K.receiveFileX()
Represents actions to execute in state machine to implement xmodem
protocol for receiving files.
|
boolean |
SerialComManager.registerDataListener(long handle,
ISerialComDataListener dataListener)
This method associate a data looper with the given listener.
|
boolean |
SerialComManager.registerLineEventListener(long handle,
ISerialComEventListener eventListener)
This method associate a event looper with the given listener.
|
int |
SerialComManager.registerUSBHotPlugEventListener(ISerialComUSBHotPlugListener hotPlugListener,
int filterVID,
int filterPID,
String serialNumber)
This registers a listener who will be invoked whenever a USB device has been plugged or
un-plugged in system.
|
boolean |
SerialComManager.resumeListeningEvents(ISerialComEventListener eventListener)
Resume delivering events kept in queue to application.
|
boolean |
SerialComManager.sendBreak(long handle,
int duration)
Assert a break condition on the specified port for the duration expressed in milliseconds.
|
boolean |
SerialComManager.sendFile(long handle,
File fileToSend,
SerialComManager.FTPPROTO ftpProto,
SerialComManager.FTPVAR ftpVariant,
boolean textMode,
ISerialComXmodemProgress progressListener,
SerialComXModemAbort transferState)
Send given file using specified file transfer protocol.
|
boolean |
SerialComXModemCRC.sendFileX()
Represents actions to execute in state machine to implement xmodem/crc protocol
for sending files.
|
boolean |
SerialComXModem.sendFileX()
Represents actions to execute in state machine to implement xmodem protocol for sending files.
|
boolean |
SerialComXModem1K.sendFileX()
Represents actions to execute in state machine to implement xmodem-1k
protocol for sending files.
|
boolean |
SerialComManager.setDTR(long handle,
boolean enabled)
This method assert/de-assert DTR line of serial port.
|
boolean |
SerialComManager.setEventsMask(ISerialComEventListener eventListener,
int newMask)
Defines for which line events registered event listener will be called.
|
boolean |
SerialComManager.setRTS(long handle,
boolean enabled)
This method assert/de-assert RTS line of serial port.
|
boolean |
SerialComManager.unblockBlockingIOOperation(long context)
Unblocks any blocked operation if it exist.
|
boolean |
SerialComManager.unregisterDataListener(long handle,
ISerialComDataListener dataListener)
This method destroys complete java and native looper subsystem associated with this particular data listener.
|
boolean |
SerialComManager.unregisterLineEventListener(long handle,
ISerialComEventListener eventListener)
This method destroys complete java and native looper subsystem associated with this particular event listener.
|
boolean |
SerialComManager.unregisterUSBHotPlugEventListener(int opaqueHandle)
This unregisters listener and terminate native thread used for monitoring specified USB device
insertion or removal.
|
boolean |
SerialComManager.writeBytes(long handle,
byte[] buffer)
Utility method to call writeBytes without delay between successive bytes.
|
boolean |
SerialComManager.writeBytes(long handle,
byte[] buffer,
int delay)
This method writes bytes from the specified byte type buffer.
|
boolean |
SerialComManager.writeBytesBlocking(long handle,
byte[] buffer,
long context)
Write bytes from given buffer to the given handle in blocking mode.
|
int |
SerialComManager.writeBytesDirect(long handle,
ByteBuffer buffer,
int offset,
int length)
Writes the bytes from the given direct byte buffer using facilities of the underlying JVM
and operating system.
|
boolean |
SerialComManager.writeIntArray(long handle,
int[] buffer,
int delay,
SerialComManager.ENDIAN endianness,
SerialComManager.NUMOFBYTES numOfBytes)
This method send an array of integers on the specified port.
|
boolean |
SerialComManager.writeSingleByte(long handle,
byte dataByte)
This method writes a single byte to the specified port.
|
boolean |
SerialComManager.writeSingleInt(long handle,
int data,
int delay,
SerialComManager.ENDIAN endianness,
SerialComManager.NUMOFBYTES numOfBytes)
Different CPU and OS will have different endianness.
|
boolean |
SerialComManager.writeString(long handle,
String data,
Charset charset,
int delay)
This method writes a string to the specified port.
|
boolean |
SerialComManager.writeString(long handle,
String data,
int delay)
This method writes a string to the specified port.
|
| Constructor and Description |
|---|
SerialComInByteStream(SerialComManager scm,
SerialComPortHandleInfo portHandleInfo,
long handle,
SerialComManager.SMODE streamMode)
Construct and allocates a new SerialComInByteStream object with given details.
|
SerialComManager()
Allocates a new SerialComManager object.
|
SerialComManager(String directoryPath,
String loadedLibName)
Allocates a new SerialComManager object.
|
SerialComOutByteStream(SerialComManager scm,
SerialComPortHandleInfo portHandleInfo,
long handle,
SerialComManager.SMODE streamMode)
Allocates a new SerialComOutByteStream object.
|
| Modifier and Type | Method and Description |
|---|---|
SerialComBluetoothAdapter[] |
SerialComBluetooth.listBluetoothAdaptorsWithInfo()
Returns an array containing information about all the Bluetooth adaptors present in the system
found by this library.
|
| Modifier and Type | Method and Description |
|---|---|
String[] |
SerialComDBRelease.getComPortNumbersInUse()
Provides an array containing all COM ports which are marked as "(in use)" by Windows operating
system.
|
int |
SerialComDBRelease.getCurrentComDBDatabaseSize()
Provides the current size of COM port database.
|
boolean |
SerialComDBRelease.releaseAllComPorts(String[] excludeList)
Free all the COM port number in database of Windows of operating system so that other
serial devices can use that port number.
|
boolean |
SerialComDBRelease.releaseComPort(String comPortName)
Free the COM port number in database of Windows of operating system so that other
serial devices can use that port number.
|
boolean |
SerialComDBRelease.resizeComDBDatabase(int newSize)
It resizes database to arbitrate give number of serial ports.
|
boolean |
SerialComDBRelease.startSerialComDBReleaseSerive()
Starts the service on demand.
|
boolean |
SerialComDBRelease.stopSerialComDBReleaseSerive()
Stops the service on demand.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SerialComRawHID.closeHidDeviceR(long handle)
Closes a HID device.
|
long |
SerialComRawHID.createBlockingHIDIOContextR()
Prepares a context that should be passed to readInputReportR, unblockBlockingHIDIOOperationR
and destroyBlockingIOContextR methods.
|
boolean |
SerialComRawHID.destroyBlockingIOContextR(long context)
Destroys the context that was created by a call to createBlockingHIDIOContextR method for
blocking I/O operations uses.
|
String |
SerialComRawHID.findDriverServingHIDDeviceR(String hidDeviceNode)
Gives the name of the driver who is driving the given HID device.
|
boolean |
SerialComRawHID.flushInputReportQueueR(long handle)
Deletes all the input reports from input report buffer maintained by operating system.
|
String |
SerialComRawHID.formatReportToHexR(byte[] report,
String separator)
Converts report read from HID device to hexadecimal string.
|
int |
SerialComRawHID.getFeatureReportR(long handle,
byte reportId,
byte[] report)
Read a feature report to the HID device.
|
SerialComHIDTransport |
SerialComRawHID.getHIDTransportInstance(int transport)
Returns an instance of class SerialComUSBHID for HID over USB operations.
|
String |
SerialComRawHID.getIndexedStringR(long handle,
int index)
Gives the string at the given index of string descriptor from HID device.
|
String |
SerialComRawHID.getManufacturerStringR(long handle)
Gives the manufacturer of the HID device.
|
byte[] |
SerialComRawHID.getPhysicalDescriptorR(long handle)
Gives the physical descriptor for the given HID device.
|
String |
SerialComRawHID.getProductStringR(long handle)
Gives the product name of the HID device.
|
byte[] |
SerialComRawHID.getReportDescriptorR(long handle)
Gives the report descriptor as supplied by device itself.
|
String |
SerialComRawHID.getSerialNumberStringR(long handle)
Gives the serial number of the HID device.
|
SerialComHIDdevice[] |
SerialComRawHID.listHIDdevicesWithInfoR()
Find all the device instances claiming to be HID device.
|
long |
SerialComRawHID.openHidDeviceR(String pathName,
boolean shared)
Opens a HID device for communication using its path name.
|
int |
SerialComRawHID.readInputReportR(long handle,
byte[] reportBuffer,
long context)
Reads input report from the given HID device.
|
int |
SerialComRawHID.readInputReportWithTimeoutR(long handle,
byte[] reportBuffer,
int timeoutValue)
Try to read input report from HID device within the given timeout limit.
|
boolean |
SerialComRawHID.readPlatformSpecificInputReportR(long handle,
byte reportId,
byte[] reportBuffer)
Read input report from given HID device and handles inconsistencies in reports internally using
facilities provided by operating system.
|
boolean |
SerialComRawHID.registerInputReportListener(long handle,
IHIDInputReportListener listener,
byte[] inputReportBuffer)
Registers a listener which will be invoked whenever an input report is available to read.
|
int |
SerialComRawHID.sendFeatureReportR(long handle,
byte reportId,
byte[] report)
Send a feature report to the HID device.
|
boolean |
SerialComRawHID.unblockBlockingHIDIOOperationR(long context)
Unblocks any blocked operation if it exist.
|
boolean |
SerialComRawHID.unregisterInputReportListener(IHIDInputReportListener listener)
This unregisters listener and terminates worker thread which was delivering input reports.
|
int |
SerialComRawHID.writeOutputReportR(long handle,
byte reportId,
byte[] report)
Sends the given output report to the HID device.
|
boolean |
SerialComRawHID.writePlatformSpecificOutputReportR(long handle,
byte reportId,
byte[] reportBuffer)
Sends an output report to given HID device and handles inconsistencies in reports internally using
facilities provided by operating system.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SerialComCompletionDispatcher.destroyDataLooper(long handle,
SerialComPortHandleInfo handleInfo,
ISerialComDataListener dataListener)
Check if we have handler corresponding to this listener and take actions accordingly.
|
boolean |
SerialComCompletionDispatcher.destroyEventLooper(long handle,
SerialComPortHandleInfo handleInfo,
ISerialComEventListener eventListener)
Check if we have handler corresponding to this listener and take actions accordingly.
|
boolean |
SerialComCompletionDispatcher.pauseListeningEvents(ISerialComEventListener listener)
Check if we have handler corresponding to this listener and take actions accordingly.
|
boolean |
SerialComCompletionDispatcher.resumeListeningEvents(ISerialComEventListener listener)
Check if we have handler corresponding to this listener and take actions accordingly.
|
boolean |
SerialComCompletionDispatcher.setUpDataLooper(long handle,
SerialComPortHandleInfo mHandleInfo,
ISerialComDataListener dataListener)
This method creates data looper thread and initialize subsystem for data event passing.
|
boolean |
SerialComCompletionDispatcher.setUpEventLooper(long handle,
SerialComPortHandleInfo mHandleInfo,
ISerialComEventListener eventListener)
This method creates event looper thread and initialize subsystem for line event passing.
|
void |
SerialComLooper.startEventLooper(long handle,
ISerialComEventListener eventListener,
String portName)
Get initial status of control lines and start Java worker thread.
|
void |
SerialComLooper.stopEventLooper()
Set the flag to indicate that the thread is supposed to run to completion and exit.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SerialComPortMapper.mapAliasToExistingComPort(String alias,
String comPort)
Creates a alias to the given existing serial port.
|
boolean |
SerialComPortMapper.startMappingService()
Start the service which may run with elevated privileges in system.
|
boolean |
SerialComPortMapper.stopMappingService()
Stops the serial port mapping service when no more required.
|
boolean |
SerialComPortMapper.unmapAliasToExistingComPort(String alias)
Removes a previously created alias to the given existing serial port.
|
| Modifier and Type | Method and Description |
|---|---|
SerialComUSBPowerInfo |
SerialComUSB.getCDCUSBDevPowerInfo(String comPort)
Read all the power management related information about a particular USB device.
|
String[] |
SerialComUSB.getFirmwareRevisionNumber(int usbvid,
int usbpid,
String serialNumber)
Gets the USB device firmware revision number as reported by USB device descriptor in its
device descriptor using bcdDevice field.
|
int |
SerialComUSB.getLatencyTimer(String comPort)
Gets the current latency timer value for FTDI devices.
|
SerialComHIDdevice[] |
SerialComUSBHID.listUSBHIDdevicesWithInfo(int vendorFilter)
Returns an array of SerialComHIDdevice objects containing information about USB-HID devices
as found by this library.
|
long |
SerialComUSBHID.openHidDeviceByUSBAttributes(int usbVidToMatch,
int usbPidToMatch,
String serialNumber,
int locationID,
int usbBusNumber,
int usbDevNumber)
Opens a HID device for communication using the given USB attributes.
|
boolean |
SerialComUSB.rescanUSBDevicesHW()
Causes re-scan for USB devices.
|
boolean |
SerialComUSB.setLatencyTimer(String comPort,
byte timerValue)
Sets the latency timer value for FTDI devices.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SerialComSLabsUSBXpress.cancelIO(long handle)
Executes SI_CancelIo function of USBXpress library.
|
long[] |
SerialComSLabsUSBXpress.checkRXQueue(long handle)
Executes SI_CheckRXQueue function of USBXpress library.
|
boolean |
SerialComFTDID2XX.clearDTR(long handle)
Executes FT_ClrDtr function of D2XX library.
|
boolean |
SerialComMCHPSimpleIO.clearPin(int pinNumber)
Executes ClearPin function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComFTDID2XX.clearRTS(long handle)
Executes FT_ClrRts function of D2XX library.
|
boolean |
SerialComFTDID2XX.close(long handle)
Executes FT_Close function of D2XX library.
|
boolean |
SerialComSLabsUSBXpress.close(long handle)
Executes SI_Close function of USBXpress library.
|
boolean |
SerialComSLabsCP210xManufacturing.close(long handle)
Executes CP210x_Close function of of CP210xManufacturing library.
|
boolean |
SerialComMCHPSimpleIO.configureIO(short ioMap)
Executes ConfigureIO function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.configureIoDefaultOutput(short ioMap,
short ucDefValue)
Executes ConfigureIoDefaultOutput function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.configureMCP2200(byte ioMap,
long baudRateParam,
int rxLEDMode,
int txLEDMode,
boolean flow,
boolean uload,
boolean sspnd,
boolean invert)
Executes ConfigureMCP2200 function of 'SimpleIO-xxxx' library.
|
int |
SerialComFTDID2XX.createDeviceInfoList()
Executes FT_CreateDeviceInfoList function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.createHexFile(long handle,
String fileName)
Executes CP210x_CreateHexFile function of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.cyclePort(long handle)
Executes FT_CyclePort function of D2XX library.
|
int |
SerialComSLabsUSBXpress.deviceIOControl(long handle,
int ctrlCode,
byte[] inputBuf,
int numBytesToRead,
byte[] outputBuf,
int numOfBytesToWrite)
Executes SI_DeviceIOControl function of USBXpress library.
|
boolean |
SerialComFTDID2XX.eeProgram(long handle,
String manufacturer,
String manufacturerID,
String description,
String serialNumber,
int[] values)
Executes FT_EE_Program function of D2XX library.
|
boolean |
SerialComFTDID2XX.eeProgramEx(long handle,
String manufacturer,
String manufacturerID,
String description,
String serialNumber,
int[] values)
Executes FT_EE_ProgramEx function of D2XX library.
|
boolean |
SerialComFTDID2XX.eepromProgram(long handle,
FTeepromData eepromData,
String manufacturer,
String manufacturerID,
String description,
String serialNumber)
Executes FT_EEPROM_Program function of D2XX library.
|
FTeepromData |
SerialComFTDID2XX.eepromRead(long handle,
int deviceType,
char[] manufacturer,
char[] manufacturerID,
char[] description,
char[] serialNumber)
Executes FT_EEPROM_Read function of D2XX library.
|
FTprogramData |
SerialComFTDID2XX.eeRead(long handle,
int version)
Executes FT_EE_Read function of D2XX library.
|
FTprogramData |
SerialComFTDID2XX.eeReadEx(long handle,
int version,
char[] manufacturer,
char[] manufacturerID,
char[] description,
char[] serialNumber)
Executes FT_EE_ReadEx function of D2XX library.
|
int |
SerialComFTDID2XX.eeUAread(long handle,
byte[] buffer,
int length)
Executes FT_EE_UARead function of D2XX library.
|
int |
SerialComFTDID2XX.eeUAsize(long handle)
Executes FT_EE_UASize function of D2XX library.
|
boolean |
SerialComFTDID2XX.eeUAwrite(long handle,
byte[] buffer,
int length)
Executes FT_EE_UAWrite function of D2XX library.
|
boolean |
SerialComFTDID2XX.eraseEE(long handle)
Executes FT_EraseEE function of D2XX library.
|
boolean |
SerialComSLabsUSBXpress.flushBuffer(long handle,
byte flushTransmit,
byte flushReceive)
Executes SI_FlushBuffers function of USBXpress library.
|
boolean |
SerialComMCHPSimpleIO.fnInvertUartPol(int onOff)
Executes fnInvertUartPol function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.fnRxLED(int mode)
Executes fnRxLED function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.fnSetBaudRate(long baudRateParam)
Executes fnSetBaudRate function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.fnSuspend(int onOff)
Executes fnSuspend function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.fnTxLED(int mode)
Executes fnTxLED function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.fnULoad(int onOff)
Executes fnULoad function of 'SimpleIO-xxxx' library.
|
CP210XbaudConfigs[] |
SerialComSLabsCP210xManufacturing.getBaudRateConfig(long handle)
Executes CP210x_GetBaudRateConfig function of CP210xManufacturing library.
|
int |
SerialComFTDID2XX.getBitMode(long handle)
Executes FT_GetBitMode function of D2XX library.
|
long |
SerialComFTDID2XX.getComPortNumber(long handle)
Executes FT_GetComPortNumber function of D2XX library.
|
String |
SerialComMCHPSimpleIO.getDeviceInfo(int uiDeviceNumber)
Executes GetDeviceInfo function of 'SimpleIO-xxxx' library.
|
FTOpenedDeviceInfo |
SerialComFTDID2XX.getDeviceInfo(long handle)
Executes FT_GetDeviceInfo function of D2XX library.
|
FTdevicelistInfoNode |
SerialComFTDID2XX.getDeviceInfoDetail(int index)
Executes FT_GetDeviceInfoDetail function of D2XX library.
|
FTdevicelistInfoNode[] |
SerialComFTDID2XX.getDeviceInfoList(int numOfDevices)
Executes FT_GetDeviceInfoList function of D2XX library.
|
String |
SerialComSLabsCP210xRuntime.getDeviceInterfaceString(long handle)
Executes CP210xRT_GetDeviceInterfaceString function of CP210XRuntime library.
|
String |
SerialComSLabsCP210xManufacturing.getDeviceInterfaceString(long handle,
byte bInterfaceNumber)
Executes CP210x_GetDeviceInterfaceString function of CP210xManufacturing library.
|
String |
SerialComSLabsCP210xManufacturing.getDeviceManufacturerString(long handle)
Executes CP210x_GetDeviceManufacturerString function of CP210xManufacturing library.
|
byte[] |
SerialComSLabsCP210xManufacturing.getDeviceMode(long handle)
Executes CP210x_GetDeviceMode function of CP210xManufacturing library.
|
int |
SerialComSLabsCP210xManufacturing.getDevicePid(long handle)
Executes CP210x_GetDevicePid function of CP210xManufacturing library.
|
String |
SerialComSLabsCP210xRuntime.getDeviceProductString(long handle)
Executes CP210xRT_GetDeviceProductString function of CP210XRuntime library.
|
String |
SerialComSLabsCP210xManufacturing.getDeviceProductString(long handle)
Executes CP210x_GetDeviceProductString function of CP210xManufacturing library.
|
String |
SerialComSLabsCP210xRuntime.getDeviceSerialNumber(long handle)
Executes CP210xRT_GetDeviceSerialNumber function of CP210XRuntime library.
|
String |
SerialComSLabsCP210xManufacturing.getDeviceSerialNumber(long handle)
Executes CP210x_GetDeviceSerialNumber function of CP210xManufacturing library.
|
int |
SerialComSLabsCP210xManufacturing.getDeviceVersion(long handle)
Executes CP210x_GetDeviceVersion function of CP210xManufacturing library.
|
int |
SerialComSLabsCP210xManufacturing.getDeviceVid(long handle)
Executes CP210x_GetDeviceVid function of CP210xManufacturing library.
|
long |
SerialComSLabsUSBXpress.getDllVersion(long handle)
Executes SI_GetDLLVersion function of USBXpress library.
|
long |
SerialComFTDID2XX.getDriverVersion(long handle)
Executes FT_GetDriverVersion function of D2XX library.
|
long |
SerialComSLabsUSBXpress.getDriverVersion(long handle)
Executes SI_GetDriverVersion function of USBXpress library.
|
int[] |
SerialComSLabsCP210xManufacturing.getDualPortConfig(long handle)
Executes CP210xGetDualPortConfig function of CP210xManufacturing library.
|
short |
SerialComSLabsCP210xManufacturing.getFlushBufferConfig(long handle)
Executes CP210x_GetFlushBufferConfig function of CP210xManufacturing library.
|
int |
SerialComFTDID2XX.getLatencyTimer(long handle)
Executes FT_GetLatencyTimer function of D2XX library.
|
long |
SerialComFTDID2XX.getLibraryVersion()
Executes FT_GetLibraryVersion function of D2XX library.
|
byte |
SerialComSLabsCP210xManufacturing.getLockValue(long handle)
Executes CP210x_GetLockValue function of CP210xManufacturing library.
|
byte |
SerialComSLabsCP210xManufacturing.getMaxPower(long handle)
Executes CP210x_GetMaxPower function of CP210xManufacturing library.
|
int |
SerialComFTDID2XX.getModemStatus(long handle)
Executes FT_GetModemStatus function of D2XX library.
|
byte |
SerialComSLabsUSBXpress.getModemStatus(long handle)
Executes SI_GetModemStatus function of USBXpress library.
|
int |
SerialComSLabsUSBXpress.getNumDevices()
Executes SI_GetNumDevices function of USBXpress library.
|
int |
SerialComSLabsCP210xManufacturing.getNumDevices()
Executes CP210x_GetNumDevices function of CP210xManufacturing library.
|
int |
SerialComMCHPSimpleIO.getNumOfDevices()
Executes GetNoOfDevices function of 'SimpleIO-xxxx' library.
|
String |
SerialComSLabsCP210xRuntime.getPartNumber(long handle)
Executes CP210xRT_GetPartNumber function of CP210XRuntime library.
|
String |
SerialComSLabsUSBXpress.getPartNumber(long handle)
Executes SI_GetPartNumber function of USBXpress library.
|
String |
SerialComSLabsCP210xManufacturing.getPartNumber(long handle)
Executes CP210x_GetPartNumber function of CP210xManufacturing library.
|
int[] |
SerialComSLabsCP210xManufacturing.getPortConfig(long handle)
Executes CP210x_GetPortConfig function of CP210xManufacturing library.
|
String |
SerialComSLabsUSBXpress.getProductString(int index,
int flag)
Executes SI_GetProductString function of USBXpress library.
|
String |
SerialComSLabsCP210xManufacturing.getProductString(int index,
int flag)
Executes CP210x_GetProductString function of CP210xManufacturing library.
|
int[] |
SerialComSLabsCP210xManufacturing.getQuadPortConfig(long handle)
Executes CP210x_GetQuadPortConfig function of CP210xManufacturing library.
|
int |
SerialComFTDID2XX.getQueueStatus(long handle)
Executes FT_GetQueueStatus function of D2XX library.
|
int |
SerialComMCHPSimpleIO.getSelectedDevice()
Executes GetSelectedDevice function of 'SimpleIO-xxxx' library.
|
String |
SerialComMCHPSimpleIO.getSelectedDeviceInfo()
Executes GetSelectedDeviceInfo function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComSLabsCP210xManufacturing.getSelfPower(long handle)
Executes CP210x_GetSelfPower function of CP210xManufacturing library.
|
long[] |
SerialComFTDID2XX.getStatus(long handle)
Executes FT_GetStatus function of D2XX library.
|
long[] |
SerialComSLabsUSBXpress.getTimeouts(long handle,
long readTimeOut,
long writeTimeOut)
Executes SI_GetTimeouts function of USBXpress library.
|
int[] |
SerialComFTDID2XX.getVidPid()
Executes FT_GetVIDPID function of D2XX library.
|
boolean |
SerialComMCHPSimpleIO.hardwareFlowControl(int onOff)
Executes fnHardwareFlowControl function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.initMCP2200(int vendorID,
int productID)
Executes InitMCP2200 function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComMCHPSimpleIO.isConnected()
Executes IsConnected function of 'SimpleIO-xxxx' library.
|
FTdeviceInfo[] |
SerialComFTDID2XX.listDevices(int pvArg1,
int dwFlags)
Executes FT_ListDevices function of D2XX library.
|
long |
SerialComFTDID2XX.open(int index)
Executes FT_Open function of D2XX library.
|
long |
SerialComSLabsUSBXpress.open(int index)
Executes SI_Open function of USBXpress library.
|
long |
SerialComSLabsCP210xManufacturing.open(int index)
Executes CP210x_Open function of of CP210xManufacturing library.
|
long |
SerialComFTDID2XX.openEx(String serialOrDescription,
long locationId,
int dwFlags)
Executes FT_OpenEx function of D2XX library.
|
boolean |
SerialComFTDID2XX.purge(long handle,
boolean purgeTxBuffer,
boolean purgeRxBuffer)
Executes FT_Purge function of D2XX library.
|
int |
SerialComFTDID2XX.read(long handle,
byte[] buffer,
int numOfBytesToRead)
Executes FT_Read function of D2XX library.
|
int |
SerialComSLabsUSBXpress.read(long handle,
byte[] buffer,
int numOfBytesToRead)
Executes SI_Read function of USBXpress library.
|
int |
SerialComFTDID2XX.readEE(long handle,
int offset)
Executes FT_ReadEE function of D2XX library.
|
int |
SerialComMCHPSimpleIO.readEEPROM(int uiEEPAddress)
Executes ReadEEPROM function of 'SimpleIO-xxxx' library.
|
long |
SerialComSLabsCP210xRuntime.readLatch(long handle)
Executes CP210xRT_ReadLatch function of CP210XRuntime library.
|
long |
SerialComSLabsUSBXpress.readLatch(long handle)
Executes SI_ReadLatch function of USBXpress library.
|
int |
SerialComMCHPSimpleIO.readPin(int pinNumber)
Executes ReadPin function of 'SimpleIO-xxxx' library.
|
int |
SerialComMCHPSimpleIO.readPinValue(int pinNumber)
Executes ReadPinValue function of 'SimpleIO-xxxx' library.
|
int |
SerialComMCHPSimpleIO.readPort()
Executes ReadPort function of 'SimpleIO-xxxx' library.
|
int |
SerialComMCHPSimpleIO.readPortValue()
Executes ReadPortValue function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComFTDID2XX.reload(int vid,
int pid)
Executes FT_Reload function of D2XX library.
|
boolean |
SerialComFTDID2XX.rescan()
Executes FT_Rescan function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.reset(long handle)
Executes CP210x_Reset function of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.resetDevice(long handle)
Executes FT_ResetDevice function of D2XX library.
|
boolean |
SerialComFTDID2XX.resetPort(long handle)
Executes FT_ResetPort function of D2XX library.
|
boolean |
SerialComFTDID2XX.restartInTask(long handle)
Executes FT_StopInTask function of D2XX library.
|
boolean |
SerialComMCHPSimpleIO.selectDevice(int uiDeviceNumber)
Executes SelectDevice function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComSLabsUSBXpress.setBaudDivisor(long handle,
int divisor)
Executes SI_SetBaudDivisor function of USBXpress library.
|
boolean |
SerialComFTDID2XX.setBaudRate(long handle,
int baudRate)
Executes FT_SetBaudRate function of D2XX library.
|
boolean |
SerialComSLabsUSBXpress.setBaudRate(long handle,
int baudrate)
Executes SI_SetBaudRate function of USBXpress library.
|
boolean |
SerialComSLabsCP210xManufacturing.setBaudRateConfig(long handle,
int baudGen,
int timer0Reload,
int prescalar,
int baudrate)
Executes CP210x_SetBaudRateConfig function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setBitMode(long handle,
int mask,
int mode)
Executes FT_SetBitMode function of D2XX library.
|
boolean |
SerialComSLabsUSBXpress.setBreak(long handle,
int breakValue)
Executes SI_SetBreak function of USBXpress library.
|
boolean |
SerialComFTDID2XX.setBreakOff(long handle)
Executes FT_SetBreakOff function of D2XX library.
|
boolean |
SerialComFTDID2XX.setBreakOn(long handle)
Executes FT_SetBreakOn function of D2XX library.
|
boolean |
SerialComFTDID2XX.setChars(long handle,
char eventChar,
char eventEnable,
char errorChar,
char errorEnable)
Executes FT_SetChars function of D2XX library.
|
boolean |
SerialComFTDID2XX.setDataCharacteristics(long handle,
SerialComFTDID2XX.DATABITS dataBits,
SerialComFTDID2XX.STOPBITS stopBits,
SerialComFTDID2XX.PARITY parity)
Executes FT_SetDataCharacteristics function of D2XX library.
|
boolean |
SerialComFTDID2XX.setDeadmanTimeout(long handle,
int count)
Executes FT_SetDeadmanTimeout function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.setDeviceMode(long handle,
byte bDeviceModeECI,
byte bDeviceModeSCI)
Executes CP210x_SetDeviceMode function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setDeviceVersion(long handle,
int version)
Executes CP210x_SetDeviceVersion function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setDivisor(long handle,
int divisor)
Executes FT_SetDivisor function of D2XX library.
|
boolean |
SerialComFTDID2XX.setDTR(long handle)
Executes FT_SetDtr function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.setDualPortConfig(long handle,
int mode,
int resetLatch,
int suspendLatch,
int enhancedFxnECI,
int enhancedFxnSCI,
int enhancedFxnDevice)
Executes CP210x_SetDualPortConfig function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setEventNotificationAndWait(long handle,
int eventMask)
Executes FT_SetEventNotification function of D2XX library and blocks until one or more
events specified in eventMask occurs.
|
boolean |
SerialComSLabsUSBXpress.setFlowControl(long handle,
int ctsMaskCode,
int rtsMaskCode,
int dtrMaskCode,
int dsrMaskCode,
int dcdMaskCode,
int flowXonXoff)
Executes SI_SetFlowControl function of USBXpress library.
|
boolean |
SerialComFTDID2XX.setFlowControl(long handle,
SerialComFTDID2XX.FLOWCTRL flctrl,
char xon,
char xoff)
Executes FT_SetFlowControl function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.setFlushBufferConfig(long handle,
int flag)
Executes CP210x_SetFlushBufferConfig function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setInterfaceString(long handle,
byte bInterfaceNumber,
String interfaceString)
Executes CP210x_SetInterfaceString function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setLatencyTimer(long handle,
int value)
Executes FT_SetLatencyTimer function of D2XX library.
|
boolean |
SerialComSLabsUSBXpress.setLineControl(long handle,
int lineControl)
Executes SI_SetLineControl function of USBXpress library.
|
boolean |
SerialComSLabsCP210xManufacturing.setLockValue(long handle)
Executes CP210x_SetLockValue function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setMaxPower(long handle,
byte maxPower)
Executes CP210x_SetMaxPower function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setPid(long handle,
int pid)
Executes CP210x_SetPid function of of CP210xManufacturing library.
|
boolean |
SerialComMCHPSimpleIO.setPin(int pinNumber)
Executes SetPin function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComSLabsCP210xManufacturing.setPortConfig(long handle,
int mode,
int resetLatch,
int suspendLatch,
int enhancedFxn)
Executes CP210x_SetPortConfig function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setProductString(long handle,
String product)
Executes CP210x_SetProductString function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setQuadPortConfig(long handle,
int[] resetLatch,
int[] suspendLatch,
byte[] config)
Executes CP210x_SetDualPortConfig function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setResetPipeRetryCount(long handle,
int count)
Executes SetResetPipeRetryCount function of D2XX library.
|
boolean |
SerialComFTDID2XX.setRTS(long handle)
Executes FT_SetRts function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.setSelfPower(long handle,
boolean selfPower)
Executes CP210x_SetSelfPower function of of CP210xManufacturing library.
|
boolean |
SerialComSLabsCP210xManufacturing.setSerialNumber(long handle,
String serialNumber)
Executes CP210x_SetSerialNumber function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setTimeouts(long handle,
long readTimeOut,
long writeTimeOut)
Executes FT_SetTimeouts function of D2XX library.
|
boolean |
SerialComSLabsUSBXpress.setTimeouts(long handle,
long readTimeOut,
long writeTimeOut)
Executes SI_SetTimeouts function of USBXpress library.
|
boolean |
SerialComFTDID2XX.setUSBParameters(long handle,
int inTransferSize,
int outTransferSize)
Executes FT_SetUSBParameters function of D2XX library.
|
boolean |
SerialComSLabsCP210xManufacturing.setVid(long handle,
int vid)
Executes CP210x_SetVid function of of CP210xManufacturing library.
|
boolean |
SerialComFTDID2XX.setVidPid(int vid,
int pid)
Executes FT_SetVIDPID function of D2XX library.
|
boolean |
SerialComFTDID2XX.stopInTask(long handle)
Executes FT_StopInTask function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32ClearCommBreak(long handle)
Executes FT_W32_ClearCommBreak function of D2XX library.
|
int[] |
SerialComFTDID2XX.w32ClearCommError(long handle)
Executes FT_W32_ClearCommError function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32CloseHandle(long handle)
Executes FT_W32_CloseHandle function of D2XX library.
|
long |
SerialComFTDID2XX.w32CreateFile(String serialNum,
String description,
long location,
int dwAttrsAndFlags,
int dwAccess,
boolean overLapped)
Executes FT_W32_CreateFile function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32EscapeCommFunction(long handle,
short function)
Executes FT_W32_EscapeCommFunction function of D2XX library.
|
int |
SerialComFTDID2XX.w32GetCommMask(long handle)
Executes FT_W32_GetCommMask function of D2XX library.
|
int |
SerialComFTDID2XX.w32GetCommModemStatus(long handle)
Executes FT_W32_GetCommModemStatus function of D2XX library.
|
int[] |
SerialComFTDID2XX.w32GetCommState(long handle)
Executes FT_W32_GetCommState function of D2XX library.
|
int[] |
SerialComFTDID2XX.w32GetCommTimeouts(long handle)
Executes FT_W32_GetCommTimeouts function of D2XX library.
|
String |
SerialComFTDID2XX.w32GetLastError(long handle)
Executes FT_W32_GetLastError function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32GetOverlappedResult(long handle,
boolean wait)
Executes FT_W32_GetOverlappedResult function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32PurgeComm(long handle,
int event)
Executes FT_W32_PurgeComm function of D2XX library.
|
int |
SerialComFTDID2XX.w32ReadFile(long handle,
byte[] buffer,
int numOfBytesToRead)
Executes FT_W32_ReadFile function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32SetCommBreak(long handle)
Executes FT_W32_SetCommBreak function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32SetCommMask(long handle,
int flag)
Executes FT_W32_SetCommMask function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32SetCommState(long handle,
int[] dcb)
Executes FT_W32_SetCommState function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32SetCommTimeouts(long handle,
int readIntervalTimeout,
int readTotalTimeoutMultiplier,
int readTotalTimeoutConstant,
int writeTotalTimeoutMultiplier,
int writeTotalTimeoutConstant)
Executes FT_W32_SetCommTimeouts function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32SetupComm(long handle,
int readBufSize,
int writeBufSize)
Executes FT_W32_SetupComm function of D2XX library.
|
boolean |
SerialComFTDID2XX.w32WaitCommEvent(long handle,
int event)
Executes FT_W32_WaitCommEvent function of D2XX library.
|
int |
SerialComFTDID2XX.w32WriteFile(long handle,
byte[] buffer,
int numOfBytesToWrite)
Executes FT_W32_WriteFile function of D2XX library.
|
int |
SerialComFTDID2XX.write(long handle,
byte[] buffer,
int numOfBytesToWrite)
Executes FT_Write function of D2XX library.
|
int |
SerialComSLabsUSBXpress.write(long handle,
byte[] buffer,
int numOfBytesToWrite)
Executes SI_Write function of USBXpress library.
|
boolean |
SerialComFTDID2XX.writeEE(long handle,
int offset,
int valueToWrite)
Executes FT_WriteEE function of D2XX library.
|
boolean |
SerialComMCHPSimpleIO.writeEEPROM(int uiEEPAddress,
short ucValue)
Executes WriteEEPROM function of 'SimpleIO-xxxx' library.
|
boolean |
SerialComSLabsCP210xRuntime.writeLatch(long handle,
long mask,
long latchValue)
Executes CP210xRT_WriteLatch function of CP210XRuntime library.
|
boolean |
SerialComSLabsUSBXpress.writeLatch(long handle,
long mask,
long latchValue)
Executes SI_WriteLatch function of USBXpress library.
|
boolean |
SerialComMCHPSimpleIO.writePort(int portValue)
Executes WritePort function of 'SimpleIO-xxxx' library.
|
Copyright © 2016. All rights reserved.