MOXA Sync Board API Programmer s Manual

Size: px
Start display at page:

Download "MOXA Sync Board API Programmer s Manual"

Transcription

1 MOXA Sync Board API Programmer s Manual First Edition, Jan 2002 Moxa Technologies Co., Ltd. Tel: Fax: service@moxa.com.tw

2 MOXA Sync Board API Programmer s Manual The software described in this manual is furnished under a license agreement and may be used only in accordance with the terms of that agreement. Copyright Notice Copyright 2001 Moxa Technologies Co., Ltd. All rights reserved. Reproduction without permission is prohibited. Trademarks MOXA is a registered trademark of Moxa Technologies Co., Ltd. All other trademarks or registered marks in this manual belong to their respective manufacturers. Disclaimer Information in this document is subject to change without notice and does not represent a commitment on the part of Moxa. Moxa provides this document as is, without warranty of any kind, either expressed or implied, including, but not limited to, its particular purpose. Moxa reserves the right to make improvements and/or changes to this manual, or to the products and/or the programs described in this manual, at any time. Information provided in this manual is intended to be accurate and reliable. However, Moxa Technologies assumes no responsibility for its use, or for any infringements on the rights of fourth parties that may result from its use. This product might include unintentional technical or typographical errors. Changes are periodically made to the information herein to correct such errors, and these changes are incorporated into new editions of the publication.

3 MOXA Internet Services Customer satisfaction is our number one concern. To ensure that customers receive the full benefit of our products, Moxa Internet Services has been set up to provide technical support, driver updates, product information, and user s manual updates. The following services are provided for technical support: service@moxa.com.tw FTP site for free driver updates:.. ftp://ftp.moxa.com or.. ftp://ftp.moxa.com.tw user ID: ftp password:. your_ _address World Wide Web (WWW) Site for product information:.. or..

4 Chapter 1 Chapter 2 Table of Contents API Programming Library Notes Function List by Category Port Control Byte Sync Control Data Input Data Output Status Inquiry Event Service Miscellaneous Chapter 3 Detailed Function Reference Function 1 syio_open Function 2 syio_close Function 3 syio_flush Function 4 syio_dtr Function 5 syio_rts Function 6 syio_setdataencoding Function 7 syio_ GetDataEncoding Function 8 syio_setbaud Function 9 syio_getbaud Function 10 syio_setcrcmode Function 11 syio_getcrcmode Function 12 syio_settxclockdir Function 13 syio_gettxclockdir Function 14 syio_txdisable Function 15 syio_txenable Function 16 syio_txstatus Function 17 syio_setsyncchar Function 18 syio_setsynclength Function 19 syio_setidlecode Function 20 syio_getopmode

5 Function 21 syio_getidlecode Function 22 syio_getsyncchar Function 23 syio_getsynclength Function 24 syio_read Function 25 syio_setreadtimeouts Function 26 syio_getreadtimeouts Function 27 syio_abortread Function 28 syio_inframe Function 29 syio_inqueue Function 30 syio_infreeframe Function 31 syio_infree Function 32 syio_skipframe Function 33 syio_getfirstframelen Function 34 syio_write Function 35 syio_setwritetimeouts Function 36 syio_getwritetimeouts Function 37 syio_abortwrite Function 38 syio_outframe Function 39 syio_outqueue Function 40 syio_outfreeframe Function 41 syio_outfree Function 42 syio_linestatus Function 43 syio_getboardid Function 44 syio_frameirq Function 45 syio_modemirq Function 46 syio_txemptyirq Function 47 syio_view

6

7 1 1 API Programming Library Notes MOXA Sync API supports,, and. If you use, include the file syncapi.bas in your project. If you use, include the file syncapi.pas. All of these languages require the file syncapi.dll, which is automatically copied to your PC when you install the C502/C101 drivers. The syncapi.lib library file is used with Microsoft. If you are using the Borland compiler, you will need to first use the utility implib.exe to create the Borland-compliant library file syncapib.lib. To do this, execute the command: implib -c syncapib.lib syncapi.dll MOXA Sync API supports block/non-block mode for reading/writing functions with your application. Note: DOS WatcomC Driver supports PCI bus, while DOS TSR driver only supports ISA bus. API Programmer s Manual 1-1

8

9 The following table gives the list of return codes you may encounter when calling the API library functions: Return Code Output Description SYIO_OK 0 function OK SYIO_BADPORT -1 no such port, or port not opened SYIO_OPENED -2 port opened SYIO_BADPARM -3 parameter error SYIO_WIN32FAIL SYIO_ABORT -5 abort writing SYIO_TIMEOUT -6 read or write timeout SYIO_BUFFERTOOSHORT -4-8 win32 function call failure; call the function GetLastError() to obtain the return code (this usually happens because of a driver installation failure; please check the physical installer resource allocation) buffer is too short (happens when the data frame is bigger then the length parameter used with the function syio_read ) API Programmer s Manual 1-1

10

11 2 2 Function List by Category In this chapter the functions are organized into seven different categories: Port Control Byte Sync Control Data Input Data Output Status Inquiry Event Service Miscellaneous API Programmer s Manual 2-1

12 Port Control Port Control functions are used to control the basic operation and configuration of the sync board s port(s), such as opening and closing a port. syio_open syio_close syio_dtr syio_rts syio_setdataencoding syio_getdataencoding syio_setbaud syio_getbaud syio_setcrcmode syio_getcrcmode syio_settxclockdir syio_gettxclockdir syio_txdisable syio_txenable siyo_txstsyio_flush atus open a port close an opened port toggle DTR pin on and off toggle RTS pin on and off set up data encoding get data encoding mode setting set baud rate get baud rate setting set CRC mode get CRC mode setting set Tx Clock direction get Tx Clock direction setting disable Tx transmission enable Tx transmission flush one or more buffers get Tx status 2-2 API Programmer s Manual

13 Function List by Category Byte Sync Control Byte Sync Control functions are used to provide low-level control of data transmitted and received by the sync board. syio_setsyncchar syio_setsynclength syio_setidlecode syio_getopmode syio_getidlecode syio_getsyncchar syio_getsynclength set byte sync character pattern set byte sync character pattern length set transmitter s idle state output pattern get the current synchronous mode get the idle pattern get byte sync character pattern get first byte sync character pattern length Data Input Data Input functions are used to control and manage settings related to receiving data. syio_read syio_setreadtimeouts syio_getreadtimeouts syio_abortread syio_inframe syio_inqueue syio_infreeframe syio_infree syio_skipframe siyo_getfirstframelen receive data from a remote device set syio_read timeout value get syio_read timeout setting value abort blocked syio_read function call get number of frames in the driver buffer get number of data bytes in the driver buffer get number of free frames in the driver buffer get number of free data bytes in the driver buffer skip first received frame in the driver buffer get length of first received frame API Programmer s Manual 2-3

14 Data Output Data Output functions are used to control and manage settings related to the transmission of data. syio_write syio_setwritetimeouts wyio_getwritetimeouts syio_abortwrite syio_outframe syio_outqueue syio_outfreeframe syio_outfree send data set write-timeout setting value get write-timeout setting value abort blocked syio_write function call get number of driver buffer frames to be sent get number of driver buffer data bytes to be sent get number of free driver buffer output frames get free driver buffer output data byte space Status Inquiry These two Status Inquiry functions can be used to obtain basic status information about your system s setup. syio_linestatus syio_getboardid get line status of DSR, DCD, and CTS identify underlying system 2-4 API Programmer s Manual

15 Function List by Category Event Service You may use these Event Service functions to manage three basic events associated with your sync board s operation. syio_frameirq syio_modemirq syio_txemptyirq set the event: number of received frames set the event: modem status change set the event: TxEmpty Miscellaneous syio_view preview data API Programmer s Manual 2-5

16

17 3 3 Detailed Function Reference This chapter includes a detailed list of the sync board API functions. Each entry explains how to call the function, discusses the function s argument list, and gives one or more programming examples.

18 Function 1 syio_open Port Control Open a port and set port configuration to the default values. Port default values are: Tx clock out, baud rate 38400, CRC CCITT_1, and data encoding NRZ. The driver default settings are set at driver load time. Note that once you close a port, the settings will remain the same until you power off. It is good programming practice to do an initial port setting before using the port, instead of relying on the default settings. int WINAPI syio_open(int port); Input : int port (port numbers 0 11) Output : refer to return code list (return code of 4 usually means the driver was not installed successfully; check event log (NT, 2000) for more information about hardware installation Declare Function syio_open Lib syncapi.dll (ByVal port As Long) As Long function syio_open(port: Longint): Longint; stdcall; function syio_open; external syncapi.dll ; int port = 2; ret = syio_open (port); if ( ret!= SYIO_OK ) { /* Open fail */ 3-2 API Programmer s Manual

19 Detailed Function Reference Function 2 syio_close Port Control Close an opened port. If there is no need to use a particular port, you can call this function to close the port, but it will not be closed until remaining data is sent. If there is no data to send within 3 seconds of calling the function, the input and output data on the driver s buffer will be flushed, and then the port will be closed. int WINAPI syio_close(int port); Input : int port (port numbers 0 11) Output : refer to return code list Declare Function syio_close Lib syncapi.dll (ByVal port As Long) As Long function syio_close(port: Longint): Longint; stdcall; function syio_close; external syncapi.dll ; int port = 2;.. Syio_Close( port ); API Programmer s Manual 3-3

20 Function 3 syio_flush Port Control Flush received or to-be-sent data in the driver s buffer. int WINAPI syio_flush(int port, int mode); Input: int port :port numbers 0 11 int mode :FLUSH_INPUT, FLUSH_OUTPUT or FLUSH_ALL Output : refer to return code list Declare Function syio_flush Lib syncapi.dll (ByVal port As Long, ByVal mode As Long) As Long function syio_flush(port, mode: Longint): Longint; stdcall; function syio_flush; external syncapi.dll ;.. syio_flush( port, FLUSH_INPUT ); /* flush onboard input buffer */.. syio_flush( port, FLUSH_OUTPUT ); /* flush onboard output buffer */.. syio_flush( port, FLUSH_ALL ); /* flush all buffers */ 3-4 API Programmer s Manual

21 Detailed Function Reference Function 4 syio_dtr Port Control Set DTR pin on or off. int WINAPI syio_dtr(int port, int mode); Input: int port :port numbers 0 11 int mode CONTROL_ON or CONTROL_OFF Output: refer to return code list Declare Function syio_dtr Lib syncapi.dll (ByVal port As Long, ByVal mode As Long) As Long function syio_dtr(port, mode: Longint): Longint; stdcall; function syio_dtr; external syncapi.dll ; ret = syio_dtr( port, CONTROL_ON ); /* Set DTR active */ If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-5

22 Function 5 syio_rts Port Control Set RTS pin on or off. int WINAPI syio_rts(int port, int mode); Input: int port :port numbers 0 11 int mode CONTROL_ON or CONTROL_OFF Output: refer to return code list Declare Function syio_rts Lib syncapi.dll (ByVal port As Long, ByVal mode As Long) As Long function syio_rts(port, mode: Longint): Longint; stdcall; function syio_rts; external syncapi.dll ; ret = syio_rts( port, CONTROL_ON );/* Set RTS active */ If ( ret < 0 ) { /* fail */ 3-6 API Programmer s Manual

23 Detailed Function Reference Function 6 syio_setdataencoding Port Control Set up data encoding. The default is NRZ. Note that it is good programming practice to initialize the coding type yourself. int WINAPI syio_setdataencoding(int port, int mode); Input: int port :port numbers 0 11 int mode : NRZ, NRZI, FM0 or FM1 Output: refer to return code list Declare Function syio_setdataencoding Lib syncapi.dll (ByVal port As Long, ByVal mode As Long) As Long function syio_setdataencoding(port, mode: Longint): Longint; stdcall; function syio_setdataencoding; external syncapi.dll ; ret = syio_setdataencoding( port, NRZ ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-7

24 Function 7 syio_ GetDataEncoding Port Control Get data encoding mode setting. int WINAPI syio_getdataencoding(int port); Input: int port : port numbers 0 11 Output >= 0 : data encoding mode NRZ, NRZI, FM0 or FM1 < 0 : refer to return code list Declare Function syio_getdataencoding Lib syncapi.dll (ByVal port As Long) As Long function syio_getdataencoding(port: Longint): Longint; stdcall; function syio_getdataencoding; external syncapi.dll ; codingtype = syio_getdataencoding ( port ); If ( codingtype < 0 ) { /* fail */ 3-8 API Programmer s Manual

25 Detailed Function Reference Function 8 syio_setbaud Port Control Set baud rate. Baud rate setting is invalid if Tx Clock is set to in. To activate the baud rate setting, you should set the Tx clock setting to out. int WINAPI syio_setbaud(int port, int speed); Input: int port :port numbers 0 11 int speed RS-232 supported up tp 128 Kbps ISA board support up to 4 Mbps Byte sync support up 64 Kbps C502/PCI V35 HDLC mode support up to 8 Mbps Output: refer to return code list Declare Function syio_setbaud Lib syncapi.dll (ByVal port As Long, ByVal speed As Long) As Long function syio_setbaud(port, speed: Longint): Longint; stdcall; function syio_setbaud; external syncapi.dll ; Ret = syio_setbaud( port, ) If ( ret!= SYIO_OK ) { /* fail */ API Programmer s Manual 3-9

26 Function 9 syio_getbaud Port Control Get baud rate setting. int WINAPI syio_getbaud(int port); Input: int port : port numbers 0 11 Output >= 0 : The baud rate of the port < 0 : refer to return code list Declare Function syio_getbaud Lib syncapi.dll (ByVal port As Long) As Long function syio_getbaud(port: Longint): Longint; stdcall; function syio_getbaud; external syncapi.dll ; baud = syio_getbaud( port ); If ( baud < 0 ) { /* fail */ 3-10 API Programmer s Manual

27 Detailed Function Reference Function 10 syio_setcrcmode Port Control Set CRC mode. CCITT can be initialized with all 0 s, all 1 s, or with no CRC. HDLC protocol can only use CCITT CRC. int WINAPI syio_setcrcmode(int port, int mode); Input: int port :port numbers 0 11 int mode :NONE,CCITT_0,CCITT_1,CRC16_0 or CRC16_1 Output: refer to return code list Declare Function syio_setcrcmode Lib syncapi.dll (ByVal port As Long, ByVal mode As Long) As Long function syio_setcrcmode(port, mode: Longint): Longint; stdcall; function syio_setcrcmode; external syncapi.dll ; ret = syio_setcrcmode( port, CCITT_1 ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-11

28 Function 11 syio_getcrcmode Port Control Get CRC mode setting value. int WINAPI syio_getcrcmode(int port); Input: int port : port numbers 0 11 Output >= 0 Could be NONE, CCITT_0, CCITT_1, CRC16_0 or CRC16_1 < 0 : refer to return code list Declare Function syio_getcrcmode Lib syncapi.dll (ByVal port As Long) As Long function syio_getcrcmode(port: Longint): Longint; stdcall; function syio_getcrcmode; external syncapi.dll ; crcmode = syio_getcrcmode( port ); If ( ret < 0 ) { /* fail */ 3-12 API Programmer s Manual

29 Detailed Function Reference Function 12 syio_settxclockdir Port Control Set Tx clock direction to in or out. Note that Tx clock in uses different pins on the connector from Tx clock out. int WINAPI syio_settxclockdir(int port, int direction); Input: int port :port numbers 0 11 int direction :TX_CLOCK_IN or TX_LOCK_OUT For C101/ISA clock is setting in JP2, and config program. Output: refer to return code list Declare Function syio_settxclockdir Lib syncapi.dll (ByVal port As Long, ByVal direction As Long) As Long function syio_settxclockdir(port, direction: Longint): Longint; stdcall; function syio_settxclockdir; external syncapi.dll ; ret = syio_settxclockdir( port, TX_CLOCK_IN ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-13

30 Function 13 syio_gettxclockdir Port Control Get Tx clock direction setting. int WINAPI syio_gettxclockdir(int port); Input: int port : port numbers 0 11 Output >= 0 TX_CLOCK_IN or TX_CLOCK_OUT < 0 : refer to return code list Declare Function syio_gettxclockdir Lib syncapi.dll (ByVa l port As Long) As Long function syio_gettxclockdir(port: Longint): Longint; stdcall; function syio_gettxclockdir; external syncapi.dll ; clockdir = syio_gettxclockdir( port ); If ( clockdir == TX_CLOCK_IN ) { /* the clock is in */ else if ( clockdir == TX_CLOCK_OUT ) { /* the clock is out */ else { /* fail */ 3-14 API Programmer s Manual

31 Detailed Function Reference Function 14 syio_txdisable Port Control Disable Tx transmission. (After user disables Tx, syio_write can still be called, but the data will queue in the output buffer ) int WINAPI syio_txdisable(int port); Input: int port :port numbers 0 11 Output: Refer to return code list Declare Function syio_txdisable Lib syncapi.dll (ByVal port As Long) As Long function syio_txdisable(port: Longint): Longint; stdcall; function syio_txdisable; external syncapi.dll ; ret = syio_txdisable( port ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-15

32 Function 15 syio_txenable Port Control Enable transmission halted by syio_txdisable. int WINAPI syio_txenable(int port); Input: int port :port numbers 0 11 Output: refer to return code list Declare Function syio_txenable Lib syncapi.dll (ByVal port As Long) As Long function syio_txenable(port: Longint): Longint; stdcall; function syio_txenable; external syncapi.dll ; ret = syio_txenable( port ); If ( ret < 0 ) { /* fail */ 3-16 API Programmer s Manual

33 Detailed Function Reference Function 16 syio_txstatus Port Control Get Tx status, disable or enable. int WINAPI syio_txstatus(int port); Input: int port : port numbers 0 11 Output >= 0 : Tx status, 0 for disable, 1 for enable < 0 : refer to return code list Declare Function syio_txstatus Lib syncapi.dll (ByVal port As Long) As Long function syio_txstatus(port: Longint): Longint; stdcall; function syio_txstatus; external syncapi.dll ; stat = syio_txstatus( port ); If ( stat < 0 ) { /* fail */ API Programmer s Manual 3-17

34 Function 17 syio_setsyncchar Byte Sync Control Set synchronous character pattern for transmission and reception in byte synchronous mode. This function works only in byte sync mode (default is 0x1616). int WINAPI syio_setsyncchar(int port, USHORT syncchar); Input: Int port : port numbers 0 11 USHORT : sync char Output = 0 : ok < 0 : refer to return code list Declare Function syio_setsyncchar Lib "syncapi.dll" (ByVal port As Long, ByVal syncchar As Integer) As Long function syio_setsyncchar(port: Longint; syncchar:word): Longint; stdcall; function syio_setsyncchar; external 'syncapi.dll'; ret = syio_setsyncchar( port, 0x1616 ); If ( ret < 0 ) { /* fail */ 3-18 API Programmer s Manual

35 Detailed Function Reference Function 18 syio_setsynclength Byte Sync Control Set synchronous character pattern number for transmission and reception in byte synchronous mode. This function works only in sync mode (default is 1). int WINAPI syio_setsynclength(int port, int length); Input: Int port : port numbers 0 11 int : sync length Output = 0 : ok < 0 : refer to return code list Declare Function syio_setsynclength Lib "syncapi.dll" (ByVal port As Long, ByVal length As Long) As Long function syio_setsynclength(port, length: Longint): Longint; stdcall; function syio_setsynclength; external 'syncapi.dll'; ret = syio_setsynclength( port, 5 ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-19

36 Function 19 syio_setidlecode Byte Sync Control Set idle pattern output by the transmitter when it is in idle state (default is 0xFF). int WINAPI syio_setidlecode(int port, UCHAR idlecode); Input: Int port : port numbers 0 11 UCHAR : idle code Output = 0 : ok < 0 : refer to return code list Declare Function syio_setidlecode Lib syncapi.dll (ByVal port As Long, ByVal idlecode as Byte) As Long function syio_setidlecode(port: Longint; idlecode:char): Longint; stdcall; function syio_getidlecode; external 'syncapi.dll'; ret = syio_setidlecode( port, 0xFF ); If ( ret < 0 ) { /* fail */ 3-20 API Programmer s Manual

37 Detailed Function Reference Function 20 syio_getopmode Byte Sync Control Get the synchronous mode. int WINAPI syio_getopmode(int port); Input: Int port : port numbers 0 11 Output >= 0 : HDLC_MODE byte sync mode BI_SYNC_8 byte sync with one byte sync char BI_SYNC_16 byte sync with two byte sync char < 0 : refer to return code list Declare Function syio_getopmode Lib "syncapi.dll" (ByVal port As Long) As Long function syio_getopmode(port: Longint): Longint; stdcall; function syio_getopmode; external 'syncapi.dll'; opmode = syio_getopmode( port ); If ( opmode < 0 ) { /* fail */ API Programmer s Manual 3-21

38 Function 21 syio_getidlecode Byte Sync Control Get the idle pattern when it is in idle state. int WINAPI syio_getidlecode(int port); Input: Int port : port numbers 0 11 Output >= 0 : ok < 0 : refer to return code list Declare Function syio_getidlecode Lib "syncapi.dll" (ByVal port As Long) As Long function syio_getidlecode(port: Longint): Longint; stdcall; function syio_getidlecode; external 'syncapi.dll'; idlecode = syio_getidlecode( port ); If ( idlecode < 0 ) { /* fail */ 3-22 API Programmer s Manual

39 Detailed Function Reference Function 22 syio_getsyncchar Byte Sync Control Get the synchronous character pattern in byte synchronous mode. int WINAPI syio_getsyncchar(int port); Input: Int port : port numbers 0 11 Output >= 0 : ok < 0 : refer to return code list Declare Function syio_getsyncchar Lib "syncapi.dll" (ByVal port As Long) As Long function syio_getsyncchar(port: Longint): Longint; stdcall; function syio_getsyncchar; external 'syncapi.dll'; syncchar = syio_getsyncchar( port ); If ( syncchar < 0 ) { /* fail */ API Programmer s Manual 3-23

40 Function 23 syio_getsynclength Byte Sync Control Get first synchronous character pattern number in byte synchronous model int WINAPI syio_getsynclength(int port); Input: Int port : port numbers 0 11 Output >= 0 : ok < 0 : refer to return code list Declare Function syio_getsynclength Lib "syncapi.dll" (ByVal port As Long) As Long function syio_getsynclength(port: Longint): Longint; stdcall; function syio_getsynclength; external 'syncapi.dll'; synclength = syio_getsynclength( port ); If ( synclength < 0 ) { /* fail */ 3-24 API Programmer s Manual

41 Detailed Function Reference Function 24 syio_read Data Input Receive data from a remote device. If you set the read-timeout to zero, the very first time it will return data from the buffer (even if no data is in the onboard buffer). If you set the read-timeout to a non-zero value, it will block the syio_read function call until data comes in, or a timeout occurs, or this read is aborted by another thread. Setting the read timeout to -1 will block data until something comes in, or an abort is issued by another thread (see syio_setreadtimeout for more information). int WINAPI syio_read(int port, char *buf, int len); Input: int port :port numbers 0 11 char *buf : to-receive data buffer pointer int len : to-receive data length Output >= 0 : receiving data length < 0 : refer to return code list Declare Function syio_read Lib syncapi.dll (ByVal port As Long, ByRef buf As Byte, ByVal len As Long) As Long function syio_read(port: Longint; buf: PChar; len: Longint): Longint; stdcall; function syio_read; external syncapi.dll ; Note: Return Code of 8 means the data length coming in is bigger than the length set by the user in the len parameter. int port = 2; char buf[10]; ret = syio_read (port, buf, LengthToRead ); if ( ret == 0) { /* No data in on board buffer */ else if ( ret == length ) { /* The frame size is length and is read by read function ( the length may be any number between 1.. LengthToRead*/ else { /* read out fail */ API Programmer s Manual 3-25

42 Function 25 syio_setreadtimeouts Data Input Set the syio_read timeout value. Please refer to syio_read function for more information. int WINAPI syio_setreadtimeouts(int port, DWORD timeouts); Input: int port :port numbers 0 11 DWORD timeouts 0 for nonblock mode -1 block forever until data come in >0 block desired ms or data come in Output: refer to return code list Declare Function syio_setreadtimeouts Lib syncapi.dll (ByVal port As Long, ByVal timeouts As Long) As Long function syio_setreadtimeouts(port, timeouts: Longint): Longint; stdcall; function syio_setreadtimeouts; external syncapi.dll ; ret = syio_setreadtimeouts( port, 20 );/* set read block 20 ms */ If ( ret < 0 ) { /* fail */ 3-26 API Programmer s Manual

43 Detailed Function Reference Function 26 syio_getreadtimeouts Data Input Get read-timeout setting. Please refer to the syio_read and syio_setreadtimeouts functions for more information. int WINAPI syio_getreadtimeouts(int port, DWORD *timeouts); Input: int port :port numbers 0 11 DWORD *timeouts : to get timeouts pointer. Output: refer to return code list Declare Function syio_getreadtimeouts Lib syncapi.dll (ByVal port As Long, ByRef timeouts As Long) As Long function syio_getredtimeouts(port: Longint; var timeouts: Longint): Longint; stdcall; function syio_getreadtimeouts; external syncapi.dll ; Note: When the write timeouts is too short for the system to send out data, syio_write will return -6, and part of the data may already be sent out to the line. ret = syio_getreadtimeouts( port, &readtimeout ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-27

44 Function 27 syio_abortread Data Input Abort the blocked syio_read function call. int WINAPI syio_abortread(int port); Input: int port :port numbers 0 11 Output: refer to return code list Declare Function syio_abortread Lib syncapi.dll (ByVal port As Long) As Long function syio_abortread(port: Longint): Longint; stdcall; function syio_abortread; external syncapi.dll ; ret = syio_abortread( port );/* abort port read */ If ( ret < 0 ) { /* fail */ 3-28 API Programmer s Manual

45 Detailed Function Reference Function 28 syio_inframe Data Input Get the number of received frames in the driver s buffer. int WINAPI syio_inframe(int port); Input: int port : port numbers 0 11 Output >= 0 : received frames < 0 : refer to return code list Declare Function syio_inframe Lib syncapi.dll (ByVal port As Long) As Long function syio_inframe(port: Longint): Longint; stdcall; function syio_inframe; external syncapi.dll ; If (syio_inframe(port) > 0 ) { ret = syio_read( port, buf, SIZE_DESIRED ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-29

46 Function 29 syio_inqueue Data Input Get the received data bytes in the driver s buffer. int WINAPI syio_inqueue(int port); Input: int port : port numbers 0 11 Output >= 0 : received bytes < 0 : refer to return code list Declare Function syio_inqueue Lib syncapi.dll (ByVal port As Long) As Long function syio_inqueue(port: Longint): Longint; stdcall; function syio_inqueue; external syncapi.dll ; inqueue = syio_inqueue( port ); If ( inqueue > 0 ) { /* inqueue is the data in inbuffer in byte number */ 3-30 API Programmer s Manual

47 Detailed Function Reference Function 30 syio_infreeframe Data Input Get the number of free input frames in the driver s buffer. int WINAPI syio_infreeframe(int port); Input: int port : port numbers 0 11 Output >= 0 : free input frames < 0 : refer to return code list Declare Function syio_infreeframe Lib syncapi.dll (ByVal port As Long) As Long function syio_infreeframe(port: Longint): Longint; stdcall; function syio_infreeframe; external syncapi.dll ; ret = syio_infreeframe( port ); If ( ret > 0 ) { /* ret means the frame still free in input buffer */ API Programmer s Manual 3-31

48 Function 31 syio_infree Data Input Get free data byte space in the driver s buffer. int WINAPI syio_infree(int port); Input: int port : port numbers 0 11 Output >= 0 : free input bytes < 0 : refer to return code list Declare Function syio_infree Lib syncapi.dll (ByVal port As Long) As Long function syio_infree(port: Longint): Longint; stdcall; function syio_infree; external syncapi.dll ; infree = syio_infree( port ); If ( ret > 0 ) { /* infree is the free space in input buffer in byte count */ 3-32 API Programmer s Manual

49 Detailed Function Reference Function 32 syio_skipframe Data Input Skip the first received frame from the driver s buffer. The skipped frame will be discarded and will not be read by the application. int WINAPI syio_skipframe(int port); Input: int port :port numbers 0 11 Output: refer to return code list Declare Function syio_skipframe Lib syncapi.dll (ByVal port As Long) function syio_skipframe(port: Longint): Longint; stdcall; function syio_skipframe; external syncapi.dll ; If (syio_getfirstframelen( port ) > LENGTH_MAX) { ret = syio_skipframe( port ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-33

50 Function 33 syio_getfirstframelen Data Input Get first received frame length. int WINAPI syio_getfirstframelen(int port); Input: int port : port numbers 0 11 Output >= 0 : the first frame length < 0 : refer to return code list Declare Function syio_getfirstframelen Lib syncapi.dll (ByVal port As Long) As Long function syio_getfirstframelen(port: Longint): Longint; stdcall; function syio_getfirstframelen; external syncapi.dll ; firstframe = syio_getfirstframelen( port ); If ( firstframelen < 0 ) { /* fail */ 3-34 API Programmer s Manual

51 Detailed Function Reference Function 34 syio_write Data Output Send data. If you set write-timeout to zero, it will write the data to dual-port DRAM on the board and then return as soon as possible. If you set write-timeout to a specific value, it will block function calls to syio_write until the data write to FIFO is completed or times out. Setting timeout to 1 will block until another Thread aborts it, or the write is really complete (also see syio_setwritetimeouts for more information). int WINAPI syio_write(int port, char *buf, int len); Input: int port :port numbers 0 11 char *buf : to-send data buffer pointer Int len : to-send data length Output >= 0 : sent data length < 0 : refer to return code list Declare Function syio_write Lib syncapi.dll (ByVal port As Long, ByRef buf As Byte, ByVal len As Long) As Long function syio_write(port: Longint; buf: PChar; len: Longint): Longint; stdcall; function syio_write; external syncapi.dll ; Note: Block mode read write is not support in DOS int port = 2; char buf[10]; ret = syio_write (port, buf, 10 ); if ( ret == 0) { /* On board buffer full; wait some time and send again */ else if ( ret == 10 ) { /* data write to on board buffer in nonblock mode */ /* data is already write out to FIFO in block mode (the HD64570 have on chip FIFO 32 byte)*/ else { /* write out fail */ API Programmer s Manual 3-35

52 Function 35 syio_setwritetimeouts Data Output Set write-timeout setting. Please refer to the syio_write function for more information. int WINAPI syio_setwritetimeouts(int port, DWORD timeouts); Input: int port :port numbers 0 11 DWORD timeouts 0 for nonblock mode -1 block forever until data write out >0 block desired ms or data write out Output: refer to return code list Declare Function syio_setwritetimeouts Lib syncapi.dll (ByVal port As Long, ByVal timeouts As Long) As Long function syio_setwritetimeouts(port, timeouts: Longint): Longint; stdcall; function syio_setwritetimeouts; external syncapi.dll ; ret = syio_setwritetimeouts( port, 20 );/* set write block 20 ms */ If ( ret < 0 ) { /* fail */ 3-36 API Programmer s Manual

53 Detailed Function Reference Function 36 syio_getwritetimeouts Data Output Get write-timeout setting. Please refer to syio_write and syio_setwritetimeouts function for more details. int WINAPI syio_getwritetimeouts(int port, DWORD *timeouts); Input: int port :port numbers 0 11 DWORD *timeouts : to get timeouts pointer. Output: refer to return code list Declare Function syio_getwritetimeouts Lib syncapi.dll (ByVal port As Long, ByRef timeouts As Long) As Long function syio_getwritetimeouts(port: Longint; var timeouts: Longint): Longint; stdcall; function syio_getwritetimeouts; external syncapi.dll ; ret = syio_getwritetimeouts( port, &writetimeout ); If ( ret < 0 ) { /* fail */ API Programmer s Manual 3-37

54 Function 37 syio_abortwrite Data Output Abort the blocked syio_write function call. int WINAPI syio_abortwrite(int port); Input: int port :port numbers 0 11 Output: refer to return code list Declare Function syio_abortwrite Lib syncapi.dll (ByVal port As Long) As Long function syio_abortwrite(port: Longint): Longint; stdcall; function syio_abortwrite; external syncapi.dll ; ret = syio_abortwrite( port );/* abort port write */ If ( ret < 0 ) { /* fail */ 3-38 API Programmer s Manual

55 Detailed Function Reference Function 38 syio_outframe Data Output Get the number of to-be-sent frames in the driver s buffer. int WINAPI syio_outframe(int port); Input: int port : port numbers 0 11 Output >= 0 : to-send frames < 0 : refer to return code list Declare Function syio_outframe Lib syncapi.dll (ByVal port As Long) As Long function syio_outframe(port: Longint): Longint; stdcall; function syio_outframe; external syncapi.dll ; ret = syio_outframe( port ); If ( ret > 0 ) { /* there are data in outpur buffer still */ API Programmer s Manual 3-39

56 Function 39 syio_outqueue Data Output Get to-be-sent data bytes in the driver s buffer. int WINAPI syio_outqueue(int port); Input: int port : port numbers 0 11 Output >= 0 : to-be-sent bytes < 0 : refer to return code list Declare Function syio_outqueue Lib syncapi.dll (ByVal port As Long) As Long function syio_outqueue(port: Longint): Longint; stdcall; function syio_outqueue; external syncapi.dll ; outqueue = syio_outqueue( port ); If ( ret > 0 ) { /* outqueue is the data in output buffer in byte count */ 3-40 API Programmer s Manual

57 Detailed Function Reference Function 40 syio_outfreeframe Data Output Get the number of free output frames in the driver s buffer. int WINAPI syio_outfreeframe(int port); Input: int port : port numbers 0 11 Output >= 0 : free output frames < 0 : refer to return code list Declare Function syio_outfreeframe Lib syncapi.dll (ByVal port As Long) As Long function syio_outfreeframe(port: Longint): Longint; stdcall; function syio_outfreeframe; external syncapi.dll ; ret = syio_outfreeframe( port ); If ( ret > 0 ) { /* ret means the free frame in output buffer */ API Programmer s Manual 3-41

58 Function 41 syio_outfree Data Output Get free output data byte space in the driver s buffer. int WINAPI syio_outfree(int port); Input: int port : port numbers 0 11 Output >= 0 : output free bytes < 0 : refer to return code list Declare Function syio_outfree Lib syncapi.dll (ByVal port As Long) As Long function syio_outfree(port: Longint): Longint; stdcall; function syio_outfree; external syncapi.dll ; outfree = syio_outfree( port ); If ( ret > 0 ) { /* outfree is the free space in output buffer in byte count */ int port = 2; char buf[10]; ret = syio_view (port, buf, LengthToView ); if ( ret == 0) { /* No data in onboard input buffer */ else if ( ret == length ) { /* The frame size is length and user can decide to read this data by read function or just call syio_flush to abort this data */ ( the length may be any number between 1.. LengthToView*/ else { /* View fail */ 3-42 API Programmer s Manual

59 Detailed Function Reference Function 42 syio_linestatus Status Inquiry Get the line state of DSR, DCD, and CTS. int WINAPI syio_linestatus(int port); Input: Int port : port numbers 0 11 Output >= 0 Can be DCD_ON, DSR_ON,CTS_ON or any conbination of them < 0 : refer to return code list Declare Function syio_linestatus Lib syncapi.dll (ByVal port As Long) As Long function syio_linestatus(port: Longint): Longint; stdcall; function syio_linestatus; external syncapi.dll ; linestat = syio_getlinestat( port ); If ( linestat DCD_ON ) { /* line DCD is active */ else if ( linestat CTS_ON ) { /* line CTS is active */ else if ( linestat DSR_ON ) { /* line DSR is active */ API Programmer s Manual 3-43

60 Function 43 syio_getboardid Status Inquiry User can identify their underlying system by calling this function. int WINAPI syio_getboardid(int port); Input: int port : port numbers 0 11 Output >= 0 Could be C101_ISA, C101_PCI, C502_ISA,C502_PCI < 0 : refer to return code list Declare Function syio_getboardid Lib syncapi.dll (ByVal port As Long) As Long function syio_getboardid(port: Longint): Longint; stdcall; function syio_getboardid; external syncapi.dll ; boardid = syio_getboardid( port ); If ( boardid < 0 ) { /* fail */ 3-44 API Programmer s Manual

61 Detailed Function Reference Function 44 syio_frameirq Event Service Set the event number of received frames. You can specify a function to be called when a frame event occurs. If the function is set as NULL, the frame event will be cleared. int WINAPI syio_frameirq(int port, VOID (CALLBACK *func)(int port), int framecnt); Input: int port :port numbers 0 11 VOID (CALLBACK *func)(int port) : the function to be called when this event occurs int framecnt :Number of received frames to call the function. It must be greater than zero. Output: refer to return code list Declare Function syio_frameirq Lib syncapi.dll (ByVal port As Long, ByVal func As Long, ByVal framecnt As Long) As Long Type IrqProc1 = procedure(port: Longint); stdcall; function syio_frameirq(port: Longint; func: IrqProc1; framecnt: Longint): Longint; stdcall; function syio_frameirq; external syncapi.dll ; API Programmer s Manual 3-45

62 /* user can receive data in FrameFunc */ void CALLBACK FrameFunc(int port); /* user must first register a call back function, when the inframe satisfy FRAME_CNT the friver will call this function */ ret = syio_frameirq(port, FrameFunc, FRAME_CNT); if ( ret < 0 ) { /* fail */ void CALLBACK FrameFunc(int port) { /* do something about the incoming data */ 3-46 API Programmer s Manual

63 Detailed Function Reference Function 45 syio_modemirq Event Service Set the event modem status change. You can specify a function to be called when modem CTS, DCD, DSR on/off status changes. If the function is set to NULL, the modem event will be cleared. int WINAPI syio_modemirq(int port, VOID (CALLBACK *func)(int port, int status), int mode); Input: int port :port numbers 0 11 VOID (CALLBACK *func)(int port, int status) : the function to be called when this event happens int mode :Types of modem status change At last one modem status must be set. Output: refer to return code list Declare Function syio_modemirq Lib syncapi.dll (ByVal port As Long, ByVal func As Long, ByVal mode As Long) As Long type IrqProc2 = procedure(port, status: Longint); stdcall; function syio_modemirq(port: Longint; func: IrqProc2; mode: Longint): Longint; stdcall; function syio_modemirq; external syncapi.dll ; API Programmer s Manual 3-47

64 /* user can do something in ModemFunc */ void CALLBACK ModemFunc(int port, int status); /* user must first register a call back function, when the linestate changes the driver will call this function */ ret = syio_modemirq(port, ModemFunc, CTSCHANGE_INT DCDCHANGE_INT); if ( ret < 0 ) { /* fail */ void CALLBACK ModemFunc(int port, int status) { /* status may be DCDCHANGE_INT, DSRCHANGE_INT CTSCHANGE_INT or any of their combination you register in ModemIrq function*/ /* do something about the modem change */ 3-48 API Programmer s Manual

65 Detailed Function Reference Function 46 syio_txemptyirq Event Service Set the event Tx Empty. You can specify a function to be called when the Tx Empty event occurs. If the function is set to NULL, the Tx Empty event will be cleared. int WINAPI syio_txemptyirq(int port, VOID (CALLBACK *func)(int port); Input: int port :port numbers 0 11 VOID (CALLBACK *func)(int port) : the function to be called when this event occurs Output: refer to return code list Declare Function syio_txemptyirq Lib syncapi.dll (ByVal port As Long, ByVal func As Long) As Long type IrqProc1 = procedure(port: Longint); stdcall; function syio_txemptyirq(port: Longint; func: IrqProc1): Longint; stdcall; function syio_txemptyirq; external syncapi.dll ; /* user can do something in TxEmptyFunc */ void CALLBACK TxEmptyFunc(int port); /* user must first register a call back function, when the transmit buffer is empty the driver will call this function*/ ret = syio_txemptyirq(port, TxEmptyFunc); if ( ret < 0 ) { /* fail */ void CALLBACK TxEmptyFunc(int port) { /* do something about the transmit empty */ API Programmer s Manual 3-49

66 Function 47 syio_view Miscellaneous Preview data. It works the same as syio_read, but data stays in the driver after being read. It has no timeout value. int WINAPI syio_view(int port, char*buf, int len); Input: int port :port numbers 0 11 char *buf : to-view data buffer pointer int len : to-view data length Output >= 0 : viewing data length < 0 : refer to return code list Declare Function syio_view Lib syncapi.dll (ByVal port As Long, ByRef buf As Byte, ByVal len As Long) As Long function syio_view(port: Longint; buf: PChar; len: Longint): Longint; stdcall; function syio_view; external syncapi.dll ; 3-50 API Programmer s Manual

C101 ISA/PCI SuperSync Board

C101 ISA/PCI SuperSync Board C101 ISA/PCI SuperSync Board User s Manual Fifth Edition, June 2008 www.moxa.com/product 2008 Moxa Inc., all rights reserved. Reproduction without permission is prohibited. C101 ISA/PCI SuperSync Board

More information

PCIe-400 USER S MANUAL

PCIe-400 USER S MANUAL PCIe-400 USER S MANUAL 2017 May Edition Titan Electronics Inc. Web: www.titan.tw The computer programs provided with the hardware are supplied under a license. The software provided should be used only

More information

MEC-COM-M114. User s Manual

MEC-COM-M114. User s Manual MEC-COM-M114 Mini PCI-e 4-port RS-232 serial board with power input User s Manual Third Edition, February 2014 2014 Cervoz Co., Ltd. All rights reserved. Reproduction without permission is prohibited Mini

More information

User Manual VScom PCI Cards VScom Industrial Card

User Manual VScom PCI Cards VScom Industrial Card User Manual VScom PCI Cards VScom Industrial Card Edition: July 2011 Tel: +49 40 528 401 0 Fax: +49 40 528 401 99 Web: www.visionsystems.de Support: service@visionsystems.de The software described in this

More information

CHAPTER 5 REGISTER DESCRIPTIONS

CHAPTER 5 REGISTER DESCRIPTIONS USER S MANUAL 5 CHAPTER 5 REGISTER DESCRIPTIONS 5. INTRODUCTION This section describes the functions of the various bits in the registers of the SCC (Tables 5- and 5-2). Reserved bits are not used in this

More information

MEC-COM-M154. User s Manual

MEC-COM-M154. User s Manual MEC-COM-M154 Mini PCI-e 2-port RS-232 and 2-port RS232/422/485 serial board with power input User s Manual Third Edition, February 2014 2014 Cervoz Co., Ltd. All rights reserved. Reproduction without permission

More information

UPort 2000 Series User s Manual

UPort 2000 Series User s Manual User s Manual Second Edition, December 2012 www.moxa.com/product 2012 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be

More information

User Manual USB-COM ECO

User Manual USB-COM ECO User Manual USB-COM ECO Edition: February 2017 Tel: +49 40 528 401 0 Fax: +49 40 528 401 99 Web: www.visionsystems.de Support: service@visionsystems.de The software described in this manual is furnished

More information

SpiNNaker Application Programming Interface (API)

SpiNNaker Application Programming Interface (API) SpiNNaker Application Programming Interface (API) Version 2.0.0 10 March 2016 Application programming interface (API) Event-driven programming model The SpiNNaker API programming model is a simple, event-driven

More information

MOXA VPort 2110/2140/2141 Video Server Quick Installation Guide

MOXA VPort 2110/2140/2141 Video Server Quick Installation Guide MOXA VPort 2110/2140/2141 Video Server Quick Installation Guide Third Edition, July 2006 MOXA Networking Co., Ltd. Tel: +886-2-2910-1230 Fax: +886-2-2910-1231 www.moxa.com support@moxanet.com (Worldwide)

More information

MGate TM EIP3000 DF1 to EtherNet/IP Gateway User s Manual

MGate TM EIP3000 DF1 to EtherNet/IP Gateway User s Manual MGate TM EIP3000 DF1 to EtherNet/IP Gateway User s Manual First Edition, June 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. MGate EIP3000

More information

NPort Server Lite User s Manual

NPort Server Lite User s Manual NPort Server Lite User s Manual for DE-302/304/332/334 Third Edition, March 2001 Moxa Technologies Co., Ltd. Tel: +866-2-8919-1230 Fax: +886-2-8919-1231 www.moxa.com service@moxa.com.tw NPort Server Lite

More information

C218 Turbo User s Manual

C218 Turbo User s Manual C218 Turbo User s Manual High Performance 8-Port Async Board for ISA bus Fifth Edition, June 2008 www.moxa.com/product 2008 Moxa Inc., all rights reserved. Reproduction without permission is prohibited.

More information

Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual

Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Third Edition, Dec. 2008 www.korenix.com Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual

More information

CHAPTER 4 DATA COMMUNICATION MODES

CHAPTER 4 DATA COMMUNICATION MODES USER S MANUAL CHAPTER DATA COMMUNICATION MODES. INTRODUCTION The SCC provides two independent, full-duplex channels programmable for use in any common asynchronous or synchronous data communication protocol.

More information

SMG-1100/6100 User s Manual

SMG-1100/6100 User s Manual User s Manual First Edition, January 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. User s Manual The software described in this manual is

More information

LAP-B(PCI/C-PCI) GPF LAP-B Communications Driver Software for for Windows. Help for Windows.

LAP-B(PCI/C-PCI) GPF LAP-B Communications Driver Software for for Windows. Help for Windows. LAP-B(PCI/C-PCI) GPF-4115 LAP-B Communications Driver Software for for Windows Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 4 1.1 Overview4 1.2 Features.4 Chapter 2 Product Specifications

More information

USB-2COM-BB USER S MANUAL

USB-2COM-BB USER S MANUAL USB-2COM-BB USER S MANUAL 2017 May Edition Titan Electronics Inc. Web: www.titan.tw The computer programs provided with the hardware are supplied under a license. The software provided should be used only

More information

VL-7312 VL-7314 VL-73CT12 VL-73CT14. Dual/Quad RS-232 Serial Card for the STD Bus

VL-7312 VL-7314 VL-73CT12 VL-73CT14. Dual/Quad RS-232 Serial Card for the STD Bus Reference Manual VL-7312 VL-7314 VL-73CT12 VL-73CT14 Dual/Quad RS-232 Serial Card for the STD Bus Model VL-7312 & VL-7314 Dual / Quad RS-232 Serial Card for the STD Bus REFERENCE MANUAL Contents Copyright

More information

IO-Warrior Dynamic Library V1.5 for Windows

IO-Warrior Dynamic Library V1.5 for Windows V1.5 for Windows Applicable for all IO-Warriors Overview The IO-Warrior Kit Dynamic Library provides a simple API to access all IO-Warrior products from Code Mercenaries. It is intended to be used with

More information

$U6RIW,QWHUQDWLRQDO. Modbus Driver for Windows 95/98/NT/2000/XP 8VHUV0DQXDO 0RGEXV,QWHUIDFH. 9HUVLRQ Page 1

$U6RIW,QWHUQDWLRQDO. Modbus Driver for Windows 95/98/NT/2000/XP 8VHUV0DQXDO 0RGEXV,QWHUIDFH. 9HUVLRQ Page 1 0RGEXV,QWHUIDFH 8VHUV0DQXDO 9HUVLRQ Page 1 6\VWHP,QWHUIDFH The implemented procedures and functions in the DLL modbus (Modbus.dll ) are subsequently described in detail: 2SHQ&RP 'LVDEOH&RP 5HDG:RUGV :ULWH:RUGV

More information

Learn how to communicate

Learn how to communicate USART 1 Learn how to communicate Programmed I/O (Software Polling) Interrupt Driven I/O Direct Memory Access (DMA) 2 Programmed I/O (Polling) Processor must read and check I/O ready bits for proper value

More information

PCI Express 16-Port Serial I/O Cards

PCI Express 16-Port Serial I/O Cards PCI Express 16-Port Serial I/O Cards The PCIe-1600 PCI Express 16-port serial I/O card is a plug & play high-speed serial I/O expansion card for PCI Express bus. Connecting to a PCI Express bus on your

More information

SIO-DLL. Serial I/O DLL. User Manual

SIO-DLL. Serial I/O DLL. User Manual SIO-DLL Serial I/O DLL User Manual SIO-DLL User Manual Document Part N 0127-0178 Document Reference SIO-DLL\..\0127-0178.Doc Document Issue Level 1.3 Manual covers software version 1 All rights reserved.

More information

SpinWarrior Dynamic Library V1.5 for Windows and Linux

SpinWarrior Dynamic Library V1.5 for Windows and Linux SpinWarrior Dynamic Library V1.5 Applicable for all SpinWarriors Overview The SpinWarrior Kit Dynamic Library provides a simple API to access all SpinWarrior products from Code Mercenaries. It is intended

More information

Serial Interfacing. Pulse width of 1 bit

Serial Interfacing. Pulse width of 1 bit ١ ٢ Asynchronous Frame 10 bits 7E1 (7 data bits, even parity, 1 stop bit) Serial Data Transfer used by keyboards, plotters, modems and other peripherals with low data transfer rates (low bandwidth) * *

More information

CLD SC58x CDC Library v.1.00 Users Guide Users Guide Revision For Use With Analog Devices ADSP-SC58x Series Processors. Closed Loop Design, LLC

CLD SC58x CDC Library v.1.00 Users Guide Users Guide Revision For Use With Analog Devices ADSP-SC58x Series Processors. Closed Loop Design, LLC CLD SC58x CDC Library v.1.00 Users Guide Users Guide Revision 1.00 For Use With Analog Devices ADSP-SC58x Series Processors Closed Loop Design, LLC 748 S MEADOWS PKWY STE A-9-202 Reno, NV 89521 support@cld-llc.com

More information

MOXA C101 Synchronous Interface

MOXA C101 Synchronous Interface MOXA C101 Synchronous Interface Document revision 1.3 (February 6, 2008, 2:58 GMT) This document applies to V3.0 Table of Contents Table of Contents General Information Summary Specifications Additional

More information

Matrix-710. Linux-Ready Cortex-A5 Industry IoT Gateway. Hardware Guide. Version: Nov.

Matrix-710. Linux-Ready Cortex-A5 Industry IoT Gateway. Hardware Guide. Version: Nov. Matrix-710 Linux-Ready Cortex-A5 Industry IoT Gateway Hardware Guide Version: 1.01 2017 Nov. Copyright Artila Electronics Co., Ltd. All Rights Reserved Trademarks The Artila logo is a registered trademark

More information

CLD BF70x CDC Library v.1.3 Users Guide Users Guide Revision 1.3. For Use With Analog Devices ADSP-BF70x Series Processors. Closed Loop Design, LLC

CLD BF70x CDC Library v.1.3 Users Guide Users Guide Revision 1.3. For Use With Analog Devices ADSP-BF70x Series Processors. Closed Loop Design, LLC CLD BF70x CDC Library v.1.3 Users Guide Users Guide Revision 1.3 For Use With Analog Devices ADSP-BF70x Series Processors Closed Loop Design, LLC 748 S MEADOWS PKWY STE A-9-202 Reno, NV 89521 support@cld-llc.com

More information

Serial Communication. Simplex Half-Duplex Duplex

Serial Communication. Simplex Half-Duplex Duplex 1.5. I/O 128 Serial Communication Simplex Half-Duplex Duplex 129 Serial Communication Master-Slave Master Master-Multi-Slave Master Slave Slave Slave (Multi-)Master Multi-Slave Master Slave Slave Slave

More information

EX & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card

EX & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card EX-45362 & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card Congratulation on your purchasing this high performance 2-Port RS232/422/485 3-in-1 Serial PCIe Host Adapter. The adapter is high speed PCIe

More information

NetBiter Serial Server User Manual

NetBiter Serial Server User Manual User Manual IntelliCom Innovation AB Linjegatan 3D SE-302 50 Halmstad SWEDEN Phone +46 35 18 21 70 Fax +46 35 17 29 09 email info@intellicom.se web www.intellicom.se Revision List Revision Date Author

More information

ESC(LP)-100. Eight Channel Low Profile RS-232 Asynchronous Communications Adapter. for PCI bus. User's Manual

ESC(LP)-100. Eight Channel Low Profile RS-232 Asynchronous Communications Adapter. for PCI bus. User's Manual ESC(LP)-100 Eight Channel Low Profile RS-232 Asynchronous Communications Adapter for PCI bus User's Manual QUATECH, INC. TEL: (330) 655-9000 5675 Hudson Industrial Parkway FAX: (330) 655-9010 Hudson, Ohio

More information

QSC(LP)-100. User's Manual

QSC(LP)-100. User's Manual QSC(LP)-100 Four Channel Low Profile RS-232 Asynchronous Communications Adapter for PCI bus User's Manual QUATECH, INC. TEL: (330) 655-9000 5675 Hudson Industrial Parkway FAX: (330) 655-9010 Hudson, Ohio

More information

ELAN DIGITAL SYSTEMS LTD. SL332 PC- CARD USER S GUIDE

ELAN DIGITAL SYSTEMS LTD. SL332 PC- CARD USER S GUIDE ELAN DIGITAL SYSTEMS LTD. LITTLE PARK FARM ROAD, SEGENSWORTH WEST, FAREHAM, HANTS. PO15 5SJ. TEL: (44) (0)1489 579799 FAX: (44) (0)1489 577516 e-mail: support@pccard.co.uk website: http://www.pccard.co.uk

More information

NCOM SERIAL DEVICE SERVER 1XX SERIES USER S MANUAL

NCOM SERIAL DEVICE SERVER 1XX SERIES USER S MANUAL NCOM SERIAL DEVICE SERVER 1XX SERIES USER S MANUAL 2017-07-07 Edition Titan Electronics Inc. Web: www.titan.tw Contents 1. INTRODUCTION... 4 1.1 Key Features... 5 1.2 Specifications... 6 2. PANEL LAYOUT

More information

MOXA C101 Synchronous Interface

MOXA C101 Synchronous Interface MOXA C101 Synchronous Interface Document revision 1.1 (Fri Mar 05 08:15:42 GMT 2004) This document applies to V2.8 Table of Contents Table of Contents General Information Summary Specifications Related

More information

SyncLink GT4 PC/104+ Serial Adapter

SyncLink GT4 PC/104+ Serial Adapter SyncLink GT4 PC/104+ Serial Adapter Hardware User s Manual MicroGate Systems, Ltd http://www.microgate.com MicroGate and SyncLink are registered trademarks of MicroGate Systems, Ltd. Copyright 2008 2011

More information

BLE232: Manual Copyright 2014 taskit GmbH

BLE232: Manual Copyright 2014 taskit GmbH BLE232 Manual BLE232: Manual Copyright 2014 taskit GmbH BLE232 All rights to this documentation and to the product(s) described herein are reserved by taskit GmbH. This document was written with care,

More information

USB SERIAL OVER IP ADAPTER AnyplaceUSB-xCOM USER S MANUAL

USB SERIAL OVER IP ADAPTER AnyplaceUSB-xCOM USER S MANUAL USB SERIAL OVER IP ADAPTER AnyplaceUSB-xCOM USER S MANUAL 2018 August Edition Titan Electronics Inc. Sharing Serial Ports over Ethernet and the Internet www.titan.tw The computer programs provided with

More information

Matrix-700 Linux-Ready Cortex-A5 Industry IoT Gateway Hardware Guide

Matrix-700 Linux-Ready Cortex-A5 Industry IoT Gateway Hardware Guide Matrix-700 Linux-Ready Cortex-A5 Industry IoT Gateway Hardware Guide Version: 1.12 2018 Jan. Copyright Artila Electronics Co., Ltd. All Rights Reserved. Matrix-700 Hardware Guide Trademarks The Artila

More information

CoreSDLC Driver User s Guide. Version 2.0

CoreSDLC Driver User s Guide. Version 2.0 CoreSDLC Driver User s Guide Version 2.0 Table of Contents Introduction... 5 Features... 5 Supported Hardware IP... 5 Files Provided... 7 Documentation... 7 Driver Source Code... 7 Example Code... 7 Driver

More information

ThingsPro Software User s Manual

ThingsPro Software User s Manual ThingsPro Software User s Manual Edition 1.0, February 2016 www.moxa.com/product 2016 Moxa Inc. All rights reserved. ThingsPro Software User s Manual The software described in this manual is furnished

More information

NCOM SERIAL DEVICE SERVER 4XX SERIES USER S MANUAL

NCOM SERIAL DEVICE SERVER 4XX SERIES USER S MANUAL NCOM SERIAL DEVICE SERVER 4XX SERIES USER S MANUAL 2017-07-07 Edition Titan Electronics Inc. Web: www.titan.tw Contents 1. INTRODUCTION... 4 1.1 Key Features... 5 1.2 Specifications... 6 2. PANEL LAYOUT

More information

TRC-190 User s Manual

TRC-190 User s Manual First Edition, November 2008 www.moxa.com/product 2008 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. The software described in this manual is furnished under a license agreement

More information

Smartio C104H/HS User s Manual

Smartio C104H/HS User s Manual Smartio C104H/HS User s Manual Universal 4 Port Serial Board May 1999 (6th Edition) The content of this manual is also available in CD-ROM and at Moxa Web Site. Moxa Technologies Co., Ltd. Tel: +866-2-8665-6373

More information

Hierarchy of I/O Control Devices

Hierarchy of I/O Control Devices Hierarchy of I/O Control Devices 8155 I/O + Timer 2 Port (A,B), No Bidirectional HS mode (C) 4 mode timer 8253/54 Timer 6 mode timer 8255 I/O 2 Port (A,B) A is Bidirectional HS mode (C) Extra controls

More information

Moxa Proactive Monitoring User s Manual

Moxa Proactive Monitoring User s Manual User s Manual Edition 1.0, September 2015 www.moxa.com/product 2015 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be

More information

Application Note. IP Nano (IPn920F & IPn920T) & Centracs Compatibility. February Country Hills Landing NW Calgary, Alberta Canada T3K 5P3

Application Note. IP Nano (IPn920F & IPn920T) & Centracs Compatibility. February Country Hills Landing NW Calgary, Alberta Canada T3K 5P3 Application Note IP Nano (IPn920F & IPn920T) & Centracs Compatibility February 2013 150 Country Hills Landing NW Calgary, Alberta Canada T3K 5P3 Phone: (403) 248-0028 Fax: (403) 248-2762 www.microhardcorp.com

More information

NE-4100 Series Serial Command Mode User s Guide

NE-4100 Series Serial Command Mode User s Guide NE-4100 Series Serial Command Mode User s Guide www.moxa.com/product First Edition, September 2004 Moxa Technologies Co., Ltd. Tel: +886-2-8919-1230 Fax: +886-2-8919-1231 www.moxa.com support@moxa.com.tw

More information

MOXA TCC-120/120I User s Guide

MOXA TCC-120/120I User s Guide MOXA TCC-120/120I User s Guide Seventh Edition, May 2006 www.moxa.com/product Moxa Technologies Co., Ltd. Tel: +886-2-8919-1230 Fax: +886-2-8919-1231 Web: www.moxa.com MOXA Technical Support Worldwide:

More information

ControlLogix Multi-Vendor Interface Module DH-485 API

ControlLogix Multi-Vendor Interface Module DH-485 API ControlLogix Multi-Vendor Interface Module DH-485 API 1756-MVI User Manual Important User Information Because of the variety of uses for the products described in this publication, those responsible for

More information

UPort 1100 Series User s Manual

UPort 1100 Series User s Manual Fourth Edition, April 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. The software described in this manual is furnished under a license agreement

More information

Configuration of Synchronous Protocols

Configuration of Synchronous Protocols encor! enetworks TM Version A, September 2010 2013 Encore Networks, Inc. All rights reserved. Configuration of Synchronous Protocols This chapter discusses synchronous protocols that you can configure

More information

MGate MB3000 Modbus Gateway User Manual

MGate MB3000 Modbus Gateway User Manual MGate MB3000 Modbus Gateway User Manual Sixth Edition, July 2012 www.moxa.com/product 2012 Moxa Inc. All rights reserved. MGate MB3000 Modbus Gateway User s Manual The software described in this manual

More information

NE-4100-P Series User s Manual

NE-4100-P Series User s Manual First Edition, September 006 www.moxa.com/product MOXA Technologies Co., Ltd. Tel: +886--899-0 Fax: +886--899- Web: www.moxa.com MOXA Technical Support Worldwide: support@moxa.com The Americas support@usa.moxa.com

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PB3Oseh Driver Documentation Win32 Driver Model Revision A Corresponding

More information

EasySync Ltd. USB2-F-7x01 Programming Guide

EasySync Ltd. USB2-F-7x01 Programming Guide EasySync Ltd. Document Reference No.: ES_000010 Issue Date: 2010-02-22 The USB2-F-7x01 (USB-to CAN) is a replacement product for the EasySync CANUSB and it provides a simple method of adapting CANbus devices

More information

Software Manual. Digi International Inc Bren Road Minnetonka, MN (800) (612)

Software Manual. Digi International Inc Bren Road Minnetonka, MN (800) (612) Digi International Inc. 11001 Bren Road Minnetonka, MN 55343 (800) 344-4273 (612) 912-3444 Digi International GmbH Domkloster 1 50667 Köln Germany +49 221 920520 Digi International Asia Pte Ltd 13-06 Tower

More information

MEC-COM-M134. User s Manual

MEC-COM-M134. User s Manual MEC-COM-M134 Mini PCI-e 4-port RS-232/422/485 serial board with power input User s Manual Third Edition, February 2014 Mini PCI-e Serial Card User s Manual 2 Table of Contents Chapter 1 Introduction 4

More information

IC232 PC- CARD USER S GUIDE

IC232 PC- CARD USER S GUIDE ELAN DIGITAL SYSTEMS LTD. LITTLE PARK FARM ROAD, SEGENSWORTH WEST, FAREHAM, HANTS. PO15 5SJ. TEL: (44) (0)1489 579799 FAX: (44) (0)1489 577516 e-mail: support@pccard.co.uk website: http://www.pccard.co.uk

More information

PCIe Card Selection Guide. PCIe-CAN Card. PCIe-COM Card. Taiwan Pulse Motion Co.,Ltd. Bus Interface PCI Express x 1 LPE-C122 PCE-C122D PCE-C122T

PCIe Card Selection Guide. PCIe-CAN Card. PCIe-COM Card. Taiwan Pulse Motion Co.,Ltd. Bus Interface PCI Express x 1 LPE-C122 PCE-C122D PCE-C122T PCIe Card Selection Guide PCIe-CAN Card Bus Interface PCI Express x 1 LPE-C122 PCE-C122D PCE-C122T Channels I/O Isolation Voltage Baud Rate Terminator Resistor I/O PIN Type 2 Max. 1 Mbps Jumper for 120

More information

NPort Z2150 User s Manual

NPort Z2150 User s Manual NPort Z2150 User s Manual Third Edition, July 2015 www.moxa.com/product 2015 Moxa Inc. All rights reserved. NPort Z2150 User s Manual The software described in this manual is furnished under a license

More information

RX Family APPLICATION NOTE. Simple I 2 C Module Using Firmware Integration Technology. Introduction. Target Device.

RX Family APPLICATION NOTE. Simple I 2 C Module Using Firmware Integration Technology. Introduction. Target Device. APPLICATION NOTE RX Family R01AN1691EJ0220 Rev. 2.20 Introduction This application note describes the simple I 2 C module using firmware integration technology (FIT) for communications between devices

More information

Serial Interfacing. Asynchronous Frame

Serial Interfacing. Asynchronous Frame Serial Interfacing Serial Data Transfer used by keyboards, plotters, modems and other peripherals with low data transfer rates (low bandwidth) 2 Types: Asynchronous CPU and device are not using a common

More information

Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual

Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Version V1.3, Jan. 2010 www.korenix.com Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Copyright

More information

MOXA SoftDVR Lite IP Surveillance Software. User s Guide

MOXA SoftDVR Lite IP Surveillance Software. User s Guide MOXA SoftDVR Lite IP Surveillance Software First Edition, February 2004 Moxa Networking Co., Ltd. Tel: +886-2-2910-1230 Fax: +886-2-2910-1231 www.moxa.com support@moxanet.com (Worldwide) support@moxa.com

More information

USB TO RS-232/RS-422/RS-485 ADAPTER

USB TO RS-232/RS-422/RS-485 ADAPTER USB TO RS-232/RS-422/RS-485 ADAPTER For Android User s Manual UTS-232AD / UTS-422AD / UTS-485AD Table of Contents Introduction...2 System Requirements...2 Features...2 Specifications...3 Install Application...4

More information

USART. USART stands for Universal Synchronous Asynchronous Receiver Transmitter. Full-duplex NRZ asynchronous serial data transmission

USART. USART stands for Universal Synchronous Asynchronous Receiver Transmitter. Full-duplex NRZ asynchronous serial data transmission USART 1 USART USART stands for Universal Synchronous Asynchronous Receiver Transmitter Full-duplex NRZ asynchronous serial data transmission Offer wide ranges of baud rate 2 Serial communication Can support

More information

ELAN DIGITAL SYSTEMS LTD. CF428 COMPACT FLASH CF+ CARD USER S GUIDE

ELAN DIGITAL SYSTEMS LTD. CF428 COMPACT FLASH CF+ CARD USER S GUIDE ELAN DIGITAL SYSTEMS LTD. LITTLE PARK FARM ROAD, SEGENSWORTH WEST, FAREHAM, HANTS. PO15 5SJ. TEL: (44) (0)1489 579799 FAX: (44) (0)1489 577516 e-mail: support@pccard.co.uk website: http://www.pccard.co.uk

More information

SyncLink USB Serial Adapter

SyncLink USB Serial Adapter SyncLink USB Serial Adapter Hardware User s Manual MicroGate Systems, Ltd http://www.microgate.com MicroGate and SyncLink are registered trademarks of MicroGate Systems, Ltd. Copyright 2012-2017 MicroGate

More information

MGate MB3000 Modbus Gateway User s Manual

MGate MB3000 Modbus Gateway User s Manual User s Manual Seventh Edition, May 2013 www.moxa.com/product 2013 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

VSCAN J1939 Manual. Edition: January Tel: Fax: Web: Support: faq.visionsystems.

VSCAN J1939 Manual. Edition: January Tel: Fax: Web:  Support: faq.visionsystems. VSCAN J1939 Manual Edition: January 2018 Tel: +49 40 528 401 0 Fax: +49 40 528 401 99 Web: www.visionsystems.de Support: faq.visionsystems.de The software described in this manual is furnished under a

More information

NS9750B-0. Use in conjunction with: Errata , Rev G. Release date: May Phone: Web:

NS9750B-0. Use in conjunction with: Errata , Rev G. Release date: May Phone: Web: NS9750B-0 Errata 90000530, Rev G Release date: May 2006 Use in conjunction with: NS9750 Hardware Reference, Rev. E Part number: 90000624_E Released: April 2006 SPI slave data output high impedance control

More information

SyncLink GT2E/GT4E Serial Adapter

SyncLink GT2E/GT4E Serial Adapter SyncLink GT2E/GT4E Serial Adapter Hardware User s Manual MicroGate Systems, Ltd http://www.microgate.com MicroGate and SyncLink are registered trademarks of MicroGate Systems, Ltd. Copyright 2008-2017

More information

UPort 1200/1400/1600 Series User s Manual

UPort 1200/1400/1600 Series User s Manual UPort 1200/1400/1600 Series User s Manual Fourth Edition, June 2008 www.moxa.com/product 2008 Moxa Inc., all rights reserved. Reproduction without permission is prohibited. UPort 1200/1400/1600 Series

More information

Enhanced Serial Communications Controller

Enhanced Serial Communications Controller Z823/Z8523/L Enhanced Serial Communications Controller PS538-69 Copyright 29 by Zilog, Inc. All rights reserved. www.zilog.com Warning: DO NOT USE IN LIFE SUPPORT LIFE SUPPORT POLICY ZILOG'S PRODUCTS ARE

More information

MOXA SoftDVR Pro IP Surveillance Software. Getting Started Guide. First Edition, June 2004

MOXA SoftDVR Pro IP Surveillance Software. Getting Started Guide. First Edition, June 2004 MOXA SoftDVR Pro IP Surveillance Software First Edition, June 2004 *This User s Guide contains the basic procedures required to install and operate SoftDVR Pro IP Surveillance Software. Refer to the SoftDVR

More information

C104P User s Manual Universal 4-port Serial Board

C104P User s Manual Universal 4-port Serial Board C104P User s Manual Universal 4-port Serial Board Eighth Edition, June 2008 www.moxa.com/product 2008 Moxa Inc., all rights reserved. Reproduction without permission is prohibited. C104P User s Manual

More information

One of the unique features of the T4Ee is the huge variety of clock source options, clocks can be:

One of the unique features of the T4Ee is the huge variety of clock source options, clocks can be: FarSync T4Ee Intelligent PCIe sync/async multi clock source 4 port adapter Key Features 4 port PCIe bus mastering WAN adapter Interfaces for RS232, X.21, RS530, RS422, RS449, RS485 and V.35 Sync (Bitstream

More information

TCP Channel Serial Interface RS232 / RS422 cpci Module. User Manual. The Embedded I/O Company. Version 1.0. Issue 1.

TCP Channel Serial Interface RS232 / RS422 cpci Module. User Manual. The Embedded I/O Company. Version 1.0. Issue 1. The Embedded I/O Company TCP866 8 Channel Serial Interface RS232 / RS422 cpci Module Version 1.0 User Manual Issue 1.3 September 2006 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 Phone: +49-(0)4101-4058-0 25469

More information

Data sheet Wireless UART firmware version 4

Data sheet Wireless UART firmware version 4 Data sheet Wireless UART firmware version 4 BLUETOOTH is a trademark owned by Bluetooth SIG, Inc., U.S.A. and licensed to Free2move Rev: 05 December 2006 Table of contents 1 GENERAL INFORMATION...4 1.1

More information

DYNAMIC ENGINEERING. 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING. 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est. DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 PMC Biserial S311 Software Manual Driver Documentation Developed

More information

Moxa TCC-100 Series User s Guide

Moxa TCC-100 Series User s Guide Moxa TCC-100 Series User s Guide Eighth Edition, February 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. Moxa TCC-100 Series User s Guide The

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcB2B Driver Documentation Win32 Driver Model Revision A Corresponding

More information

DSC-100. User's Manual

DSC-100. User's Manual DSC-100 Two Channel RS-232 Asynchronous Communications Adapter for PCI bus User's Manual QUATECH, INC. TEL: (330) 655-9000 5675 Hudson Industrial Parkway FAX: (330) 655-9010 Hudson, Ohio 44236 http://www.quatech.com

More information

Serial Interfaces Part 1. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Serial Interfaces Part 1. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Serial Interfaces Part 1 ECE 153B Sensor & Peripheral Interface Design Serial Interfaces Simple Serial Interfaces RS-232C (UART) Provides for point to point communications, primarily Among the simplest

More information

USB BF70x Audio 1.0 Library v.1.2 Users Guide Users Guide Revision 1.3. For Use With Analog Devices ADSP-BF70x Series Processors

USB BF70x Audio 1.0 Library v.1.2 Users Guide Users Guide Revision 1.3. For Use With Analog Devices ADSP-BF70x Series Processors USB BF70x Audio 1.0 Library v.1.2 Users Guide Users Guide Revision 1.3 For Use With Analog Devices ADSP-BF70x Series Processors Closed Loop Design, LLC 748 S MEADOWS PKWY STE A-9-202 Reno, NV 89521 support@cld-llc.com

More information

MiniOS7 API Functions Reference Manual. (For C Language) Version 1.17, Jan 2015

MiniOS7 API Functions Reference Manual. (For C Language) Version 1.17, Jan 2015 MiniOS7 API Functions Reference Manual (For C Language) Version 1.17, Jan 2015 Original Writer:Tim Tsai Last Editer: Vic Tsai i-7188 series i-7188(d) i-7188xa(d) i-7188xb(d) i-7188xc(d) i-7188ex(d) i-7188ea(d)

More information

ELAN DIGITAL SYSTEMS LTD. CF232 COMPACT FLASH CF+ CARD USER S GUIDE

ELAN DIGITAL SYSTEMS LTD. CF232 COMPACT FLASH CF+ CARD USER S GUIDE ELAN DIGITAL SYSTEMS LTD. LITTLE PARK FARM ROAD, SEGENSWORTH WEST, FAREHAM, HANTS. PO15 5SJ. TEL: (44) (0)1489 579799 FAX: (44) (0)1489 577516 e-mail: support@pccard.co.uk website: http://www.pccard.co.uk

More information

Software Documentation

Software Documentation QS Series Master Development System Software Documentation Introduction The software included with the MDEV-USB-QS Master Development Kit is a quick and easy way to test the features of the QS Series USB

More information

Motortronics VirtualSCADA VS2-MT Communication Gateway VS2-MT User Manual Revision

Motortronics VirtualSCADA VS2-MT Communication Gateway VS2-MT User Manual Revision Motortronics VirtualSCADA VS2-MT Communication Gateway VS2-MT User Manual Revision 1.03.00 Motortronics / Phasetronics 1600 Sunshine Drive Clearwater, Florida 33765 Tel: 727-573-1819 Fax: 727-573-1803

More information

RS 232 Interface. RS 232 is the Serial interface on the PC. Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3

RS 232 Interface. RS 232 is the Serial interface on the PC. Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3 RS 232 Interface RS 232 is the Serial interface on the PC Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3 Note: SR510 switches pins 2,3 internally HP Func. Gen. Requires a null

More information

KC Web API Programmer Reference

KC Web API Programmer Reference KC Web API Programmer Reference API Version 1.0 Knowledge Center version 4.2 November 2012 Copyright Cognition Corporation, 2012 All Rights Reserved This document, as well as the software described in

More information

Multi-4/LPCI. Overview. BUS Interface. Serial. Connector Panel: Hardware. Slew-Rate Limit Control. Software

Multi-4/LPCI. Overview. BUS Interface. Serial. Connector Panel: Hardware. Slew-Rate Limit Control. Software Multi-4/LPCI Overview Multi-4/LPCI is equipped with SystemBase s powerful semiconductors to deliver maximum performance up to 921.6Kbps with the world s leading 256 byte FIFO preventing overrun errors.

More information

MiniOS7 API Functions Reference Manual. (For C Language) Version 1.12, Jan 2009

MiniOS7 API Functions Reference Manual. (For C Language) Version 1.12, Jan 2009 MiniOS7 API Functions Reference Manual (For C Language) Version 1.12, Jan 2009 Original Writer:Tim Tsai Last Editer: Vic Tsai i-7188 series i-7188(d) i-7188xa(d) i-7188xb(d) i-7188xc(d) i-7188ex(d) i-7188ea(d)

More information

For technical support and service, please visit our support website at:

For technical support and service, please visit our support website at: Copyright Notice This document is copyrighted 2002. All rights are reserved. The original manufacturer reserves the right to make improvements to the products described in this manual at any time without

More information

NuCOM. PCI-7841/cPCI-7841/PM-7841 Dual-Port Isolated CAN Interface Card User s Guide

NuCOM. PCI-7841/cPCI-7841/PM-7841 Dual-Port Isolated CAN Interface Card User s Guide NuCOM PCI-7841/cPCI-7841/PM-7841 Dual-Port Isolated CAN Interface Card User s Guide @Copyright 1998 ADLink Technology Inc. All Rights Reserved. Manual first edition: June 1, 1998 Manual Rev. 2.00: July

More information

DCB1M - Transceiver for Powerline Communication

DCB1M - Transceiver for Powerline Communication Preliminary Description DCB1M - Transceiver for Powerline Communication The information in this data sheet is preliminary and may be changed without notice. 1. General The DCB1M is an innovative technology

More information