TPMC550-SW-12 OS-9 for PPC Device Driver 8 (4) Channels Isolated 12-bit D/A

Size: px
Start display at page:

Download "TPMC550-SW-12 OS-9 for PPC Device Driver 8 (4) Channels Isolated 12-bit D/A"

Transcription

1 TPMC550-SW-12 OS-9 for PPC Device Driver 8 (4) Channels Isolated 12-bit D/A Version 1.1 Issue May 1999 TEWS DATENTECHNIK GmbH Am Bahnhof 7 D Halstenbek Germany Tel.: +49 (0) Fax.: +49 (0) Support@tews.com Web:

2 TPMC550-SW-12 8(4) Channel 12-bit I/O OS-9 for PPC Device Driver This document contains information, which is proprietary to TEWS DATENTECHNIK GmbH. Any reproduction without written permission is forbidden. TEWS DATENTECHNIK GmbH has made any effort to ensure that this manual is accurate and complete. However TEWS DATENTECHNIK GmbH reserves the right to change the product described in this document at any time without notice. This product has been designed to operate with PCI Mezzanine Card compatible carriers. Connection to incompatible hardware is likely to cause serious damage. TEWS DATENTECHNIK GmbH is not liable for any damage arising out of the application or use of the device described herein by TEWS DATENTECHNIK GmbH Issue Description Date 1.0 First Issue 18. May 1999 TPMC550-SW-12 OS-9 for PPC Device Driver page 2

3 Table of Contents 1 INTRODUCTION INSTALLATION Install the driver to the OS-9-System Different Carriers. 5 3 I/O INTERFACE FUNCTIONS Tp550_open() Tp550_close() tp550_write() tp550_cntrl() SS_SEQ_ENABLE - (Setup and Enable Output Sequencer) SS_SEQ_DISABLE - (Disable Output Sequencer) SS_SEQ_WRITE - (Write new values to the sequencer) DEVICE DESCRIPTOR APPENDIX Predefined Symbols Status and Error Codes. 15 TPMC550-SW-12 OS-9 for PPC Device Driver page 3

4 1 Introduction The TPMC550-SW-12 OS-9 for PowerPC device driver software allows the operation of the TPMC550 modules with 8(4) analog outputs with a device-independent interface. After installation of the device driver in the I/O system, output voltage lines can be set and read by calling the 'tp550_write()' function. Special I/O operations that do not fit to the standard I/O calls will be performed by calling the 'tp550_cntrl()' function with a specific function code and an optional functiondependent argument. The TPMC550-SW-12 device driver includes the following functions:! writing new output values! start and configure the output sequencer! stop the output sequencer! synchronized write to update output values in sequencer mode TPMC550-SW-12 OS-9 for PPC Device Driver page 4

5 2 Installation The TPMC550-SW-12 OS-9 for PowerPC device driver software is delivered on a 3½ floppy disk (DOS-formatted). The floppy disk holds the following files: TP550DRV_MAIN.C Device Driver Main TP550DRV_INIT.C Device Driver Initialization Function TP550DRV_TERM.C Device Driver Termination Function TP550DRV_CTRL.C Device Driver GetStat and SetStat Function TP550DRV_INTR.C Device Driver Interrupt Function TP550_INTERFACE.C Application Interface TP550_EXAMPLE.C Example Application using TPMC550 Device Driver TP550DRV_DEFS.H Device Driver Definitions Include File TPMC550.H Device Driver and Application Include File TPMC550.DES TPMC550 Global Device Descriptor Structure TP550_X.DES TPMC550 Global Device Descriptor Initialization TP550_1.DES TPMC550 Device Descriptor OUTPUT\* Compiled Example 2.1 Install the driver to the OS-9-System After you have copied the files to your PC disk, you have to adapt the device descriptors for your system. After this the device driver can be build with the following command: os9make After generating the device driver and the device descriptors, these files have to be moved to your OS-9-system (for example: with FTP). The device driver and its corresponding device descriptors can be loaded into the running system with the command (see also IN in the output directory of your driver disk): load d tp550_1 tp550drv Now the devices can be initialized in your OS-9 system with the following command (see also IN in the output directory of your driver disk): iniz tp550_1 An example of uninstalling the driver is given in OUT in the output directory of your driver disk. After starting the device driver and initializing the device descriptors in your OS-9- system, you can run your application using the devices, if you have linked the application with the TPMC550 Device Driver Interface TP550_INTERFACE. 2.2 Different Carriers This device driver has been designed and tested on the local PMC-Slot of a MVME3604. If you are using PMC-Spans or other Carriers it may be necessary to adapt your PCIsetup to allow access to the module and to initialize the PCI-configuration-registers of the TPMC550. TPMC550-SW-12 OS-9 for PPC Device Driver page 5

6 3 I/O Interface Functions This chapter describes the interface to the I/O system for handling the digital inputs and outputs. 3.1 Tp550_open() NAME tp550_open() - open a path to a TPMC550 device SYNOPSIS int tp550_open ( char *DeviceName, /* name of the device to open */ int *Path /* path number returned by this call */ ) DESCRIPTION Before I/O can be performed to the TPMC550 device, it must be opened by invoking the I/O function 'tp550_open()'. PARAMETER The argument DeviceName specifies the device. The argument Path is used to identify the device in subsequent service requests. EXAMPLE /* open the device named "/tp550_1" for I/O */ result = tp550_open ( "/tp550_1", &path); RETURNS returns E_NOERR (0) if the device was successful opened, or an appropriate error code if the device does not exist. SEE ALSO I/O system call I$Open TPMC550-SW-12 OS-9 for PPC Device Driver page 6

7 3.2 Tp550_close() NAME tp550_close() - close a path to a TPMC550 device SYNOPSIS int tp550_close ( int ) Path DESCRIPTION Terminates the specified I/O path. PARAMETER The I/O path is specified by Path. RETURNS returns E_NOERR (0) if the device was successful closed, or an appropriate error code. SEE ALSO I/O system call I$Close TPMC550-SW-12 OS-9 for PPC Device Driver page 7

8 3.3 tp550_write() NAME tp550_write() write a new value to an output channel of the specified TPMC550. SYNOPSIS int tp550_write ( int Path, /* Path number */ TP550_IO_BUFFER *Buf /* Pointer to the Output buffer */ ) DESCRIPTION Once a TPMC550 device has been initialized the tasks can write values to a specified output channel of the device. PARAMETER The parameter Path Specifies the device. The parameter Buf is a pointer to the I/O structure (TP550_IO_BUFFER). Data structure 'TP550_IO_BUFFER' typedef struct { unsigned short Value; unsigned short Flags; unsigned short Channel; } TP550_IO_BUFFER; The parameter Value specifies the new output value. The parameter Flags specifies the mode how to convert the values. Allowed Flags are: TP550_LATCHED Load a new DAC value, but don t start the conversion. TP550_SIMULTANOUS Start a conversion for all DACs simultaneously TP550_CORR Correct the output value using the board specific calibration data The parameter Channel specifies the output channel. TPMC550-SW-12 OS-9 for PPC Device Driver page 8

9 EXAMPLE #include "tpmc550.h" tp550_io_buffer int int outbuf; result; path; /* Write a new output value to the opened TPMC550 device. Change Channel 4 to 0x */ outbuf.channel = 4; outbuf.value = 0x123; outbuf.flags = 0; result = tp550_write (path, &outbuf); if (result!= E_NOERR) { /* handle the write error */ } RETURNS E_NOERR if read was successful or an appropriate error code INCLUDE FILES TPMC550.H TPMC550-SW-12 OS-9 for PPC Device Driver page 9

10 3.4 tp550_cntrl() NAME tp550_cntrl() - perform an I/O control function SYNOPSIS int tp550_cntrl ( int Path, /* Path number */ int function, /* function code */ int arg /* optional function-dependent argument */ ) DESCRIPTION Special I/O operations that do not fit to the standard I/O calls (read, write) will be performed by calling the 'tp550_cntrl()' function with a specific function code and an optional function-dependent argument. A description of the special functions follows after this function. PARAMETER The parameter Path specifies the device. The parameter function selects control function. The parameter arg is a function dependent argument, it point to the structure TP550_SEQ_BUFFER. Data structure 'TP550_SEQ_BUFFER' typedef struct { unsigned short Time; /* Sequencer Cycle Time */ TP550_SEQ_CHAN List[8]; /* Channel Configuration List for */ /* channel 1..8 */ } TP550_SEQ_BUFFER; Data structure 'TP550_SEQ_CHAN' typedef struct { unsigned short Value; /* Channels value */ unsigned short Flags; /* Channel setup Flags */ } TP550_SEQ_CHAN; RETURNS E_NOERR or an appropriate error code if the device does not exist or the function code is unknown INCLUDE FILES TPMC550.H TPMC550-SW-12 OS-9 for PPC Device Driver page 10

11 3.4.1 SS_SEQ_ENABLE - (Setup and Enable Output Sequencer) This I/O-function sets up and enables the output sequencer of the TPMC550. For this operation the function dependent argument is used with the following parameters. Structure TP550_SEQ_BUFFER : The parameter Time specifies the length of a sequencer cycle, the value is specified in 100µs steps. The array List[] holds information for each possible channel. List[0] Channel 1 List[1] Channel 2 List[2] Channel 3 Structure TP550_SEQ_CHAN : The parameter Value specifies the first output value of the specified channel. The parameter Flags specifies how to handle the channel. TP550_CORR Correct the output value using the board specific calibration data TP550_CHANENABLE If this flag is set the sequencer will handle this channel, otherwise this channel is not used in sequencer mode. EXAMPLE #include "tpmc550.h" int result; TP550_SEQ_BUFFER seq_buf; /* Enable Output Sequencer and setup startvalues Sequencer cycle of 1 sec Use channel 1 and channel 4(corrected) */ seq_buf.time = 10000; /* Setup used channels */ seq_buf.list[0].value = 0x100; seq_buf.list[0].flags = TP550_CHANENABLE; seq_buf.list[3].value = 0x400; seq_buf.list[3].flags = TP550_CHANENABLE TP550_CORR; /* Setup unused channels */ seq_buf.list[1].flags = 0; seq_buf.list[2].flags = 0; seq_buf.list[4].flags = 0; seq_buf.list[5].flags = 0; seq_buf.list[6].flags = 0; seq_buf.list[7].flags = 0; result = tp550_cntrl(path, SS_SEQ_ENABLE, &seq_buf); TPMC550-SW-12 OS-9 for PPC Device Driver page 11

12 3.4.2 SS_SEQ_DISABLE - (Disable Output Sequencer) This I/O-function disables the output sequencer of the TPMC550. For this operation the function dependent argument is unused. EXAMPLE #include int "tpmc550.h" result; /* Disable Output Sequencer */ result = tp550_cntrl(path, SS_SEQ_DISABLE, 0); TPMC550-SW-12 OS-9 for PPC Device Driver page 12

13 3.4.3 SS_SEQ_WRITE - (Write new values to the sequencer) This I/O-function writes new values the output sequencer of the TPMC550. This function will wait until the sequencer allows writing new values to the TPMC550. For this operation the function dependent argument is used with the following parameters. Structure TP550_SEQ_BUFFER : The parameter Time is not used. The array List[] holds information for each possible channel. List[0] Channel 1 List[1] Channel 2 List[2] Channel 3 Structure TP550_SEQ_CHAN : The parameter Value specifies the new output value of the specified channel. The parameter Flags specifies how to handle the channel. TP550_CORR Correct the output value using the board specific calibration data TP550_CHANENABLE If this flag is set the sequencer will write the new value to the channel, but it will only have any effect if the channel has been enabled with the SS_SEQ_ENABLE function. EXAMPLE #include "tpmc550.h" int result; TP550_SEQ_BUFFER seq_buf; /* Write new output values to the active channels */ /* Setup new values for the used channels */ seq_buf.list[0].value = 0x80; seq_buf.list[0].flags = TP550_CHANENABLE; seq_buf.list[3].value = 0x200; seq_buf.list[3].flags = TP550_CHANENABLE TP550_CORR; result = tp550_cntrl(path, SS_SEQ_WRITE, &seq_buf); TPMC550-SW-12 OS-9 for PPC Device Driver page 13

14 4 Device Descriptor This chapter will describe the device dependent part of the device descriptor. This part of the descriptor is located in the files named TP550_n. This files define some values which must be adapted to your system and requirements. The following three defines are selecting the device. TPBUSNUM The PCI-bus number the TPMC550 is mounted to. TPDEVNUM The PCI-device number of the slot where your TPMC550 is mounted to. The other defines are used to setup the device descriptor and some OS-9 specific settings. (Value settings which are not described here must be left unchanged). PRIORITY VECTOR IRQLEVEL NAME LLNAME MODULETYP SIGNALNUM Specifies the interrupt polling priority (see OS-9 manuals) Specifies the interrupt vector of your device, this value depends on your carrier and the OS-9 BSP for it. This specifies the interrupt level, normally this value can be left to 1, because there is only one interrupt level. This specifies the name of the device descriptor Must be set to NAME Moduletyp specifies which type of TPMC550 is mounted to the system. The value depends on the modules name. for Example.: TPMC # ModuleTyp 10 TPMC # ModuleTyp 21 The signal number defines the signal which will be used for this device. You must set this value to an allowed signal number. TPMC550-SW-12 OS-9 for PPC Device Driver page 14

15 5 Appendix 5.1 Predefined Symbols The following symbols are predefined in the include file 'TPMC550.H'. tp550drv_cntrl() function codes SS_READ 200 This value is used by the read function SS_WRITE 201 This value is used by the write function SS_SEQ_ENABLE 210 Using this function code will setup and enable the output sequencer SS_SEQ_DISABLE 211 Using this function code will disable the output sequencer SS_SEQ_WRITE 212 This function code allows updating the output values in sequencer mode Channel Flags TP550_LATCHED (1 << 0) Write to the specified channel and use latched mode TP550_SIMULTANOUS (1 << 1) Write to the specified channel and start conversion for all channels TP550_CORR (1 << 8) Use the board specific Calibration data to correct the output TP550_CHANENABLE (1 << 9) Enable channel when starting the sequencer or allow updating the data value when writing new sequencer data 5.2 Status and Error Codes E_NOERR 0x000 No error E_NXIO 0x200 No TPMC550 module found at the specified base address E_HWTIMEOUT 0x201 Hardware timed out (busy active) E_ISBUSY 0x202 Hardware (sequencer) is active E_ILLCHAN 0x203 Illegal channel number specified E_DATAUNDERRUN 0x204 Data underrun E_SEQDISABLED 0x205 Sequencer is disabled TPMC550-SW-12 OS-9 for PPC Device Driver page 15

TPMC500-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. 32 Channel 12 Bit ADC. Version 2.0.x. Issue 2.0.

TPMC500-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. 32 Channel 12 Bit ADC. Version 2.0.x. Issue 2.0. The Embedded I/O Company TPMC500-SW-42 VxWorks Device Driver 32 Channel 12 Bit ADC Version 2.0.x User Manual Issue 2.0.0 October 2004 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 e-mail: info@tews.com 25469 Halstenbek

More information

TIP570-SW-95 QNX-Neutrino Device Driver TIP570 16/8 Channel 12 Bit ADC and 8 Channel 12 Bit DAC on SBS PCI40 Carrier

TIP570-SW-95 QNX-Neutrino Device Driver TIP570 16/8 Channel 12 Bit ADC and 8 Channel 12 Bit DAC on SBS PCI40 Carrier TIP570-SW-95 QNX-Neutrino Device Driver TIP570 16/8 Channel 12 Bit ADC and 8 Channel 12 Bit DAC on SBS PCI40 Carrier Version 1.0.x Reference Manual Issue 1.0 January 2002 TEWS TECHNOLOGIES GmbH Am Bahnhof

More information

TPMC821-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. INTERBUS Master G4 PMC. Version 1.4. Issue 1.

TPMC821-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. INTERBUS Master G4 PMC. Version 1.4. Issue 1. The Embedded I/O Company TPMC821-SW-42 VxWorks Device Driver INTERBUS Master G4 PMC Version 1.4 User Manual Issue 1.2 January 2004 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone:

More information

TDRV006-SW-42. VxWorks Device Driver. 64 Digital Inputs/Outputs (Bit I/O) Version 4.0.x. User Manual. Issue December 2017

TDRV006-SW-42. VxWorks Device Driver. 64 Digital Inputs/Outputs (Bit I/O) Version 4.0.x. User Manual. Issue December 2017 The Embedded I/O Company TDRV006-SW-42 VxWorks Device Driver 64 Digital Inputs/Outputs (Bit I/O) Version 4.0.x User Manual Issue 4.0.0 December 2017 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek,

More information

TPMC901-SW-95. QNX4 - Neutrino Device Driver. User Manual. The Embedded I/O Company. 6/4/2 Channel Extended CAN-Bus PMC

TPMC901-SW-95. QNX4 - Neutrino Device Driver. User Manual. The Embedded I/O Company. 6/4/2 Channel Extended CAN-Bus PMC The Embedded I/O Company TPMC901-SW-95 QNX4 - Neutrino Device Driver 6/4/2 Channel Extended CAN-Bus PMC User Manual Issue 1.0 Version 1.0.0 October 2002 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek

More information

TIP610-SW-95 QNX-Neutrino Device Driver TIP610 16/20 Channel Digital I/O on SBS PCI40 Carrier

TIP610-SW-95 QNX-Neutrino Device Driver TIP610 16/20 Channel Digital I/O on SBS PCI40 Carrier TIP610-SW-95 QNX-Neutrino Device Driver TIP610 16/20 Channel Digital I/O on SBS PCI40 Carrier Version 1.0.x Reference Manual Issue 1.0 January 2002 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 D-25469 Halstenbek

More information

TIP120-SW-42. VxWorks Device Driver. Motion Controller with Incremental Encoder Interface. Version 2.1.x. User Manual. Issue 2.1.

TIP120-SW-42. VxWorks Device Driver. Motion Controller with Incremental Encoder Interface. Version 2.1.x. User Manual. Issue 2.1. The Embedded I/O Company TIP120-SW-42 VxWorks Device Driver Motion Controller with Incremental Encoder Interface Version 2.1.x User Manual Issue 2.1.0 May 2010 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469

More information

TPMC815-SW-72. LynxOS Device Driver. User Manual. The Embedded I/O Company. ARCNET Controller. Version 1.0.x. Issue 1.0 May 2004

TPMC815-SW-72. LynxOS Device Driver. User Manual. The Embedded I/O Company. ARCNET Controller. Version 1.0.x. Issue 1.0 May 2004 The Embedded I/O Company TPMC815-SW-72 LynxOS Device Driver ARCNET Controller Version 1.0.x User Manual Issue 1.0 May 2004 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone: +49-(0)4101-4058-0

More information

TIP114-SW-72. LynxOS Device Driver. User Manual. The Embedded I/O Company. 10 Channel Absolute Encoder Interface (SSI) Version 1.0.

TIP114-SW-72. LynxOS Device Driver. User Manual. The Embedded I/O Company. 10 Channel Absolute Encoder Interface (SSI) Version 1.0. The Embedded I/O Company TIP114-SW-72 LynxOS Device Driver 10 Channel Absolute Encoder Interface (SSI) Version 1.0.0 User Manual Issue 1.0 February 2004 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek

More information

TIP700-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. Digital Output 24V DC. Version 2.0.x. Issue June 2008.

TIP700-SW-42. VxWorks Device Driver. User Manual. The Embedded I/O Company. Digital Output 24V DC. Version 2.0.x. Issue June 2008. The Embedded I/O Company TIP700-SW-42 VxWorks Device Driver Digital Output 24V DC Version 2.0.x User Manual Issue 2.0.1 June 2008 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 Phone: +49 (0) 4101 4058 0 25469 Halstenbek,

More information

The Embedded I/O Company TIP700-SW-82 Linux Device Driver User Manual TEWS TECHNOLOGIES GmbH TEWS TECHNOLOGIES LLC

The Embedded I/O Company TIP700-SW-82 Linux Device Driver User Manual TEWS TECHNOLOGIES GmbH TEWS TECHNOLOGIES LLC The Embedded I/O Company TIP700-SW-82 Linux Device Driver Digital Output 24V DC Version 1.2.x User Manual Issue 1.2.1 February 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 Phone: +49 (0) 4101 4058 0 25469

More information

TPMC851-SW-42. VxWorks Device Driver. Multifunction I/O (16 bit ADC/DAC, TTL I/O, Counter) Version 2.0.x. User Manual. Issue 2.0.

TPMC851-SW-42. VxWorks Device Driver. Multifunction I/O (16 bit ADC/DAC, TTL I/O, Counter) Version 2.0.x. User Manual. Issue 2.0. The Embedded I/O Company TPMC851-SW-42 VxWorks Device Driver Multifunction I/O (16 bit ADC/DAC, TTL I/O, Counter) Version 2.0.x User Manual Issue 2.0.1 March 2010 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469

More information

TIP675-SW-82. Linux Device Driver. 48 TTL I/O Lines with Interrupts Version 1.2.x. User Manual. Issue November 2013

TIP675-SW-82. Linux Device Driver. 48 TTL I/O Lines with Interrupts Version 1.2.x. User Manual. Issue November 2013 The Embedded I/O Company TIP675-SW-82 Linux Device Driver 48 TTL I/O Lines with Interrupts Version 1.2.x User Manual Issue 1.2.5 November 2013 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany

More information

TPMC868-SW-42. VxWorks Device Driver. 16 Channel Serial PMC. Version 2.1.x. User Manual. Issue December 2011

TPMC868-SW-42. VxWorks Device Driver. 16 Channel Serial PMC. Version 2.1.x. User Manual. Issue December 2011 The Embedded I/O Company TPMC868-SW-42 VxWorks Device Driver 16 Channel Serial PMC Version 2.1.x User Manual Issue 2.1.0 December 2011 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone:

More information

TIP670-SW-95. QNX-Neutrino Device Driver. User Manual. The Embedded I/O Company. Digital I/O. Version 1.0.x. Issue August 2008.

TIP670-SW-95. QNX-Neutrino Device Driver. User Manual. The Embedded I/O Company. Digital I/O. Version 1.0.x. Issue August 2008. The Embedded I/O Company TIP670-SW-95 QNX-Neutrino Device Driver Digital I/O Version 1.0.x User Manual Issue 1.0.0 August 2008 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 Phone: +49 (0) 4101 4058 0 25469 Halstenbek,

More information

TDRV010-SW-95. QNX6 - Neutrino Device Driver. Isolated 2x CAN Bus. Version 1.0.x. User Manual. Issue September 2016

TDRV010-SW-95. QNX6 - Neutrino Device Driver. Isolated 2x CAN Bus. Version 1.0.x. User Manual. Issue September 2016 The Embedded I/O Company TDRV010-SW-95 QNX6 - Neutrino Device Driver Isolated 2x CAN Bus Version 1.0.x User Manual Issue 1.0.2 September 2016 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany

More information

TPMC860-SW-82. Linux Device Driver. 4 Channel Isolated Serial Interface RS232 Version 1.4.x. User Manual. Issue 1.4.

TPMC860-SW-82. Linux Device Driver. 4 Channel Isolated Serial Interface RS232 Version 1.4.x. User Manual. Issue 1.4. The Embedded I/O Company TPMC860-SW-82 Linux Device Driver 4 Channel Isolated Serial Interface RS232 Version 1.4.x User Manual Issue 1.4.4 December 2011 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek,

More information

TPMC Channel Motion Control. User Manual. The Embedded I/O Company. Version 1.0. Issue 1.3 March 2003 D

TPMC Channel Motion Control. User Manual. The Embedded I/O Company. Version 1.0. Issue 1.3 March 2003 D The Embedded I/O Company TPMC118 6 Channel Motion Control Version 1.0 User Manual Issue 1.3 March 2003 D76118800 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone: +49-(0)4101-4058-0

More information

TPMC x ADC, 16x/0x DAC and 8x Digital I/O. Version 1.0. User Manual. Issue May 2018

TPMC x ADC, 16x/0x DAC and 8x Digital I/O. Version 1.0. User Manual. Issue May 2018 The Embedded I/O Company TPMC533 32x ADC, 16x/0x DAC and 8x Digital I/O Version 1.0 User Manual Issue 1.0.1 May 2018 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101 4058

More information

TIP550. Optically Isolated 8/4 Channel 12-bit D/A. Version 1.2. User Manual. Issue October 2009

TIP550. Optically Isolated 8/4 Channel 12-bit D/A. Version 1.2. User Manual. Issue October 2009 The Embedded I/O Company TIP550 Optically Isolated 8/4 Channel 12-bit D/A Version 1.2 User Manual Issue 1.2.0 October 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

TPMC Channel Isolated Serial Interface RS232. Version 1.0. User Manual. Issue August 2017

TPMC Channel Isolated Serial Interface RS232. Version 1.0. User Manual. Issue August 2017 The Embedded I/O Company TPMC860 4 Channel Isolated Serial Interface RS232 Version 1.0 User Manual Issue 1.0.4 August 2017 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

TIP866-SW-95. QNX-Neutrino Device Driver. 8 Channel Serial Interface IP. Version 2.1.x. User Manual. Issue October 2009

TIP866-SW-95. QNX-Neutrino Device Driver. 8 Channel Serial Interface IP. Version 2.1.x. User Manual. Issue October 2009 The Embedded I/O Company TIP866-SW-95 QNX-Neutrino Device Driver 8 Channel Serial Interface IP Version 2.1.x User Manual Issue 2.1.1 October 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany

More information

TPMC815 ARCNET PMC. User Manual. The Embedded I/O Company. Version 2.0. Issue 1.2 November 2002 D

TPMC815 ARCNET PMC. User Manual. The Embedded I/O Company. Version 2.0. Issue 1.2 November 2002 D The Embedded I/O Company TPMC815 ARCNET PMC Version 2.0 User Manual Issue 1.2 November 2002 D76815804 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone: +49-(0)4101-4058-0 Fax: +49-(0)4101-4058-19

More information

TPMC Channel Isolated Serial Interface RS422/RS485. Version 1.0. User Manual. Issue July 2009

TPMC Channel Isolated Serial Interface RS422/RS485. Version 1.0. User Manual. Issue July 2009 The Embedded I/O Company TPMC861 4 Channel Isolated Serial Interface RS422/RS485 Version 1.0 User Manual Issue 1.0.3 July 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0)

More information

TIP Digital Inputs Optically Isolated Version 1.0 Revision A. User Manual. Issue May 1997 D

TIP Digital Inputs Optically Isolated Version 1.0 Revision A. User Manual. Issue May 1997 D TIP605 16 Digital Inputs Optically Isolated Version 1.0 Revision A User Manual Issue 1.0 12 May 1997 D75605800 TEWS DATENTECHNIK GmbH Am Bahnhof 7 D-25469 Halstenbek Germany Tel +49 (0)4101 4058-0 Fax

More information

TPMC816. Two Independent Channels Extended CAN Bus PMC Module. Version 2.2. User Manual. Issue August 2014

TPMC816. Two Independent Channels Extended CAN Bus PMC Module. Version 2.2. User Manual. Issue August 2014 The Embedded I/O Company TPMC816 Two Independent Channels Extended CAN Bus PMC Module Version 2.2 User Manual Issue 2.2.1 August 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone:

More information

CARRIER-SW-42. VxWorks Device Driver. IPAC Carrier. Version 4.2.x. User Manual. Issue July 2018

CARRIER-SW-42. VxWorks Device Driver. IPAC Carrier. Version 4.2.x. User Manual. Issue July 2018 The Embedded I/O Company CARRIER-SW-42 VxWorks Device Driver IPAC Carrier Version 4.2.x User Manual Issue 4.2.0 July 2018 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

TDRV002-SW-82. Linux Device Driver. Multi-Channel Serial Interface Version 1.8.x. User Manual. Issue November 2017

TDRV002-SW-82. Linux Device Driver. Multi-Channel Serial Interface Version 1.8.x. User Manual. Issue November 2017 The Embedded I/O Company TDRV002-SW-82 Linux Device Driver Multi-Channel Serial Interface Version 1.8.x User Manual Issue 1.8.3 November 2017 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany

More information

TPMC310. Conduction Cooled PMC Isolated 2 x CAN Bus. Version 1.1. User Manual. Issue June 2014

TPMC310. Conduction Cooled PMC Isolated 2 x CAN Bus. Version 1.1. User Manual. Issue June 2014 The Embedded I/O Company TPMC310 Conduction Cooled PMC Isolated 2 x CAN Bus Version 1.1 User Manual Issue 1.1.6 June 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

TPMC500. Optically Isolated 32 Channel 12 Bit ADC. Version 1.1. User Manual. Issue January 2014

TPMC500. Optically Isolated 32 Channel 12 Bit ADC. Version 1.1. User Manual. Issue January 2014 The Embedded I/O Company TPMC500 Optically Isolated 32 Channel 12 Bit ADC Version 1.1 User Manual Issue 1.1.9 January 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

TPCE260. PCI Express PMC Carrier. Version 1.0. User Manual. Issue August 2014

TPCE260. PCI Express PMC Carrier. Version 1.0. User Manual. Issue August 2014 The Embedded I/O Company TPCE260 PCI Express PMC Carrier Version 1.0 User Manual Issue 1.0.1 August 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101 4058 0 Fax: +49

More information

TPMC680-SW-82. Linux Device Driver. 64 Digital Input/Output Version 1.1.x. User Manual. Issue April 2010

TPMC680-SW-82. Linux Device Driver. 64 Digital Input/Output Version 1.1.x. User Manual. Issue April 2010 The Embedded I/O Company TPMC680-SW-82 Linux Device Driver 64 Digital Input/Output Version 1.1.x User Manual Issue 1.1.3 April 2010 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone:

More information

TPMC /8 Digital Inputs (24V) 16/8 Digital Outputs (24V, 0.5A) Version 3.0. User Manual. Issue June 2014

TPMC /8 Digital Inputs (24V) 16/8 Digital Outputs (24V, 0.5A) Version 3.0. User Manual. Issue June 2014 The Embedded I/O Company TPMC670 16/8 Digital Inputs (24V) 16/8 Digital Outputs (24V, 0.5A) Version 3.0 User Manual Issue 3.0.0 June 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone:

More information

TCP866-SW-82. Linux Device Driver. User Manual. The Embedded I/O Company. 8 Channel Serial PMC Version 1.0.x. Issue 1.

TCP866-SW-82. Linux Device Driver. User Manual. The Embedded I/O Company. 8 Channel Serial PMC Version 1.0.x. Issue 1. The Embedded I/O Company TCP866-SW-82 Linux Device Driver 8 Channel Serial PMC Version 1.0.x User Manual Issue 1.0 December 2003 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone: +49-(0)4101-4058-0

More information

TPMC810. Isolated 2x CAN Bus. Version 1.1. User Manual. Issue June 2009

TPMC810. Isolated 2x CAN Bus. Version 1.1. User Manual. Issue June 2009 The Embedded I/O Company TPMC810 Isolated 2x CAN Bus Version 1.1 User Manual Issue 1.1.6 June 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone: +49-(0)4101-4058-0 Fax: +49-(0)4101-4058-19

More information

TPMC Digital Inputs/Outputs (Bit I/O) Version 2.0. User Manual. Issue February 2014

TPMC Digital Inputs/Outputs (Bit I/O) Version 2.0. User Manual. Issue February 2014 The Embedded I/O Company TPMC681 64 Digital Inputs/Outputs (Bit I/O) Version 2.0 User Manual Issue 2.0.0 February 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

TIP120. Motion Controller with Incremental Encoder Interface. Version 1.0. User Manual. Issue August 2014

TIP120. Motion Controller with Incremental Encoder Interface. Version 1.0. User Manual. Issue August 2014 The Embedded I/O Company TIP120 Motion Controller with Incremental Encoder Interface Version 1.0 User Manual Issue 1.0.5 August 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany www.tews.com

More information

CARRIER-SW-82. Linux Device Driver. IPAC Carrier Version 2.2.x. User Manual. Issue November 2017

CARRIER-SW-82. Linux Device Driver. IPAC Carrier Version 2.2.x. User Manual. Issue November 2017 The Embedded I/O Company CARRIER-SW-82 Linux Device Driver IPAC Carrier Version 2.2.x User Manual Issue 2.2.0 November 2017 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0)

More information

TIP111. Motion Controller with Absolute Encoder Interface (SSI) User Manual. The Embedded I/O Company. Version 1.1. Issue 1.4 September 2005 D

TIP111. Motion Controller with Absolute Encoder Interface (SSI) User Manual. The Embedded I/O Company. Version 1.1. Issue 1.4 September 2005 D The Embedded I/O Company TIP111 Motion Controller with Absolute Encoder Interface (SSI) Version 1.1 User Manual Issue 1.4 September 2005 D75111800 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek /

More information

TPMC810-SW-82. Linux Device Driver. User Manual. The Embedded I/O Company. Isolated 2x CAN Bus Version 1.2.x. Issue 1.2.

TPMC810-SW-82. Linux Device Driver. User Manual. The Embedded I/O Company. Isolated 2x CAN Bus Version 1.2.x. Issue 1.2. The Embedded I/O Company TPMC810-SW-82 Linux Device Driver Isolated 2x CAN Bus Version 1.2.x User Manual Issue 1.2.0 January 2006 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek / Germany Phone: +49-(0)4101-4058-0

More information

TDRV011-SW-82. Linux Device Driver. Extended CAN Bus Version 1.0.x. User Manual. Issue April 2018

TDRV011-SW-82. Linux Device Driver. Extended CAN Bus Version 1.0.x. User Manual. Issue April 2018 The Embedded I/O Company TDRV011-SW-82 Linux Device Driver Extended CAN Bus Version 1.0.x User Manual Issue 1.0.6 April 2018 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0)

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

TPMC917-SW-82. Linux Device Driver. User Manual. The Embedded I/O Company. 4 MB SRAM with Battery Backup and 4 Channel Serial Interface Version 1.0.

TPMC917-SW-82. Linux Device Driver. User Manual. The Embedded I/O Company. 4 MB SRAM with Battery Backup and 4 Channel Serial Interface Version 1.0. The Embedded I/O Company TPMC917-SW-82 Linux Device Driver 4 MB SRAM with Battery Backup and 4 Channel Serial Interface Version 1.0.x User Manual Issue 1.0.1 November 2006 TEWS TECHNOLOGIES GmbH Am Bahnhof

More information

TXMC885. Four Channel 10/100/1000 Mbit/s Ethernet Adapter. Version 1.0. User Manual. Issue October 2011

TXMC885. Four Channel 10/100/1000 Mbit/s Ethernet Adapter. Version 1.0. User Manual. Issue October 2011 The Embedded I/O Company TXMC885 Four Channel 10/100/1000 Mbit/s Ethernet Adapter Version 1.0 User Manual Issue 1.0.0 October 2011 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49

More information

TIP SERCOS IP with 2 Encoder Interfaces. User Manual. The Embedded I/O Company. Version 1.0. Issue 1.3 September 2006 D

TIP SERCOS IP with 2 Encoder Interfaces. User Manual. The Embedded I/O Company. Version 1.0. Issue 1.3 September 2006 D The Embedded I/O Company TIP812-20 SERCOS IP with 2 Encoder Interfaces Version 1.0 User Manual Issue 1.3 September 2006 D75812820 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 Phone: +49-(0)4101-4058-0 25469 Halstenbek,

More information

ICS-121. VxWORKS DEVICE DRIVER MANUAL

ICS-121. VxWORKS DEVICE DRIVER MANUAL ICS-121 VxWORKS DEVICE DRIVER MANUAL Interactive Circuits And Systems Ltd. February 1999 The information in this manual has been carefully checked and is believed to be reliable; however, no responsibility

More information

TPMC / 16 Channels of 16 bit D/A. Version 1.0. User Manual. Issue December 2010

TPMC / 16 Channels of 16 bit D/A. Version 1.0. User Manual. Issue December 2010 The Embedded I/O Company TPMC553 32 / 16 Channels of 16 bit D/A Version 1.0 User Manual Issue 1.0.3 December 2010 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101 4058

More information

TPMC Channel Serial Interface RS232/RS422. Version 1.0. User Manual. Issue August 2014

TPMC Channel Serial Interface RS232/RS422. Version 1.0. User Manual. Issue August 2014 The Embedded I/O Company TPMC460 16 Channel Serial Interface RS232/RS422 Version 1.0 User Manual Issue 1.0.6 August 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany www.tews.com Phone:

More information

TIP815. ARCNET Controller. Version 1.0. User Manual. Issue September 2009

TIP815. ARCNET Controller. Version 1.0. User Manual. Issue September 2009 The Embedded I/O Company TIP815 ARCNET Controller Version 1.0 User Manual Issue 1.0.7 September 2009 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101 4058 0 Fax: +49 (0)

More information

PRODUCT OVERVIEW ISSUE 4

PRODUCT OVERVIEW ISSUE 4 THE EMBEDDED I/O COMPANY PRODUCT OVERVIEW ISSUE 4 CPU CARRIERS IP CARRIERS PMC CARRIERS COMMUNICATION USER-PROGRAMMABLE FPGA ETHERNET FIELDBUS DIGITAL I/O ANALOG I/O MEMORY MOTION CONTROL PC CARD/CARDBUS

More information

TPMC Channel Serial Interface RS232/RS422. Version 1.0. User Manual. Issue August 2014

TPMC Channel Serial Interface RS232/RS422. Version 1.0. User Manual. Issue August 2014 The Embedded I/O Company TPMC461 8 Channel Serial Interface RS232/RS422 Version 1.0 User Manual Issue 1.0.6 August 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany www.tews.com Phone:

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

Data Acquisition ATDAQ DLL. Windows 3.11/95/98/NT/2000 Software Drivers for ATAO and ATDAQ Cards FUNCTION REFERENCE MANUAL

Data Acquisition ATDAQ DLL. Windows 3.11/95/98/NT/2000 Software Drivers for ATAO and ATDAQ Cards FUNCTION REFERENCE MANUAL Manual 2 of 2 Data Acquisition Windows 3.11/95/98/NT/2000 Software Drivers for ATAO and ATDAQ Cards FUNCTION REFERENCE MANUAL VER. 5.0 MAY 2000 No part of this manual may be reproduced without permission

More information

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 IpTest WDF Driver Documentation For the IP-Test module Developed

More information

Advcan QNX Driver User Manual V1.02

Advcan QNX Driver User Manual V1.02 Advcan QNX Driver User Manual V1.02 Contents 1. Introduction...1 1.1. System Requirement...1 1.2. Driver configuration...1 2. AdvCan Data Structures...2 2.1. Canmsg_t Struct Reference...2 2.2. CanStatusPar

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 PmcPario Driver Documentation Win32 Driver Model Revision A Corresponding

More information

ECEN 449 Microprocessor System Design. Hardware-Software Communication. Texas A&M University

ECEN 449 Microprocessor System Design. Hardware-Software Communication. Texas A&M University ECEN 449 Microprocessor System Design Hardware-Software Communication 1 Objectives of this Lecture Unit Learn basics of Hardware-Software communication Memory Mapped I/O Polling/Interrupts 2 Motivation

More information

VxWorks Device Driver User s Manual

VxWorks Device Driver User s Manual . Chandler/May, Inc. CMI 125 West Park Loop Huntsville, AL 36806 Phone 256.722.0175 Fax 256.722.0144 VxWorks Device Driver User s Manual.......... VxWorks Device Driver Software for the General Standards

More information

spwr_base & spwr_chan

spwr_base & spwr_chan DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 spwr_base & spwr_chan Linux Driver Documentation Manual Revision

More information

11/3/71 SYS MOUNT (II) sys mount; special; name / mount = 21.; not in assembler

11/3/71 SYS MOUNT (II) sys mount; special; name / mount = 21.; not in assembler 11/3/71 SYS MOUNT (II) SYNOPSIS mount -- mount file system sys mount; special; name / mount = 21.; not in assembler mount announces to the system that a removable file system has been mounted on special

More information

11/3/71 SYS BREAK (II)

11/3/71 SYS BREAK (II) 11/3/71 SYS BREAK (II) break -- set program break SYNOPSIS sys break; addr / break = 17. break sets the system s idea of the highest location used by the program to addr. Locations greater than addr and

More information

ACLS-LVIEW. LabVIEW Interfaces for NuDAQ ISA-Bus Cards, Windows 3.1/95/NT User s Guide

ACLS-LVIEW. LabVIEW Interfaces for NuDAQ ISA-Bus Cards, Windows 3.1/95/NT User s Guide ACLS-LVIEW LabVIEW Interfaces for NuDAQ ISA-Bus Cards, Windows 3.1/95/NT User s Guide @Copyright 1998~2000 ADLink Technology Inc. All Rights Reserved. Manual Rev. 3.12:June 25, 2000 The information in

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 PB3Hw1 Driver Documentation Win32 Driver Model Revision A Corresponding

More information

DYNAMIC ENGINEERING 150 DuBois St Suite 3, Santa Cruz CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St Suite 3, Santa Cruz CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St Suite 3, Santa Cruz CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 User Manual PCI-Altera-485 Driver Documentation CSC Version

More information

PMC-BiSerial-III SDLC 8-Channel SDLC Interface

PMC-BiSerial-III SDLC 8-Channel SDLC Interface DYNAMIC ENGINEERING 150 DuBois St. Suite C Santa Cruz CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 Software User s Guide (Linux) PMC-BiSerial-III SDLC 8-Channel

More information

Input & Output 1: File systems

Input & Output 1: File systems Input & Output 1: File systems What are files? A sequence of (usually) fixed sized blocks stored on a device. A device is often refered to as a volume. A large device might be split into several volumes,

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 ip_gen Linux Driver Documentation Revision A ip_gen Linux

More information

IP-48DAC channel 16-bit Digital/Analog Converter With memory Industry Pack Module PROGRAMMING MANUAL Version 1.

IP-48DAC channel 16-bit Digital/Analog Converter With memory Industry Pack Module PROGRAMMING MANUAL Version 1. IP-48DAC-16 48-channel 16-bit Digital/Analog Converter With memory Industry Pack Module PROGRAMMING MANUAL 828-10-000-4000 Version 1.0 January 2007 ALPHI TECHNOLOGY CORPORATION 1898 E. Southern Ave Tempe,

More information

Input / Output. Kevin Webb Swarthmore College April 12, 2018

Input / Output. Kevin Webb Swarthmore College April 12, 2018 Input / Output Kevin Webb Swarthmore College April 12, 2018 xkcd #927 Fortunately, the charging one has been solved now that we've all standardized on mini-usb. Or is it micro-usb? Today s Goals Characterize

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 IpGeneric WDF Driver Documentation Developed with Windows

More information

Embedded Systems Programming

Embedded Systems Programming Embedded Systems Programming x86 Memory and Interrupt (Module 8) Yann-Hang Lee Arizona State University yhlee@asu.edu (480) 727-7507 Summer 2014 X86 ISA Data Representations Little-endian byte ordering

More information

CHAPI/VAX-Qbus. The CHARON-VAX Application Programming Interface (CHAPI) for Qbus peripheral emulation in Windows

CHAPI/VAX-Qbus. The CHARON-VAX Application Programming Interface (CHAPI) for Qbus peripheral emulation in Windows CHAPI/VAX-Qbus The CHARON-VAX Application Programming Interface (CHAPI) for Qbus peripheral emulation in Windows CHAPI/VAX-Qbus The CHARON-VAX Application Programming Interface (CHAPI) for Qbus peripheral

More information

TCP Channel Serial Interface RS232/RS422. Version 1.0. User Manual. Issue August 2014

TCP Channel Serial Interface RS232/RS422. Version 1.0. User Manual. Issue August 2014 The Embedded I/O Company TCP462 4 Channel Serial Interface RS232/RS422 Version 1.0 User Manual Issue 1.0.6 August 2014 TEWS TECHNOLOGIES GmbH Am Bahnhof 7 25469 Halstenbek, Germany Phone: +49 (0) 4101

More information

CPCI-16AIO Channel 16-Bit Analog I/O CPCI Board With 8 Input Channels, 8 Output Channels, and Auto calibration

CPCI-16AIO Channel 16-Bit Analog I/O CPCI Board With 8 Input Channels, 8 Output Channels, and Auto calibration CPCI-16AIO-88 16-Channel 16-Bit Analog I/O CPCI Board With 8 Input Channels, 8 Output Channels, and Auto calibration Features Include: 8 Analog Output Channels with a 16-Bit D/A Converter per Channel 16-Bit

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

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

OPTO32A 24 Input Bit, 8 Output Bit Optical Isolator Board

OPTO32A 24 Input Bit, 8 Output Bit Optical Isolator Board OPTO32A 24 Input Bit, 8 Output Bit Optical Isolator Board PMC-OPTO32A Linux Device Driver User Manual Manual Revision: July 15, 2005 General Standards Corporation 8302A Whitesburg Drive Huntsville, AL

More information

DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 PCIeBiSerialDb37-LM9 Linux Driver lm9_base & lm9_chan Linux

More information

Arbitrary Pulse Generator / PC Pattern Generator PPG-100. Operating Manual V 1. 2

Arbitrary Pulse Generator / PC Pattern Generator PPG-100. Operating Manual V 1. 2 Becker & Hickl GmbH Nahmitzer Damm 30 12277 Berlin Germany Tel.: +49 / 30 / 787 56 32 Fax: +49 / 30 / 787 57 34 Email: support@becker-hickl.de http://www.becker-hickl.de 26.10.99 Arbitrary Pulse Generator

More information

DYNAMIC ENGINEERING 150 DuBois, Suite C, Santa Cruz, CA Fax Est

DYNAMIC ENGINEERING 150 DuBois, Suite C, Santa Cruz, CA Fax 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 IpPlr Driver Documentation Win32 Driver Model Revision B Corresponding

More information

Small Logger File System

Small Logger File System Small Logger File System (http://www.tnkernel.com/) Copyright 2011 Yuri Tiomkin Document Disclaimer The information in this document is subject to change without notice. While the information herein is

More information

Computer System Overview OPERATING SYSTEM TOP-LEVEL COMPONENTS. Simplified view: Operating Systems. Slide 1. Slide /S2. Slide 2.

Computer System Overview OPERATING SYSTEM TOP-LEVEL COMPONENTS. Simplified view: Operating Systems. Slide 1. Slide /S2. Slide 2. BASIC ELEMENTS Simplified view: Processor Slide 1 Computer System Overview Operating Systems Slide 3 Main Memory referred to as real memory or primary memory volatile modules 2004/S2 secondary memory devices

More information

Computer System Overview

Computer System Overview Computer System Overview Operating Systems 2005/S2 1 What are the objectives of an Operating System? 2 What are the objectives of an Operating System? convenience & abstraction the OS should facilitate

More information

Sequential Block File Manager (SBF)

Sequential Block File Manager (SBF) Sequential Block File Manager (SBF) SBF General Description The Sequential Block File Manager (SBF) is a re-entrant subroutine package for I/O service requests to sequential block-oriented mass storage

More information

Inter-Process Communication and Synchronization of Processes, Threads and Tasks: Lesson-1: PROCESS

Inter-Process Communication and Synchronization of Processes, Threads and Tasks: Lesson-1: PROCESS Inter-Process Communication and Synchronization of Processes, Threads and Tasks: Lesson-1: PROCESS 1 Process Concepts 2 Process A process consists of executable program (codes), state of which is controlled

More information

I/O Devices. Nima Honarmand (Based on slides by Prof. Andrea Arpaci-Dusseau)

I/O Devices. Nima Honarmand (Based on slides by Prof. Andrea Arpaci-Dusseau) I/O Devices Nima Honarmand (Based on slides by Prof. Andrea Arpaci-Dusseau) Hardware Support for I/O CPU RAM Network Card Graphics Card Memory Bus General I/O Bus (e.g., PCI) Canonical Device OS reads/writes

More information

I/O Management Intro. Chapter 5

I/O Management Intro. Chapter 5 I/O Management Intro Chapter 5 1 Learning Outcomes A high-level understanding of the properties of a variety of I/O devices. An understanding of methods of interacting with I/O devices. 2 I/O Devices There

More information

L76-L I2C Application Note

L76-L I2C Application Note GNSS Module Series Rev. L76-L_I2C_Application_Note_V1.0 Date: 2016-09-14 www.quectel.com Our aim is to provide customers with timely and comprehensive service. For any assistance, please contact our company

More information

High Performance Real-Time Operating Systems

High Performance Real-Time Operating Systems High Performance Real-Time Operating Systems Flash Translation Layer User s Guide and Reference Manual Support Copyright Copyright (C) 2013 by SCIOPTA Systems AG. All rights reserved. No part of this publication

More information

ECE 485/585 Microprocessor System Design

ECE 485/585 Microprocessor System Design Microprocessor System Design Lecture 3: Polling and Interrupts Programmed I/O and DMA Interrupts Zeshan Chishti Electrical and Computer Engineering Dept Maseeh College of Engineering and Computer Science

More information

Overview: Functional Description:

Overview: Functional Description: CPCI-ADADIO 12-Channel 16-Bit Analog I/O CPCI Card With 8 Simultaneous Input Channels at 200K Samples per Second per Channel, 4 Output Channels, and Byte-Wide Digital I/O Port Features Include: 8 Analog

More information

VxWorks Device Driver User s Manual

VxWorks Device Driver User s Manual . Chandler/May, Inc. CMI 125 West Park Loop Huntsville, AL 36806 Phone 256.722.0175 Fax 256.722.0144 VxWorks Device Driver User s Manual.......... VxWorks Device Driver Software for the General Standards

More information

EE 472 Embedded Systems. Name solutions. Instructions:

EE 472 Embedded Systems. Name solutions. Instructions: Name solutions Instructions: Write your name and student id on every page. You may not consult any other materials or anyone in the class. If you are unsure of what a question is asking, write your assumptions

More information

tekdxfxsl FibreXtreme I/O Interface

tekdxfxsl FibreXtreme I/O Interface RACEway/RACE++ I/O Controllers tekdxfxsl FibreXtreme I/O Interface User s Manual TEK/TM-32514 13 February 2002 TEK Microsystems has made every effort to ensure that this document is accurate and complete.

More information

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment FAST SHIPPING AND DELIVERY TENS OF THOUSANDS OF IN-STOCK ITEMS EQUIPMENT DEMOS HUNDREDS OF MANUFACTURERS SUPPORTED

More information

The CCB gpio-104 device-driver

The CCB gpio-104 device-driver The CCB gpio-104 device-driver [Document number: A48001N007, revision 1] Martin Shepherd California Institute of Technology December 29, 2005 This page intentionally left blank. Abstract The gpio-104 board

More information

File Access. FILE * fopen(const char *name, const char * mode);

File Access. FILE * fopen(const char *name, const char * mode); File Access, K&R 7.5 Dealing with named files is surprisingly similar to dealing with stdin and stdout. Start by declaring a "file pointer": FILE *fp; /* See Appendix B1.1, pg. 242 */ header

More information

Goals of this Lecture

Goals of this Lecture I/O Management 1 Goals of this Lecture Help you to learn about: The Unix stream concept Standard C I/O functions Unix system-level functions for I/O How the standard C I/O functions use the Unix system-level

More information

MOTENC-Lite 4-Axis PCI Motion & I/O Control Board. Reference Manual Rev 1.1, June 20, Copyright 2005 VITAL Systems Inc

MOTENC-Lite 4-Axis PCI Motion & I/O Control Board. Reference Manual Rev 1.1, June 20, Copyright 2005 VITAL Systems Inc MOTENC-Lite 4-Axis PCI Motion & I/O Control Board Reference Manual Rev 1.1, June 20, 2005 Copyright 2005 VITAL Systems Inc www.vitalsystem.com This Page Intentionally Left Blank Table of Contents 1. OVERVIEW...

More information

PMC-DA Channel 16 Bit D/A for PMC Systems REFERENCE MANUAL Version 1.0 June 2001

PMC-DA Channel 16 Bit D/A for PMC Systems REFERENCE MANUAL Version 1.0 June 2001 PMC-DA816 8 Channel 16 Bit D/A for PMC Systems REFERENCE MANUAL 796-10-000-4000 Version 1.0 June 2001 ALPHI TECHNOLOGY CORPORATION 6202 S. Maple Avenue #120 Tempe, AZ 85283 USA Tel: (480) 838-2428 Fax:

More information