Dual Protocol Communication - Linux drivers for Dual Protocol support -

Version 1.0.0

eQ-3 Entwicklung GmbH Maiburger Str. 36 26789 Leer Phone: +49 (0)491 6008 700 Fax: +49 (0)491 6008 99 700 Internet: www.eQ-3.de

Technical Documentation Department: R&D

1.2 Research & Development

Version: 1.0.0 Page: 2 / 16

Table of content About ....................................................................................................... 5 1.1 1.2 1.3 1.4 1.5

Scope ....................................................................................................................................... 5 Purpose of this document ....................................................................................................... 5 Not purpose of this document ................................................................................................ 5 Document history .................................................................................................................... 6 Conventions in this document................................................................................................. 7

Low latency serial driver........................................................................... 8 2.1

2.2

2.3

2.4

Serial communication parameters .......................................................................................... 8 Constraints....................................................................................................................... 8 Parameters ...................................................................................................................... 8 Driver operation ...................................................................................................................... 8 General ............................................................................................................................ 8 Userspace connections .................................................................................................... 8 Open ................................................................................................................................ 9 Close ................................................................................................................................ 9 Write ................................................................................................................................ 9 Read operation ................................................................................................................ 9 Ioctl operation ................................................................................................................. 9 Poll operation ................................................................................................................ 10 Timing requirements ............................................................................................................. 10 Definitions ..................................................................................................................... 10 Requirements ................................................................................................................ 11 Supporting another hardware platform ................................................................................ 11 Porting the reference driver .......................................................................................... 11 Build and runtime integration ....................................................................................... 12

Character loopback driver .......................................................................15 3.1 3.2 3.3

Date of Approval:

Supported platforms ............................................................................................................. 15 Operation overview ............................................................................................................... 15 Build and runtime integration ............................................................................................... 15 Kconfig sample .............................................................................................................. 15 Makefile sample ............................................................................................................ 16

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D

1.2 Research & Development

List of figures Es konnten keine Einträge für ein Abbildungsverzeichnis gefunden werden.

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Version: 1.0.0 Page: 3 / 16

Technical Documentation Department: R&D

1.2 Research & Development

Version: 1.0.0 Page: 4 / 16

List of tables Table 1: Document history ...................................................................................................................... 6 Table 2: UART Settings ............................................................................................................................ 8

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 1 2

1.2 Research & Development

Version: 1.0.0 Page: 5 / 16

About 1.1 Scope

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

The wireless communication protocols of HomeMatic and Homematic IP are not compatible to each other; so that the devices of the different systems are not able to communicate directly. The connection between the systems shall be made by integrating both protocols in one central control unit. Due to resource limitations in the coprocessor the implementation of the protocols has to be split into two parts: coprocessor and multimacd (which is running on the main processor on a Linux system). For seamless integration with existing software and for low-latency communication between host CPU and coprocessor, two custom drivers are needed. In order to meet timing requirements a low-latency UART communication channel is necessary between multimacd and the coprocessor. The standard Linux serial drivers induce latency of up to several hundred milliseconds and thus cannot be used for this purpose. To overcome this limitation a custom “low latency serial” driver is needed. A second “character loopback” driver is needed to allow the creation of virtual serial devices by multimacd in order to be used by the application layer (rfd and friends). Using this approach, the communication with multimacd doesn’t differ from the communication with a “real” coprocessor from the point of view of the application layer. This document contains detailed information and implementation hints for both drivers.

21

1.2 Purpose of this document

22 23 24

This document is designed primarily for the use in the product design and implementation, to be used as part of building a dual protocol communication platform.

25

1.3 Not purpose of this document

26 27 28

This document doesn’t contain the descriptions of the individual firm- and software-implementation. Furthermore this document is NOT to be used in the context of marketing.

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 29

1.2 Research & Development

1.4 Document history

30 Version 1.0.0

31 32

Date 10-Aug-2015

Editor L. Reemts

Comment Initial release.

Table 1: Document history

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Version: 1.0.0 Page: 6 / 16

Technical Documentation Department: R&D

1.2 Research & Development

Version: 1.0.0 Page: 7 / 16

33

1.5 Conventions in this document

34 35 36 37 38 39

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in [Bradner, Scott, “Key words for use in RFCs to Indicate Requirement Levels”, BCP 14, RFC 2119, March 1997]. The word “Byte” is used to denote an 8-bit value or field.

40

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 41 42

51 52 53 54

Page: 8 / 16

2.1 Serial communication parameters Constraints     

given by existing coprocessor hardware given by existing coprocessor implementations reuse existing coprocessor bootloaders reuse existing coprocessor update tools meet latency requirements

Parameters

49 50

1.0.0

Low latency serial driver

43 44 45 46 47 48

1.2 Research & Development

Version:

2.1.2.1 UART settings    

Baudrate: 115200 bit/s Databits: 8 Parity: None Stopbits: 1 Baudrate Databits Parity Stopbits

55

115200 8 None 1

Table 2: UART Settings

56

2.1.2.2 Character and frame timing

57 58 59 60

The following timings are guaranteed by the coprocessor in the direction from coprocessor to driver. The purpose is to enable the driver to detect the end of a serial frame using an RX timeout interrupt.  Maximum time between consecutive bytes of the same serial frame: 30 bit times  Minimum time between consecutive frames: 40 bit times

61

2.2 Driver operation

62 63 64 65 66 67 68 69 70

General The low latency serial driver is responsible for one or more UART ports of the SoC. For each supported UART port there SHALL be a kernel configuration option for assigning the low latency driver or the standard TTY driver to the respective port. For each UART port under control of the low latency driver one device node in the /dev directory SHALL be created.

Userspace connections The driver MUST be able to handle multiple concurrent connections from user space. Each user space connection is started by a call to open(). Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D

1.2 Research & Development

Version: 1.0.0 Page: 9 / 16

71

2.2.2.1 Connection priorities

72 73 74 75 76 77

Each connection has a 32bit priority value assigned to it. Initially (right after opening) the priority is 0. It can be set to an other value via ioctl. Priority values are only important for write operations. If while a write operation is in progress a write from a higher priority connection is requested, the current write is aborted and the higher priority write is started instead. By virtue of application level framing, the partially transferred frame from the interrupted write operation is implicitly discarded by the coprocessor.

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

Open When the first user space connection to a port is opened, the respective port is enabled. An instance of struct per_connection_data is created and stored in the corresponding struct file::private_data. The instance of struct per_connection_data is used by all subsequent driver API calls for identifying the connection.

Close When the last user space connection to a port is closed, the respective port is disabled. The instance of struct per_connection_data identifying the connection is deleted.

Write Write operations are synchronous waiting until the complete buffer is transferred. write() MUST perform the following steps  wait until the transmitter becomes available (because a same or higher priority write might be in progress)  start writing to the UART FIFO  wait until the last byte has been transferred to the FIFO If a write operation was interrupted, the number of bytes actually transferred to the TXD line must be returned. It is the responsibility of the user space application to repeat the complete write operation in this case.

Read operation Read operations are not required to arbitrate between multiple connections. The driver may assume that only one call to read() is active at any given time. The driver SHOULD implement one read buffer per UART port. Read MUST be able to handle blocking I/O as well as non blocking I/O.

Ioctl operation The following ioctls must be implemented:  IOCSPRIORITY = _IOW('u', 1, unsigned long) Sets the priority of the current connection to the value passed  IOCGPRIORITY = _IOR('u', 2, unsigned long) Queries the priority of the current connection Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

1.2 Research & Development

Version: 1.0.0 Page: 10 / 16

The following ioctls are a subset of standard TTY ioctls and SHOULD be implemented for better compatibility to special purpose user space software, especially software written in Java and using the RXTX communication library:  TCSETS Set the termios settings for the port. The termios setting SHOULD be stored and returned when TCGETS is requested.  TCGETS Get the termios settings for the port. The stored settings from the last TCSETS SHOULD be returned.  TIOCINQ Get the size of the RX queue. The driver SHALL return the number of bytes that can be read without blocking.  TIOCEXCL Request exclusive use. The driver SHOULD report successful completion on this ioctl and is NOT REQUIRED to do anything else.  TCFLSH Flush the output buffer. The driver SHOULD report successful completion on this ioctl and is NOT REQUIRED to do anything else.  TIOCMGET Get the states of the modem control lines. The driver SHOULD return TIOCM_DSR | TIOCM_CD | TIOCM_CTS  TIOCMSET Set the states of the modem control lines. The driver SHOULD report successful completion on this ioctl and is NOT REQUIRED to do anything else.

Poll operation

133 134 135 136 137 138 139 140

If either no write or a lower priority write is in progress, poll() SHOULD return POLLOUT | POLLWRNORM indicating writable. Alternatively, poll() MAY always return POLLOUT | POLLWRNORM. If at least one character is in the RX queue, poll() SHALL return POLLIN | POLLRDNORM indicating readable. Separate wait queues SHALL be used for read and write.

141

2.3 Timing requirements Definitions

142 143 144 145 146 147

 

TX latency Delay time from driver write operation until the start of first byte on the TXD line RX latency Delay time from end of the last frame byte on the RXD line until the user space application is notified

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 148

1.2 Research & Development

The sum of TX latency and RX latency should be below 5ms.

150

2.4 Supporting another hardware platform

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186

1.0.0 Page: 11 / 16

Requirements

149

151

Version:

Porting the reference driver When implementing a low latency driver for a new platform, the driver implementation used in the HomeMatic CCU2 MAY be used as a reference. The CCU2 driver targets the Freescale i.MX28 application UART (AUART). It is named mxs_raw_auart.c The reference driver directly controls the AUART registers and FIFOs. No DMA is used because further latencies would be incurred. As first step in porting “mxs_raw_auart” SHOULD be searched and replaced by something better describing the new target hardware. The following functions are hardware dependent and MUST be adapted:  mxs_raw_auart_stop_txie() Masks the TX interrupt. After calling this function, no TX interrupt will occur.  mxs_raw_auart_tx_chars() Fills the TX hardware FIFO. The driver uses the define TX_CHUNK_SIZE for the maximum number of bytes put into the TX FIFO at once. Increasing TX_CHUNK_SIZE will also increase the TX latency for a high priority frame interrupting a low priority frame. Decreasing TX_CHUNK_SIZE will increase CPU overhead. For the i.MX28 hardware there is also a dependency between TX_CHUNK_SIZE and the TX FIFO interrupt threshold. TX_CHUNK_SIZE must be big enough to make sure that the TX FIFO is always filled beyond the threshold, otherwise the TX interrupt might not be triggered.  mxs_raw_auart_rx_chars() and mxs_raw_auart_rx_char() These functions empty the RX FIFO.  mxs_raw_auart_irq_handle() Interrupt dispatcher. Checks if RX or TX interrupt was triggered and calls mxs_raw_auart_rx_chars() and mxs_raw_auart_rx_chars() as needed.  mxs_raw_auart_reset() Resets the UART controller. Called on initialization of the driver.  mxs_raw_auart_startup() Enables a UART port. Called from mxs_raw_auart_open() for the first user space connection.  mxs_raw_auart_shutdown() Disables a UART port. Called from mxs_raw_auart_close() when the last user space connection is closed.  mxs_raw_auart_start_tx() Enabled the transmitter, enables the TX FIFO interrupt and calls mxs_raw_auart_tx_chars() in order to transfer the first chunk of TX bytes to the FIFO.

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 187 188 189 190



1.2 Research & Development

Version: 1.0.0 Page: 12 / 16

mxs_raw_auart_read_procmem() Optional function exporting debug information via the proc filesystem. In this function the first block outputting the AUART registers MUST be changed.

Build and runtime integration

191 192 193 194 195 196 197 198 199

After porting the driver source code, it must be made sure that the driver is compiled and called. This involves the following steps:  Add configuration options for the new driver to drivers/char/Kconfig.  Add the new driver to drivers/char/Makefile.  Create a platform device for every supported port depending on the new configuration options. Make sure that the new driver doesn’t possibly conflict with the standard UART driver. Depending on kernel version and platform the platform device has to be created in the board “.c” file or via device tree.

200

2.4.2.1 Kconfig sample

201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223

For the i.MX28 driver on the CCU2, the following options were added to drivers/char/Kconfig

224

2.4.2.2 Makefile sample

225 226 227

For the i.MX28 driver on the CCU2, the following line was added to drivers/char/Makefile

config MXS_RAW_AUART tristate "iMX28 AUART raw driver" depends on ARCH_MXS help This driver supports the MXS Application UART (AUART) port as raw character device. config MXS_RAW_AUART_PORT0 bool "Use iMX28 AUART raw driver for AUART0" depends on MXS_RAW_AUART default n help Attach the MXS Application UART raw character device to AUART0 config MXS_RAW_AUART_PORT1 bool "Use iMX28 AUART raw driver for AUART1" depends on MXS_RAW_AUART default y help Attach the MXS Application UART raw character device to AUART1

obj-$(CONFIG_MXS_RAW_AUART)

Date of Approval:

+= mxs_raw_auart.o

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D

1.2 Research & Development

Version: 1.0.0 Page: 13 / 16

228

2.4.2.3 Board file sample

229 230

For the i.MX28 driver on the CCU2, the following code was added to arch/arm/mach-mxs/eq3ccu2/ccu2.c

231

2.4.2.3.1 Binding of hardware resources

232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254

static struct resource mxs_raw_auart0_resources[] = { { .start = MX28_AUART0_BASE_ADDR, .end = MX28_AUART0_BASE_ADDR + 0x100 - 1, .flags = IORESOURCE_MEM, }, { .start = MX28_INT_AUART0, .end = MX28_INT_AUART0, .flags = IORESOURCE_IRQ, } };

255

2.4.2.3.2 Definition of the platform device

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275

static struct platform_device ccu2_devices[] = { […] #if defined(CONFIG_MXS_RAW_AUART) || defined(CONFIG_MXS_RAW_AUART_MODULE) #if defined(CONFIG_MXS_RAW_AUART_PORT0) { .name = "mxs-raw-auart", .id = 0, .resource = mxs_raw_auart0_resources, .num_resources = ARRAY_SIZE(mxs_raw_auart0_resources), }, #endif #if defined(CONFIG_MXS_RAW_AUART_PORT1) { .name = "mxs-raw-auart", .id = 1, .resource = mxs_raw_auart1_resources, .num_resources = ARRAY_SIZE(mxs_raw_auart1_resources), }, #endif #endif

static struct resource mxs_raw_auart1_resources[] = { { .start = MX28_AUART1_BASE_ADDR, .end = MX28_AUART1_BASE_ADDR + 0x100 - 1, .flags = IORESOURCE_MEM, }, { .start = MX28_INT_AUART1, .end = MX28_INT_AUART1, .flags = IORESOURCE_IRQ, } };

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D

1.2 Research & Development

Version: 1.0.0 Page: 14 / 16

276

};

277

2.4.2.3.3 Disabling of the standard UART driver depending on new configuration options

278 279 280 281 282 283 284 285 286 287 288 289

#if (defined(CONFIG_MXS_RAW_AUART) || defined(CONFIG_MXS_RAW_AUART_MODULE)) #if !defined(CONFIG_MXS_RAW_AUART_PORT0) mx28_add_auart0(); #endif #if !defined(CONFIG_MXS_RAW_AUART_PORT1) mx28_add_auart1(); #endif #else mx28_add_auart0(); mx28_add_auart1(); #endif

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 290

1.2 Research & Development

Version: 1.0.0 Page: 15 / 16

Character loopback driver

291

3.1 Supported platforms

292 293 294

The character loopback driver is hardware independent. Therefore the reference implementation eq3_char_loop.c can be used on any platform with no porting required. It SHOULD be copied to drivers/char/ eq3_char_loop.c.

295

3.2 Operation overview

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314

When loaded, the loopback driver creates a master device node named /dev/eq3loop. A user space master application such as multimacd can use this master device for creating slave devices. With the current setting (EQ3LOOP_NUMBER_OF_CHANNELS) up to 4 slave devices are supported. When a slave device is created by the master application, a new device node with a name supplied by the application shows up in the /dev directory. A slave application (e.g. rfd) can open the slave device and communicate with the master application in the same way it would communicate through a serial device. For supporting serial communication libraries expecting a real serial port, a subset of standard TTY iocls is implemented by the loopback driver. Using the loopback driver from the master application typically involves the following steps for each slave device:  Open the master device  Call ioctl EQ3LOOP_IOCSCREATESLAVE with the name of the slave device as argument  Enter a select() or poll() loop. Within the loop: o If select/poll indicates readable, the slave device is open and the slave has sent data. Read the data and process it. o If select/poll indicates writeable, the slave device is open and buffer space is available for writing. Write pending data to the slave. o If select/poll indicates an exception, the slave device has been opened or closed. Call ioctl EQ3LOOP_IOCGEVENTS to query the open state.

315

3.3 Build and runtime integration

316 317 318 319

After copying the driver source code, it must be made sure that the driver is compiled and called. This involves the following steps:  Add configuration options for the loopback driver to drivers/char/Kconfig.  Add the loopback driver to drivers/char/Makefile.

320 321 322 323 324 325 326

Kconfig sample For the loopback driver on the CCU2, the following options were added to drivers/char/Kconfig config EQ3_CHAR_LOOPBACK tristate "eQ3 char loopback device" help

Date of Approval:

Document- Title :Dual_Protocol_Linux_Drivers

Technical Documentation Department: R&D 327 328 329 330 331 332

1.2 Research & Development

Version: 1.0.0 Page: 16 / 16

This driver provides a char loopback device used by eQ-3 daemons.

Makefile sample For the loopback driver on the CCU2, the following line was added to drivers/char/Makefile obj-$(CONFIG_EQ3_CHAR_LOOPBACK)

Date of Approval:

+= eq3_char_loop.o

Document- Title :Dual_Protocol_Linux_Drivers

HomeMatic Dual Copro Low Latency Serial Driver - GitHub

1.2 Research & Development ..... from the point of view of the application layer. 18 ... This document is designed primarily for the use in the product design and ...

564KB Sizes 18 Downloads 292 Views

Recommend Documents

Low-Voltage Motor Driver With Serial Interface .. (Rev. F) - GitHub
5. Logic. DAC. DRV8830. SLVSAB2F –MAY 2010–REVISED FEBRUARY 2012 ... (2) All voltage values are with respect to network ground terminal. ...... to any combination, machine, or process in which TI components or services are used.

Cheap Avantree Dual Link Aptx Low Latency Bluetooth Transmitter ...
Cheap Avantree Dual Link Aptx Low Latency Bluetooth ... s, Bluetooth 4.2 Free Shipping & Wholesale Price.pdf. Cheap Avantree Dual Link Aptx Low Latency ...

Twig-Serial Camera - GitHub
many times until reds FF D9 which indicates the end of the JPEG file. Command. Return. 0x56 0x00 0x32 0x0C 0x00 0x0A. 0x00 0x00 0xAH 0xAL. 0x00 0x00 ...

Ave rage Read Latency - GitHub
Ave rage Read Latency. BOL8. IDhQl. flfiSV. 1. MMMF. a e wmm. T .|_. I mmw w. PH %. W 1 w. 5.x». 7..» "1.. | m. 0. 0. 0. 1. _ _ _ _ _ _. 5 0 5 0 5 0. 3 3 2 2 1 1.

Competition: Towards Low-Latency, Low-Power Wireless ... - EWSN
Beshr Al Nahas, Olaf Landsiedel. Department of Computer Science and Engineering. Chalmers University of Technology, Sweden beshr, olafl @chalmers.se.

Ch353 pci dual serial and parallel port driver download win7 ...
Hp laserjet 1010 printer driver for windows xp download.Sony vaio fn drivers windows 7.Driver lexmark x1100 para win 7.41647930416. Asus p5v-vmultra ...

Grove - Serial MP3 Player.sch - GitHub
2013/5/5 16:32:16 C:\Users\Tobe\Desktop\New Grove\Grove - Serial MP3 Player(SEN01300P)\Eagle\Grove - Serial MP3 Player.sch (Sheet: 1/1)

ivport dual - GitHub
Pi 3 compatible) Camera Module multiplexer is designed to make possible connecting more than one camera module to Raspberry Pi. Multiplexing can be ...

Sequential Insert Average Latency Over Time - GitHub
Sequential Insert Average Latency Over Time. 10 Million Items. _|_____. LevelDB. LeveIDB Basho. Percona MySQL _ -. 1000. _ _ ___ _ _ _ _ _ _ ___ _ _ _ _. 8.

YASIR: A Low-Latency, High- Integrity Security Retrofit ...
On input a transformed frame ˜F' = S||CTXT'||E||mac'||seq'||E, the YASIR Receiver R does the following: 1. Compute. H'||P' = EncryptSK(SEQR,CTXT'), and.

Cheap Avantree Aptx Low Latency Bluetooth Transmitter For Tv ...
Cheap Avantree Aptx Low Latency Bluetooth Transmitt ... s Audio Adapter Free Shipping & Wholesale Price.pdf. Cheap Avantree Aptx Low Latency Bluetooth ...

A Low Latency Asynchronous FIFO Combining a Wave ...
bursty traffic between a data producer and a consumer. In addition, the independent ...... University 1996, and M.S. degree in infor- mation and communication ...

Sparkle — Energy Efficient, Reliable, Ultra-low Latency ...
It greatly reduced energy consumption and also improved end-to-end reliability and latency with a high probability. Additionally, we exper- imentally showed that the transmission power also affected the QoS metrics significantly. The Glossy protocol

Dual Interface LCD Display Controller BV4618 BV4618 Dual ... - GitHub
This could be monitored by the host. Pin. Function. 1 ... external source and depending on the host ..... This is probably best used with the ACK character as this.

Low-latency Atomic Broadcast in the presence of ...
A new cheap Generic ..... which is similar to [3] but requires only n > 2f (cheap- ...... URL http://www.ntp.org/. 16. F. Pedone and A. Schiper. Optimistic Atomic ...

jVerbs: Ultra-Low Latency for Data Center Applications
ber of real-time applications use HDFS as their storage ..... the various aspects of the jVerbs software architecture. ...... hilland-iwarp-verbs-v1.0-RDMAC.pdf.

Cheap August Mr270 Aptx Low Latency Optical Audio Bluetooth ...
Cheap August Mr270 Aptx Low Latency Optical Audio ... hones Speakers Free Shipping & Wholesale Price.pdf. Cheap August Mr270 Aptx Low Latency Optical ...

Cheap Avantree Aptx Low Latency Bluetooth Receiver And ...
Cheap Avantree Aptx Low Latency Bluetooth Receiver A ... tem - Saturn Pro Free Shipping & Wholesale Price.pdf. Cheap Avantree Aptx Low Latency Bluetooth ...

Usb serial port cable driver windows 7
Dellinspiron 1420 sd card driver vista. ... ducamintses forever shalles WurdPirfictend PDF..637917716326633214 Driver scheda ... sonido sound blaster live 5.1.

Atc 810 usb to serial converter driver download
Epson stylus t11 printer driver for windows 7. ... Driver lexmark x1100 series para windows 8. ... Telecharger intel graphics mediaaccelerator driver for mobile.

Cdc serial driver download samsung galaxy s3
driver download samsung galaxy s3.Driver bГЎsico hp d1460.Cdcserial driver download samsung galaxy s3.Download printer driver for hp. laserjet 4345 mfp.

Dell precision m4400 pci serial port driver
precisionm4400 pciserial port driver..585537073619766760 Hp deskjet 3900 printer driver for windows 7 32 bit.Windows xp generic usb. mouse driver.

Cdc serial driver samsung galaxy ace 3
driver deimpresora hp c3180 para windows 7.Shurtly cdcserial ... Driver macsamsung galaxy note 2.Pentium4 ... Best pdf printer driver for windows 8. Driver hp ...

LM193, LM293, LM393, LM2903 Dual Differential ... - GitHub
absolute maximum ratings over operating free-air temperature range (unless ...... TI component or service and is an unfair and deceptive business practice.