Interfacing PCI2040 to TMS320VC5420 DSP

Size: px
Start display at page:

Download "Interfacing PCI2040 to TMS320VC5420 DSP"

Transcription

1 Application Report SCPA00 - June 000 Interfacing PCI040 to TMS0V DSP Mike Campbell PCIBus Solutions ABSTRACT This application note describes how system designers can interface the TMS0V 6-bit HPI () to the PCI bus, using the TMS0C6x HPI (C6x) mode interface on the PCI040 PCI-to-DSP bridge. The note specifies two modes for mapping the to host memory, depending on the number of s. The note also describes both hardware and software considerations, provides an example schematic, and includes other illustrative figures. Contents Introduction Mapping to Host Memory Hardware Considerations C6x HPI Protocol to HPI-6 Protocol Switching Between Two DSP Cores Multiple HRST Handling Two HINT Interrupts From One DSP Software Considerations Writing From HPIA, HPIC, and HPID Registers Reading From HPIA, HPIC, and HPID Registers Using the Autoincrement Feature Summary Example Schematic List of Figures Memory Map Memory Map Two or Less s Behind PCI More Than Two s Behind PCI PCI Data During a Write to TMS0 HPI PCI Data During a Read From TMS0 HPI Schematic ( of ) Schematic ( of ) Schematic ( of ) Trademarks are the property of their respective owners..

2 SCPA00 Introduction PCI040 is a PCI-to-DSP bridge designed to interface to either the 8-bit TMS0C4x HPI port or the 6-bit TMS0C6x HPI (C6x) port. This application note describes a method for interfacing the TMS0V 6-bit HPI () to the PCI bus, using the 6-bit C6x mode interface on the PCI040. Mapping to Host Memory There are two different ways of mapping the into host or PC memory space, depending on the number of s. Use memory map 0 with two or less s. This method maps each subsystem or core of the c40 into a dedicated memory space. Figure illustrates memory map 0. Control Space offset HCSO HCS HCS HCS DSP0 (Core A) DSP0 (Core B) DSP (Core A) DSP (Core B) Figure. Memory Map h FFFh 000h FFFh 4000h FFFh 6000h 7FFFh Use memory map with more than two s. This method maps each DSP to a specific memory space, and each core or subsystem of the DSP shares the same memory space. Figure illustrates memory map. Control Space offset HCS0 HCS HCS DSP0 (Core A & B) DSP (Core A & B) DSP (Core A & B) 0000h FFFh 000h FFFh 4000h HCS DSP (Core A & B) Figure. Memory Map NOTE: The Control space offset is the offset from address represented in the control space base address register located at PCI offset 4h in the PCI040. FFFh 6000h 7FFFh Interfacing PCI040 to TMS0V DSP

3 SCPA00 Hardware Considerations The is a dual CPU device with two independent c4x subsystems capable of core-to-core communication. Although the PCI040 was not designed specifically to interface to a dual CPU device, it functions properly with such a device with special considerations: Converting a c60 HPI protocol to a c40 HPI-6 protocol Switching between the two DSP cores Handling multiple resets and interrupts. C6x HPI Protocol to HPI-6 Protocol The has two modes of operation for the HPI bus: Non-multiplexed mode (HMODE=): the HPI interface has a 8-bit address bus used to access all internal memory. Multiplexed mode (HMODE=0): the address and data are shared or multiplexed on the same pins. The PCI040 only implements multiplexed mode, so the HMODE pin on the must be tied or pulled down to. You must add additional logic for compatibility to use the PCI040 s 6-bit HPI to connect the to the PCI bus. The C6x HPI has an active low HRDY signal, and the has an active high HRDY signal, so you must use an inverter on all implemented s. Select a.v inverter like the SN74ALCV04 so VCC_H can be tied directly to VCC.. Switching Between Two DSP Cores Use the SELA/B pin on the to select which DSP subsystem to access through the HPI interface. Connect the PCI040 s GPIO like GPIO to the SELA/B pin. You can toggle this pin either low or high to select core A or core B.. Multiple HRST There are two methods for controlling the reset function of each subsystem. Holding A_RS and B_RS low while the HPIRS pin transitions from low to high keeps both cores in reset while allowing you to download application code into the DSP. After the download, you can drive A_RS and B_RS high to take the two subsystems out of reset. Holding A_RS and B_RS high while the HPIRS pins transitions from low to high holds both cores in reset while allowing you to download code in the DSP. You can take a specific subsystem out of reset by performing HPI write to address Fh to release that subsystem from reset. You can change the value of the SELA/B pin and write to the other subsystem to release that subsystem from reset. This method is recommended when using the PCI040. You can use power-on reset logic to reset each subsystem (A_RS and B_RS). Connect the HPIRS pin to the HRST pin on the PCI040. You must ensure that the poweron reset logic deasserts reset to each subsystem before host software deasserts HRST to the DSP. Remember to take each subsystem of the DSP out of reset by performing a HPI write to address Fh after the application is downloaded. Interfacing PCI040 to TMS0V DSP

4 SCPA00.4 Handling Two HINT Interrupts From One DSP Handling multiple interrupts depends on how many s are located behind the PCI040. If there are two or less s, you can connect HINT0 to and HINT to to the first. You can connect the second interrupts ( and ) to PCI040 s HINT and HINT, respectively (see Figure ). This method corresponds with memory map 0. U HINT0 HINT HINT HINT PCI U U Figure. Two or Less s Behind PCI040 If there are more than two s, you need to AND the two interrupts on the DSP together as illustrated in Figure 4. Each interrupt on the DSP shares the same interrupt line on the PCI040, so you have no way of knowing which subsystem asserted HINT, and you must write a to the HINT bit of the HPIC register for each subsystem. This method corresponds to memory map. UA 4 U U4 HINT0 HINT HINT HINT PCI UB UC U U U6 UD 4 Figure 4. More Than Two s Behind PCI040 4 Interfacing PCI040 to TMS0V DSP

5 4 Software Considerations SCPA00 The C6x has a 6-bit HPI, but it uses words that are bits wide, so all HPI transactions consist of two back to back HPI cycles. Since the PCI040 6-bit interface was designed to interface to C6x(s), the PCI040 will also do back-to-back HPI cycles. Unlike the C6x, the uses 6-bit words that require only one HPI cycle to complete a transaction. Programmers writing software to access a through the PCI040 need to be aware that reading and writing to the DSP require special access routines. 4. Writing From HPIA, HPIC, and HPID Registers When writing to the HPIA (HPI address) register, the HPIC (HPI control) register, and the HPID (HPI data) register (in non-autoincrement mode), remember that the PCI040 will do two back-to-back cycles to the HPI. Both cycles are to the same register, so the data written during the first cycle is over written during the second cycle. You should always transmit data written to these registers in bytes two and three on the PCI bus to ensure the correct data is written (see Figure ) Byte Byte 0 Don t Care Don t Care Figure. PCI Data During a Write to 4. Reading From HPIA, HPIC, and HPID Registers When reading to the HPIA register, the HPIC register, and the HPID register (in non-autoincrement mode), the PCI040 read these registers twice and returns the value in both the upper and lower half of the PCI doubleword (see Figure 6) Byte Byte 0 Byte Byte 0 4. Using the Autoincrement Feature Figure 6. PCI Data During a Read From To maximize the HPI performance, make all reads and writes to the HPID register using the autoincrement feature so the DSP increments the HPIA register between the first and second HPI cycle. This incrementation allows the transfer of two consecutive words to or from PCI space, enabling reading or writing -bits of data at a time, which effectively doubles the data transfer rate. Summary You can use the PCI040 C6x to interface to the with minimal external logic, but you must be aware of how the PCI040 passes data to and from the HPI interface. 6 Example Schematic Figure 7, Figure 8, and Figure 9 illustrate a schematic of an implementation of a single behind the PCI040. This schematic shows only the connections between the PCI040 and the and does not contain any detail of any implementation concerns. This example uses the memory map 0 method. Interfacing PCI040 to TMS0V DSP

6 SCPA00 P_AD[..0] PCIV PCIV VCCP C C C C4 C C6 C7 C8 C9 C0 C C.uF.uF.uF.uF.uF.uF.uF.uF.uF.uF.uF.uF P VCCP P_INTA# A A A A4 A A6 A7 A8 A9 A0 A TRST# +V TMS TDI INTA# INTC# V TCK TDO INTB# INTD# PRSNT# PRSNT# B B B B4 B B6 B7 B8 B9 B0 B.uF C.uF C4.uF C P_RST# P_PME# P_IDSEL P_FRAME# P_TRDY# P_STOP# P_PAR P_AD0 P_AD8 P_AD6 P_AD4 P_AD P_AD0 P_AD8 P_AD6 P_AD P_AD P_AD P_AD9 A4 A A6 A7 A8 A9 A0 A A A A4 A A6 A7 A8 A9 A0 A A A A4 A A6 A7 A8 A9 A40 A4 A4 A4 A44 A4 A46 A47 A48 A49 RST# GNT# AD[0] AD[8] AD[6] AD[4] IDSEL AD[] AD[0] AD[8] AD[6] FRAME# TRDY# STOP# SDONE SBO# PAR AD[] AD[] AD[] AD[09] CLK REQ# AD[] AD[9] AD[7] AD[] C/BE[]# AD[] AD[] AD[9] AD[7] C/BE[]# IRDY# DEVSEL# LOCK# PERR# SERR# C/BE[]# AD[4] AD[] AD[0] M66EN B4 B B6 B7 B8 B9 B0 B B B B4 B B6 B7 B8 B9 B0 B B B B4 B B6 B7 B8 B9 B40 B4 B4 B4 B44 B4 B46 B47 B48 B49 P_AD P_AD9 P_AD7 P_AD P_AD P_AD P_AD9 P_AD7 P_AD4 P_AD P_AD0 P_PCLK P_C/BE# P_C/BE# P_IRDY# P_DEVSEL# P_LOCK# P_PERR# P_SERR# P_C/BE# R 7 C6 pf P_PCLK P_C/BE0# P_AD6 P_AD4 P_AD P_AD0 A A A4 A A6 A7 A8 A9 A60 A6 A6 C/BE[0]# AD[06] AD[04] AD[0] AD[00] REQ64# AD[08] AD[07] AD[0 AD[0] AD[0] ACK64# B B B4 B B6 B7 B8 B9 B60 B6 B6 P_AD8 P_AD7 P_AD P_AD P_AD Solder Side Component Side PCI Connector Title PCI CONNECTOR Size Document Number Rev B <Doc> A Date: Wednesday, November 7, 999 Sheet of Figure 7. Schematic ( of ) 6 Interfacing PCI040 to TMS0V DSP

7 SCPA00 7 Interfacing PCI040 to TMS0V DSP P_AD6 GPINT# P_AD4 R 4K HRDY0# HINT0# EVMV P_C/BE# P_AD7 HD4 HD0 P_AD P_AD GPINT# P_STOP# P_TRDY# HD GPIO4 P_AD P_C/BE# P_INTA# P C I H P I GPIO Hot Swap Power/Gnd RSVD PCI040 GP BUS PCI040PGE U HCS0# HRDY0# HCS# HRST0# HCS# HRDY# HCS# HINT0# HRST# HRST# HINT# HRST# HAD0/GPD0 HINT# HINT# RSVD HRDY# HAD/GDP HRDY# RSVD HAD/GPD VCC0 HAD/GPD RSVD HAD4/GPD4 RSVD4 HAD/GPD 0 HAD6/GPD6 HAD7/GPD7 HAD8/GDP8 HAD9/GPD9 HAD0/GPD0 VCC HAD/GPD HAD/GPD HAD/GPD VCC HAD4/GPD4 HAD/GPD HCNTL0/GPA VCC HCNTL/GPA4 VCC4 PCI_PAR 4 VCC 6 VCC6 7 8 PCI_STOP# VCCP0 VCCP VCCH0 VCCH PCI_DEVSEL# IDSEL PCI_PERR# PCI_FRAME# PCI_PCLK PCI_SERR# PCI_IRDY# PCI_RST# PCI_TRDY# CBE0# AD0 CBE# CBE# AD CBE# AD AD AD4 AD AD6 AD7 AD8 AD9 AD0 AD AD AD AD4 AD AD6 AD7 AD8 AD9 AD0 AD AD AD AD4 AD AD6 AD7 AD8 AD9 AD0 AD PCI_INTA# PCI_LOCK# HBE0#/GPA0 HBE#/GPA HWIL/GPA HR/W#/GPA HRD#(HDS#)/GPCS# HSENUM# HSSWITCH HSLED GPIO0 GPIO GPIO GPIO GPIO4 GPIO G_RST# D_STAT# PME# VCC7 GPINT# GPRDY# GPRST# VCC8 VCC9 VCC0 9 P_C/BE0# P_AD[..0] HINT# HD R9 0K HRDY# P_AD HINT# EVMV P_IDSEL HD4 GPRDY# HD[..0] HD8 P_AD6 P_LOCK# HDS# P_AD0 GPIO HD GPIO0 R8 0K P_AD R6 0K R0 0K HD HSENUM# P_PME# P_AD0 GPIO R 0K VCCP HRST# HD GPIO4 HINT# R 0K P_C/BE# HINT# P_AD P_AD4 P_PAR P_PCLK P_AD8 GPIO R7 0K HCNTL HD <Doc> A PCI040 B Wednesday, November 7, 999 Title Size Document Number Rev Date: Sheet of HCNTL0 P_IRDY# P_PERR# HR/W# GPIO HCS0# P_AD0 R 0K P_AD8 P_AD9 HRST0# P_AD9 HRDY# P_AD HSSWITCH R6 4K R 0K P_AD P_AD R4 0K GPIO GPIO P_AD GPIO P_DEVSEL# HCS# HD7 P_PME# HSSWITCH 0 = CLOSED = OPEN R 0K GPIO0 P_FRAME# P_AD6 P_RST# HRDY# HD HRDY# P_AD P_AD7 HSENUM# EVMV P_SERR# P_AD0 HINT# P_AD7 P_AD4 R4 0K GPIO P_AD8 HD0 GPRDY# ONLY POPULATE IF PME# IS NOT IMPLEMENTED ON MOTHERBOARD. P_AD HD9 P_AD HD P_AD9 HD6 GPIO R 0K Figure 8. Schematic ( of )

8 SCPA00 EVMV R8 U4A.7K HINT0# HINT# HCNTL HCNTL0 GPIO HAS# A free HRST# HA0 4 HA 6 HA 66 HA HA4 HA 0 HA6 09 HA7 HA8 HA9 7 HA0 74 HA 77 HA 78 HA 08 HA4 07 HA 0 HA6 04 HA7 67 HCORE HD0 HD HD HD HD4 HD HD6 HD7 HD8 HD9 HD0 HD HD HD HD4 HD HCS HDS HDS HR/W HD0 HD HD HD HD4 HD HD6 HD7 HD8 HD9 HD0 HD HD HD HD4 HD HD[..0] HDS# HDS# HR/W# EVMV R9.7K could also be used to select the core. GPIO_A GPIO_B HRDY 9 00 HRDY UA HRDY0# UB _HOST_IF 74HCT4 HCS# 4 6 HCS# HCS0# UC EVMV R7 6 VDDA VCO CLKOUT_A CLKOUT_B HRST0# HRST# UA 0K VSSA CLKIN HPIRS RS_A RS_B XF_A XF_B GPIO_A0 GPIO_A GPIO_A 8 0 PWRON_RST# 4 INT_A0 7 INT_A 8 NMI_A GPIO_B0 GPIO_B GPIO_B INT_B0 INT_B NMI_B RSVD HMODE XIO TCK TMS TDI TRST TD0_A TD0_B 6 8 EMU0 EMU _CONTROL Title HPI Size Document Number Rev B <Doc> A Date: Wednesday, November 7, 999 Sheet of Figure 9. Schematic ( of ) 8 Interfacing PCI040 to TMS0V DSP

9 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products or to discontinue any product or service without notice, and advise customers to obtain the latest version of relevant information to verify, before placing orders, that information being relied on is current and complete. All products are sold subject to the terms and conditions of sale supplied at the time of order acknowledgment, including those pertaining to warranty, patent infringement, and limitation of liability. TI warrants performance of its semiconductor products to the specifications applicable at the time of sale in accordance with TI s standard warranty. Testing and other quality control techniques are utilized to the extent TI deems necessary to support this warranty. Specific testing of all parameters of each device is not necessarily performed, except those mandated by government requirements. Customers are responsible for their applications using TI components. In order to minimize risks associated with the customer s applications, adequate design and operating safeguards must be provided by the customer to minimize inherent or procedural hazards. TI assumes no liability for applications assistance or customer product design. TI does not warrant or represent that any license, either express or implied, is granted under any patent right, copyright, mask work right, or other intellectual property right of TI covering or relating to any combination, machine, or process in which such semiconductor products or services might be or are used. TI s publication of information regarding any third party s products or services does not constitute TI s approval, warranty or endorsement thereof. Copyright 000, Texas Instruments Incorporated

Using Boundary Scan on the TMS320VC5420

Using Boundary Scan on the TMS320VC5420 Application Report SPRA597 - November 1999 Using Boundary Scan on the TMS320VC5420 Clay Turner C5000 Applications Team ABSTRACT The Texas Instruments (TI ) TMS320VC5420 DSP implements limited boundary

More information

1999 PCIBus Solutions

1999 PCIBus Solutions Data Manual 1999 PCIBus Solutions Printed in U.S.A., 12/99 SCPS053 PCI2050 PCI-to-PCI Bridge Data Manual Literature Number: SCPS053 December 1999 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments

More information

Dual Access into Single- Access RAM on a C5x Device

Dual Access into Single- Access RAM on a C5x Device TMS320 DSP DESIGNER S NOTEBOOK Dual Access into Single- Access RAM on a C5x Device APPLICATION BRIEF: SPRA215 Mansoor Chishtie Digital Signal Processing Products Semiconductor Group Texas Instruments February

More information

Hardware UART for the TMS320C3x

Hardware UART for the TMS320C3x TMS320 DSP DESIGNER S NOTEBOOK Hardware UART for the TMS320C3x APPLICATION BRIEF: SPRA223 Contributed by Lawrence Wong Digital Signal Processing Products Semiconductor Group Texas Instruments June 1993

More information

TMS320VC5501/5502 DSP Host Port Interface (HPI) Reference Guide

TMS320VC5501/5502 DSP Host Port Interface (HPI) Reference Guide TMS320VC5501/5502 DSP Reference Guide Literature Number: November 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements,

More information

cpci-pci Adapter Technical Reference Manual cpci-pci Adapter Reference Manual Version 1.0

cpci-pci Adapter Technical Reference Manual cpci-pci Adapter Reference Manual Version 1.0 cpci-pci Adapter Reference Manual Version 1.0 The cpci-pci Adapter has been designed by: N.A.T. GmbH Kamillenweg 22 D-53757 Sankt Augustin Phone: ++49/2241/3989-0 Fax: ++49/2241/3989-10 E-Mail: sales@nateurope.com

More information

Reading a 16-Bit Bus With the TMS320C5x Serial Port

Reading a 16-Bit Bus With the TMS320C5x Serial Port TMS320 DSP DESIGNER S NOTEBOOK Reading a 16-Bit Bus With the TMS320C5x Serial Port APPLICATION BRIEF: SPRA270 Manuel Rodrigues Digital Signal Processing Products Semiconductor Group Texas Instruments May

More information

Older PC Implementations

Older PC Implementations PCI Older PC Implementations 2 Newer PC Implementations 3 Server Platforms 4 PCI Overview 5 PCI Features 32-Bit or 64-Bit address and data 66 or 33 down to 0 MHz synchronous operation Single or multiple

More information

TMS320C5x Memory Paging (Expanding its Address Reach)

TMS320C5x Memory Paging (Expanding its Address Reach) TMS320 DSP DESIGNER S NOTEBOOK TMS320C5x Memory Paging (Expanding its Address Reach) APPLICATION BRIEF: SPRA242 Contributed by Joe George Digital Signal Processing Products Semiconductor Group Texas Instruments

More information

SN5446A, 47A, 48, SN54LS47, LS48, LS49 SN7446A, 47A, 48, SN74LS47, LS48, LS49 BCD-TO-SEVEN-SEGMENT DECODERS/DRIVERS

SN5446A, 47A, 48, SN54LS47, LS48, LS49 SN7446A, 47A, 48, SN74LS47, LS48, LS49 BCD-TO-SEVEN-SEGMENT DECODERS/DRIVERS PRODUCTION DATA information is current as of publication date. Products conform to specifications per the terms of Texas Instruments standard warranty. Production processing does not necessarily include

More information

TMS320VC5510 DSP Host Port Interface (HPI) Reference Guide

TMS320VC5510 DSP Host Port Interface (HPI) Reference Guide TMS320VC5510 DSP Host Port Interface (HPI) Reference Guide Literature Number: August 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

Intel IXP42X Product Line of Network Processors and IXC1100 Control Plane Processor PCI 16-Bit Read Implementation

Intel IXP42X Product Line of Network Processors and IXC1100 Control Plane Processor PCI 16-Bit Read Implementation Intel IXP42X Product Line of Network Processors and IXC1100 Control Plane Processor PCI 16-Bit Read Implementation Application Note September 2004 Document Number: 300375-002 INFORMATION IN THIS DOCUMENT

More information

Using LDOs and Power Managers in Systems With Redundant Power Supplies

Using LDOs and Power Managers in Systems With Redundant Power Supplies Application Report SLVA094 - November 000 Using LDOs and Power Managers in Systems With Redundant Power Supplies Ludovic de Graaf TI Germany ABSTRACT For reasons of continuity in some systems, independent

More information

Typical System Implementation

Typical System Implementation PCI Typical System Implementation CPU Cache Memory Subsystem DRAM Subsystem Host Bus PCI Local Bus PCI Bridge/ Memory Controller ISA Bus Bridge ISA Bus PCI Add-in Slots ISA Add-in Slots PCI 2 Desktop Platforms

More information

Understanding the TMS320C54x Memory Map and Examining an Optimum C5000 Memory Interface

Understanding the TMS320C54x Memory Map and Examining an Optimum C5000 Memory Interface Application Report SPRA607 - November 1999 Understanding the TMS320C54x Memory Map and Examining an Optimum C5000 Memory Interface Mathew George, Jr. (Joe) Texas Instruments Incorporated Natural Microsystems

More information

NPCI-PMC Technical Reference Manual

NPCI-PMC Technical Reference Manual NPCI-PMC PCI Carrier for PMC Modules Technical Reference Manual V1.2 HW Revision 1.1 The NPCI-PMC has been designed by: N.A.T. GmbH Kamillenweg 22 D-53757 Sankt Augustin Phone: ++49/2241/3989-0 Fax: ++49/2241/3989-10

More information

EV Evaluation System User Guide. Contents. Kit Contents. Introduction

EV Evaluation System User Guide. Contents. Kit Contents. Introduction Contents EV2200 40 Evaluation System User Guide Section Page No. Introduction 1 Kit Contents 1 Hardware and Software Setup 2 Software Installation 2 Hardware Connection 2 Operation 2 Starting the Program

More information

Introducing. QuickLogic s The Basics of PCI. QuickPCI - The PCI Solution for System Needs

Introducing. QuickLogic s The Basics of PCI. QuickPCI - The PCI Solution for System Needs Introducing QuickLogic s The Basics of PCI QuickPCI - The PCI Solution for System Needs Typical System Implementation CPU Cache Memory Subsystem DRAM Subsystem Host Bus PCI Local Bus PCI Bridge/ Memory

More information

Reference board User Guide for PI7C8152 By Glenn Sanders

Reference board User Guide for PI7C8152 By Glenn Sanders Reference board User Guide for PI7C8152 By Glenn Sanders Introduction The Pericom PI7C8152 PCI-to-PCI bridge evaluation board demonstrates the bridge and allows testing of key features either before or

More information

Bit-reversed Addressing without Data Alignment on the C3x

Bit-reversed Addressing without Data Alignment on the C3x TMS320 DSP DESIGNER S NOTEBOOK Bit-reversed Addressing without Data Alignment on the C3x APPLICATION BRIEF: SPRA199 Tim Grady Digital Signal Processing Products Semiconductor Group Texas Instruments December

More information

TMS320C64x DSP Peripheral Component Interconnect (PCI) Performance

TMS320C64x DSP Peripheral Component Interconnect (PCI) Performance Application Report SPRA965 October 2003 TMS320C64x DSP Peripheral Component Interconnect (PCI) Performance Stéphane Smith C6x Device Applications ABSTRACT This application report describes the number of

More information

Techniques for Profiling on ROM-Based Applications

Techniques for Profiling on ROM-Based Applications Application Report SPRA761 June 2001 Techniques for Profiling on ROM-Based Applications Harsh Sabikhi Code Composer Studio, Applications Engineering ABSTRACT This application report describes the methods

More information

PCI Bus Quick Reference by Doug Abbott

PCI Bus Quick Reference by Doug Abbott PCI Bus Quick Reference by Doug Abbott This quick reference to the PCI Bus is based on the information contained in PCI BUS DEMYSTIFIED by Doug Abbott, published by LLH Technology Publishing. To order

More information

TMS320C6000 HPI to PCI Interfacing Using the PLX PCI9050

TMS320C6000 HPI to PCI Interfacing Using the PLX PCI9050 Application Report SPRA537C - April 2002 TMS320C6000 HPI to PCI Interfacing Using the PLX PCI9050 Zoran Nikolic Digital Signal Processing Solutions ABSTRACT This application report describes an interface

More information

TMS320C62x, TMS320C67x DSP Cache Performance on Vocoder Benchmarks

TMS320C62x, TMS320C67x DSP Cache Performance on Vocoder Benchmarks Application Report SPRA642 - March 2000 TMS320C62x, TMS320C67x DSP Cache Performance on Vocoder Benchmarks Philip Baltz C6000 DSP Applications ABSTRACT This application report discusses several multichannel

More information

Using the TMS320VC5509/5510 Enhanced HPI

Using the TMS320VC5509/5510 Enhanced HPI Application Report SPRA741A - May 2006 Using the TMS320VC5509/5510 Enhanced HPI Greg Shurtz C5000 Hardware Applications Team ABSTRACT The enhanced host port interface (EHPI) on the TMS320VC5509 and TMS320VC5510

More information

Implementation of a CELP Speech Coder for the TMS320C30 using SPOX

Implementation of a CELP Speech Coder for the TMS320C30 using SPOX Implementation of a CELP Speech Coder for the TMS320C30 using SPOX APPLICATION REPORT: SPRA401 Mark D. Grosen Spectron Microsystems, Inc Digital Signal Processing Solutions IMPORTANT NOTICE Texas Instruments

More information

Sensoray Model 623 PC/104+ to PCI Adapter. Revised December 19, Sensoray Model 623 Instruction Manual 1

Sensoray Model 623 PC/104+ to PCI Adapter. Revised December 19, Sensoray Model 623 Instruction Manual 1 Sensoray Model 623 PC/104+ to PCI Adapter Revised December 19, 2003 Sensoray Model 623 Instruction Manual 1 TABLE OF CONTENTS LIMITED WARRANTY... 3 SPECIAL HANDLING INSTRUCTIONS... 3 1. INTRODUCTION...

More information

Debugging Shared Memory Systems

Debugging Shared Memory Systems Application Report SPRA754 - May 2001 Debugging Shared Memory Systems Jeff Hunter Software Development Systems/Emulation Team ABSTRACT Multiple cores on a single processor often share a common block of

More information

ACROMAG INCORPORATED Tel: (248) South Wixom Road Fax: (248) P.O. BOX 437 Wixom, MI U.S.A.

ACROMAG INCORPORATED Tel: (248) South Wixom Road Fax: (248) P.O. BOX 437 Wixom, MI U.S.A. APC-PMC USER S MANUAL ACROMAG INCORPORATED Tel: (248) 295-0310 30765 South Wixom Road Fax: (248) 624-9234 P.O. BOX 437 Wixom, MI 48393-7037 U.S.A. Copyright 2005, Acromag, Inc., Printed in the USA. Data

More information

Using the bq3285/7e in a Green or Portable Environment

Using the bq3285/7e in a Green or Portable Environment in a Green or Portable Environment Introduction The bq3285/7e Real-Time Clock is a PC/AT-compatible real-time clock that incorporates three enhanced features to facilitate power management in Green desktop

More information

PI7C7300D 3-PORT PCI-to-PCI BRIDGE Revision 1.01

PI7C7300D 3-PORT PCI-to-PCI BRIDGE Revision 1.01 3-PORT PCI-to-PCI BRIDGE Revision 1.01 3545 North 1 ST Street, San Jose, CA 95134 Telephone: 1-877-PERICOM (1-877-737-4266) FAX: 408-435-1100 Internet: http://www.pericom.com LIFE SUPPORT POLICY Pericom

More information

OMAP SW. Release Notes. OMAP Software Tools OST version 2.5 Release. 16xx/1710/242x platforms. Document Revision: 2.5 Release

OMAP SW. Release Notes. OMAP Software Tools OST version 2.5 Release. 16xx/1710/242x platforms. Document Revision: 2.5 Release OMAP SW OST version 2.5 Release 16xx/1710/242x platforms Document Revision: 2.5 Release Issue Date: 29 th July 2005 Revision: 2.5 Release 13 th July 2005 Table of Contents Page i IMPORTANT NOTICE Texas

More information

TMS320C5x Interrupt Response Time

TMS320C5x Interrupt Response Time TMS320 DSP DESIGNER S NOTEBOOK TMS320C5x Interrupt Response Time APPLICATION BRIEF: SPRA220 Jeff Beinart Digital Signal Processing Products Semiconductor Group Texas Instruments March 1993 IMPORTANT NOTICE

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

27 - Line SCSI Terminator With Split Reverse Disconnect

27 - Line SCSI Terminator With Split Reverse Disconnect 27 - Line SCSI Terminator With Split Reverse Disconnect FEATURES Complies with SCSI, SCSI-2, SCSI-3, SPI and FAST-20 (Ultra) Standards 2.5pF Channel Capacitance During Disconnect 100µA Supply Current in

More information

DatasheetDirect.com. Visit to get your free datasheets. This datasheet has been downloaded by

DatasheetDirect.com. Visit  to get your free datasheets. This datasheet has been downloaded by DatasheetDirect.com Your dedicated source for free downloadable datasheets. Over one million datasheets Optimized search function Rapid quote option Free unlimited downloads Visit www.datasheetdirect.com

More information

I2C and the TAS3001C. Introduction. The I2C Protocol. Digital Audio Group ABSTRACT

I2C and the TAS3001C. Introduction. The I2C Protocol. Digital Audio Group ABSTRACT Application Report SLEA001 February 2001 I2C and the TAS3001C Digital Audio Group ABSTRACT The TAS3001C stereo audio digital equalizer provides a serial control interface using the I2C protocol. Since

More information

TMS320C6000 DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide

TMS320C6000 DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide TMS320C6000 DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide Literature Number: April 2003 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve

More information

C Routines for Setting Up the AIC on the TMS320C5x EVM

C Routines for Setting Up the AIC on the TMS320C5x EVM TMS320 DSP DESIGNER S NOTEBOOK C Routines for Setting Up the AIC on the TMS320C5x EVM APPLICATION BRIEF: SPRA251 Leor Brenman Digital Signal Processing Products Semiconductor Group Texas Instruments February

More information

Nested Loop Optimization on the TMS320C6x

Nested Loop Optimization on the TMS320C6x Nested Loop Optimization on the TMS320C6x Richard Scales Digital Signal Processing Solutions Abstract This document descibes the process used to develop and optimize nested loops for the Texas Instruments

More information

Increase Current Drive Using LVDS

Increase Current Drive Using LVDS Application Report SLLA100 May 2001 Increase Current Drive Using LVDS Steve Corrigan DSBU LVDS ABSTRACT The most common configuration for an LVDS connection is the one-way transmission topology. A single

More information

SN54BCT760, SN74BCT760 OCTAL BUFFERS/DRIVERS WITH OPEN-COLLECTOR OUTPUTS

SN54BCT760, SN74BCT760 OCTAL BUFFERS/DRIVERS WITH OPEN-COLLECTOR OUTPUTS SNBCT0, SNBCT0 SCBS0B JULY REVISED NOVEMBER Open-Collector Version of BCT Open-Collector Outputs Drive Bus Lines or Buffer Memory Address Registers ESD Protection Exceeds 000 V Per MIL-STD-C Method 0 Packages

More information

Application Report. Mixed Signal Products SLOA028

Application Report. Mixed Signal Products SLOA028 Application Report July 1999 Mixed Signal Products SLOA028 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products or to discontinue any product

More information

DV2003S1. Fast Charge Development System. Control of On-Board P-FET Switch-Mode Regulator. Features. Connection Descriptions. General Description

DV2003S1. Fast Charge Development System. Control of On-Board P-FET Switch-Mode Regulator. Features. Connection Descriptions. General Description DV003S1 Fast Charge Development System Control of On-Board P-FET Switch-Mode Regulator Features bq003 fast-charge control evaluation and development Charge current sourced from an on-board switch-mode

More information

TMS320UC5409/TMS320VC5409 Digital Signal Processors Silicon Errata

TMS320UC5409/TMS320VC5409 Digital Signal Processors Silicon Errata TMS320UC5409/TMS320VC5409 Digital Signal Processors Silicon Errata January 2000 Revised October 2001 Copyright 2001, Texas Instruments Incorporated Contents 1 Introduction........................................................................................

More information

TMS320 DSP DESIGNER S NOTEBOOK. Serial ROM Boot APPLICATION BRIEF: SPRA233. Alex Tessarolo Digital Signal Processing Products Semiconductor Group

TMS320 DSP DESIGNER S NOTEBOOK. Serial ROM Boot APPLICATION BRIEF: SPRA233. Alex Tessarolo Digital Signal Processing Products Semiconductor Group TMS320 DSP DESIGNER S NOTEBOOK Serial ROM Boot APPLICATION BRIEF: SPRA233 Alex Tessarolo Digital Signal Processing Products Semiconductor Group Texas Instruments May 1994 IMPORTANT NOTICE Texas Instruments

More information

SN54ALS04B, SN54AS04, SN74ALS04B, SN74AS04 HEX INVERTERS

SN54ALS04B, SN54AS04, SN74ALS04B, SN74AS04 HEX INVERTERS SNALS0B, SNAS0, SN7ALS0B, SN7AS0 Package Options Include Plastic Small-Outline (D) Packages, Ceramic Chip Carriers (FK), and Standard Plastic (N) and Ceramic (J) 00-mil DIPs description These devices contain

More information

BUF(PCI)13. PCI Bus Expansion Adapter Set. User's Guide

BUF(PCI)13. PCI Bus Expansion Adapter Set. User's Guide PCI Bus Expansion Adapter Set User's Guide Copyright Copyright 2000 CONTEC Co., LTD. ALL RIGHTS RESERVED No part of this document may be copied or reproduced in any form by any means without prior written

More information

PI7C8140A 2-Port PCI-to-PCI Bridge REVISION 1.01

PI7C8140A 2-Port PCI-to-PCI Bridge REVISION 1.01 2-Port PCI-to-PCI Bridge REVISION 1.01 3545 North First Street, San Jose, CA 95134 Telephone: 1-877-PERICOM, (1-877-737-4266) Fax: 408-435-1100 Internet: http://www.pericom.com LIFE SUPPORT POLICY Pericom

More information

SN54F38, SN74F38 QUADRUPLE 2-INPUT POSITIVE-NAND BUFFERS WITH OPEN-COLLECTOR OUTPUTS

SN54F38, SN74F38 QUADRUPLE 2-INPUT POSITIVE-NAND BUFFERS WITH OPEN-COLLECTOR OUTPUTS SNF, SN7F SDFS0A MARCH 7 REVISED OCTOBER Package Options Include Plastic Small-Outline Packages, Ceramic Chip Carriers, and Standard Plastic and Ceramic 00-mil DIPs description These devices contain four

More information

PCI 6140 (HB1) PCI-to-PCI Bridge Data Book

PCI 6140 (HB1) PCI-to-PCI Bridge Data Book PCI 6140 (HB1) PCI-to-PCI Bridge Data Book PCI 6140 (HB1) PCI-to-PCI Bridge Data Book Version 2.0 May 2003 Website: http://www.plxtech.com Technical Support: http://www.plxtech.com/support Phone: 408

More information

TI s PCI2040 PCI-to-DSP Bridge

TI s PCI2040 PCI-to-DSP Bridge TI s PCI2040 PCI-to-DSP Bridge Brian G. Carlson - Sr. DSP Engineer DNA Enterprises, Inc. August 5, 1999 E-mail: bcarlson@dnaent.com 1 Agenda Introduction to the PCI Bus DSP Host Port Interface (HPI) Overview

More information

The PCMCIA DSP Card: An All-in-One Communications System

The PCMCIA DSP Card: An All-in-One Communications System The PCMCIA DSP Card: An All-in-One Communications System Application Report Raj Chirayil Digital Signal Processing Applications Semiconductor Group SPRA145 October 1994 Printed on Recycled Paper IMPORTANT

More information

TMS320VC5409A Digital Signal Processor Silicon Errata

TMS320VC5409A Digital Signal Processor Silicon Errata TMS320VC5409A Digital Signal Processor Silicon Errata June 2001 Revised May 2003 Copyright 2003, Texas Instruments Incorporated Literature Number REVISION HISTORY This revision history highlights the technical

More information

PowerSpan II TM Schematic Review Checklist

PowerSpan II TM Schematic Review Checklist PowerSpan II TM Schematic Review Checklist November 4, 2009 6024 Silver Creek Valley Road San Jose, California 95138 Telephone: (408) 284-8200 FAX: (408) 284-3572 Printed in U.S.A. 2009, Inc. Titlepage

More information

AMD HD5450 PCI ADD-IN BOARD. Datasheet. Advantech model number:gfx-a3t5-61fst1

AMD HD5450 PCI ADD-IN BOARD. Datasheet. Advantech model number:gfx-a3t5-61fst1 AMD HD5450 PCI ADD-IN BOARD Datasheet Advantech model number:gfx-a3t5-61fst1 CONTENTS 1. Feature... 3 2. Functional Overview... 4 2.1. Memory Interface... 4 2.2. Acceleration Features... 4 2.3. Avivo Display

More information

12MHz XTAL USB DAC PCM2702E

12MHz XTAL USB DAC PCM2702E EVALUATION FIXTURE FEATURES COMPLETE EVALUATION FIXTURE FOR THE PCM70E USB DIGITAL-TO- ANALOG CONVERTER ON-BOARD OUTPUT FILTER USING OPA5UA DUAL CMOS OP AMP.5mm STEREO MINI JACK FOR LINE LEVEL OUTPUTS

More information

SN54ALS32, SN54AS32, SN74ALS32, SN74AS32 QUADRUPLE 2-INPUT POSITIVE-OR GATES

SN54ALS32, SN54AS32, SN74ALS32, SN74AS32 QUADRUPLE 2-INPUT POSITIVE-OR GATES Package Options Include Plastic Small-Outline (D) Packages, Ceramic Chip Carriers (FK), and Standard Plastic (N) and Ceramic (J) 00-mil DIPs description These devices contain four independent -input positive-or

More information

#64. Quick start: (photo of 8154 reference board) The numbers on the photo correspond to the text explanation on the right:

#64. Quick start: (photo of 8154 reference board) The numbers on the photo correspond to the text explanation on the right: User Guide for PI7C8154 Reference Board By Glenn Sanders Introduction: The Pericom PI7C8154 PCI to PCI bridge evaluation board demonstrates the bridge and allows testing of key features either before or

More information

Connecting TMS320C54x DSP with Flash Memory

Connecting TMS320C54x DSP with Flash Memory Connecting TMS32C54x DSP with Flash Memory Jason Jiang Customer Application Center TI (Shanghai) Abstract Flash memory offers better cost per bit than traditional EPROM when storage density increases.

More information

PCI / PMC / CPCI / PCI-X Bus Analysis

PCI / PMC / CPCI / PCI-X Bus Analysis PCI / PMC / CPCI / PCI-X Bus Analysis Analyzer Exerciser Stimulus Target Anomaly Performance Compliance 850 System Analyzer/Exerciser Silicon Control Inc. introduces the ultimate analyzer and exerciser

More information

November 2000 Mixed-Signal Products SLOU086

November 2000 Mixed-Signal Products SLOU086 User s Guide November 2000 Mixed-Signal Products SLOU086 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products or to discontinue any product or

More information

PCI1510 Implementation Guide

PCI1510 Implementation Guide Application Report SCPA035 - January 2003 PCI1510 Implementation Guide ABSTRACT Computer Connectivity Solutions This document is provided to assist platform designers using the PCI1510 single-socket PC

More information

Intel PCI-X to Serial ATA Controller

Intel PCI-X to Serial ATA Controller Intel 31244 PCI-X to Controller Design Layout Review Checklist October 2002 Document Number: 273791-001 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR

More information

bq2056 Designed to Go Parts List General Description bq2056 Charge Algorithm Current Voltage

bq2056 Designed to Go Parts List General Description bq2056 Charge Algorithm Current Voltage Designed to GO... Practical and Cost-Effective Battery Management Design Examples by Benchmarq Series 2056, Number One Single- and Double-Cell Low-Dropout Lithium-Ion Charger Using the bq2056 Features

More information

TMS320C6000 DSP General-Purpose Input/Output (GPIO) Reference Guide

TMS320C6000 DSP General-Purpose Input/Output (GPIO) Reference Guide TMS320C6000 DSP General-Purpose Input/Output (GPIO) Reference Guide Literature Number: March 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

PCI-X Addendum to the PCI Compliance Checklist. Revision 1.0a

PCI-X Addendum to the PCI Compliance Checklist. Revision 1.0a PCI-X Addendum to the PCI Compliance Checklist Revision 1.0a August 29, 2000 PCI-X Addendum to the PCI Compliance Checklist REVISION REVISION HISTORY DATE 1.0 Initial Release 3/1/00 1.0a Updates for PCI-X

More information

Product Information SK1-CHORD. CompactPCI Serial PMC Module Carrier. Document No July 2017

Product Information SK1-CHORD. CompactPCI Serial PMC Module Carrier. Document No July 2017 Product Information SK1-CHORD CompactPCI Serial PMC Module Carrier Document No. 6911 26 July 2017 General The SK1-CHORD is a peripheral slot board for PICMG CompactPCI Serial systems and acts as carrier

More information

128 Kb Dual-Port SRAM with PCI Bus Controller (PCI-DP)

128 Kb Dual-Port SRAM with PCI Bus Controller (PCI-DP) 128 Kb Dual-Port SRAM with PCI Bus Controller (PCI-DP) Features 128 Kb of dual-ported shared memory Master and target PCI Specification 2.2 compliant interface Embedded host bridge capability Direct interface

More information

IQEXTENDER IQ Module. Board Manual. March Order Number:

IQEXTENDER IQ Module. Board Manual. March Order Number: IQEXTENDER IQ Module Board Manual March 1998 Order Number: 272942-002 Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel or otherwise,

More information

C Fast RTS Library User Guide (Rev 1.0)

C Fast RTS Library User Guide (Rev 1.0) C Fast RTS Library User Guide (Rev 1.0) Revision History 22 Sep 2008 Initial Revision v. 1.0 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products

More information

Implementing JTAG Testing with MPEG2Lynx

Implementing JTAG Testing with MPEG2Lynx Implementing JTAG Testing with MPEG2Lynx Allison Hicks IEEE 1394 Peripherals Applications Abstract This application brief describes what is needed to implement JTAG Testability (IEEE 1149.1 - JTAG standard)

More information

Texas Instruments Voltage-Level-Translation Devices

Texas Instruments Voltage-Level-Translation Devices Application Report SCEA21 - February 21 Texas Instruments -Level-Translation Devices Nadira Sultana and Chris Cockrill Standard Linear & Logic ABSTRACT In electronic systems design, there is a need to

More information

cpci-8273 Advance Technologies; Automate the World. 3 Port IEEE 1394a 3U CompactPCI Card User s Manual Manual Rev. 2.00

cpci-8273 Advance Technologies; Automate the World. 3 Port IEEE 1394a 3U CompactPCI Card User s Manual Manual Rev. 2.00 cpci-8273 3 Port IEEE 1394a 3U CompactPCI Card User s Manual Manual Rev. 2.00 Revision Date: November 18, 2004 Part No: 50-15036-100 Advance Technologies; Automate the World. Copyright 2004 ADLINK TECHNOLOGY

More information

Getting Started Guide: TMS-FET470A256 IAR Kickstart Development Kit

Getting Started Guide: TMS-FET470A256 IAR Kickstart Development Kit Getting Started Guide: TMS-FET470A256 IAR Kickstart Development Kit Skrtic/Mangino Page 1 of 11 SPNU250 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to

More information

User Guide for the Pericom PI7C8150 Reference board By Glenn Sanders

User Guide for the Pericom PI7C8150 Reference board By Glenn Sanders 2789027890278902278902789027890227890278902789022789027890278902278902 Introduction The Pericom PI7C80 PCI-to-PCI bridge evaluation board demonstrates the bridge and allows testing of key features either

More information

UCC3917 Floating Hot Swap Power Manager Evaluation Board

UCC3917 Floating Hot Swap Power Manager Evaluation Board User s Guide SLUU03 - June 00 UCC397 Floating Hot Swap Power Manager Evaluation Board Power Distribution & Power Supply Contents Introduction.........................................................................

More information

EV Software Rev Evaluation System User Guide. Introduction. Contents. Hardware and Software Setup. Software Installation

EV Software Rev Evaluation System User Guide. Introduction. Contents. Hardware and Software Setup. Software Installation Contents Evaluation System User Guide Software Rev 2.0.1 Introduction Section Page No. Introduction 1 Kit Contents 1 Hardware and Software Setup 1 Software Installation 1 Hardware Connection 1 Operation

More information

Logic Solutions for IEEE Std 1284

Logic Solutions for IEEE Std 1284 Logic Solutions for IEEE Std SCEA013 June 1999 1 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products or to discontinue any product or service

More information

Using the TMS320 DSP Algorithm Standard in a Dynamic DSP System

Using the TMS320 DSP Algorithm Standard in a Dynamic DSP System Application Report SPRA580B Using the TMS320 DSP Algorithm Standard in a Dynamic DSP System Carl Bergman Digital Signal Processing Solutions Abstract This application note illustrates some techniques used

More information

Using Endianess Conversion in the OMAP5910 Device

Using Endianess Conversion in the OMAP5910 Device Application Report SWPA027 May 2004 Using Endianess Conversion in the OMAP5910 Device Matthias Kassner ABSTRACT The OMAP5910 device features a new dual-core architecture from Texas Instruments (TI) that

More information

Distributed by: www.jameco.com -800-83-4242 The content and copyrights of the attached material are the property of its owner. SOLID-STATE HEXADECIMAL DISPLAY WITH INTEGRAL TTL CIRCUIT TO ACCEPT, STORE,

More information

Constant Temperature Chamber ATITRS1. Figure 1. Top View. Figure 2. Front View

Constant Temperature Chamber ATITRS1. Figure 1. Top View. Figure 2. Front View Figure 1. Top View Figure 2. Front View Copyrights 2000-2018,, Inc. All Rights Reserved. Updated on 11/13/2018 www.analogti.com 1 Figure 3. Side View Figure 4. Back View Copyrights 2000-2018,, Inc. All

More information

TMS320C620x/C670x DSP Boot Modes and Configuration Reference Guide

TMS320C620x/C670x DSP Boot Modes and Configuration Reference Guide TMS320C620x/C670x DSP Reference Guide Literature Number: July 2003 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements,

More information

Analog Technologies. Laser Driver Load Assembly ATLS212DLD1.0 Load Assembly for Laser Drivers

Analog Technologies. Laser Driver Load Assembly ATLS212DLD1.0 Load Assembly for Laser Drivers Load Assembly for Laser Drivers series laser drivers more conveniently, we have designed and made the evaluation board, ATLS212EV1.0. This laser load assembly can be used with this evaluation board, or

More information

MC1488, SN55188, SN75188 QUADRUPLE LINE DRIVERS

MC1488, SN55188, SN75188 QUADRUPLE LINE DRIVERS Meet or Exceed the Requirements of ANSI EIA/ TIA--E and ITU Recommendation V. Designed to Be Interchangeable With Motorola MC1 Current-Limited Output: ma Typical Power-Off Output Impedance: Ω Minimum Slew

More information

SN54LVTH16240, SN74LVTH V ABT 16-BIT BUFFERS/DRIVERS WITH 3-STATE OUTPUTS

SN54LVTH16240, SN74LVTH V ABT 16-BIT BUFFERS/DRIVERS WITH 3-STATE OUTPUTS Members of the Texas Instruments Widebus Family State-of-the-Art Advanced BiCMOS Technology (ABT) Design for 3.3-V Operation and Low Static-Power Dissipation Support Mixed-Mode Signal Operation (5-V Input

More information

74AC11139 DUAL 2-LINE DECODER/DEMULTIPLEXER

74AC11139 DUAL 2-LINE DECODER/DEMULTIPLEXER Designed Specifically for High-Speed Memory Decoders and Data Tramission Systems Incorporates Two Enable Inputs to Simplify Cascading and/or Data Reception Center-Pin V CC and GND Configuratio Minimize

More information

TMS320C6000 DSP Interrupt Selector Reference Guide

TMS320C6000 DSP Interrupt Selector Reference Guide TMS320C6000 DSP Interrupt Selector Reference Guide Literature Number: January 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications,

More information

Configuring Code Composer Studio for OMAP Debugging

Configuring Code Composer Studio for OMAP Debugging Application Report SPRA807 - November 2001 Configuring Code Composer Studio for OMAP Debugging Harry Thompson Software Development Systems/Customer Support ABSTRACT The OMAP Code Composer Studio (CCStudio)

More information

74AC11240 OCTAL BUFFER/LINE DRIVER WITH 3-STATE OUTPUTS

74AC11240 OCTAL BUFFER/LINE DRIVER WITH 3-STATE OUTPUTS Flow-Through Architecture Optimizes PCB Layout Center-Pin V CC and Configuratio Minimize High-Speed Switching Noise EPIC (Enhanced-Performance Implanted CMOS) -m Process 500-mA Typical Latch-Up Immunity

More information

PC/104+ to PCMCIA PC-Card/CardBus Adapter. Model 335 (Rev.A)

PC/104+ to PCMCIA PC-Card/CardBus Adapter. Model 335 (Rev.A) SENSORAY CO., INC. PC/104+ to PCMCIA PC-Card/CardBus Adapter Model 335 (Rev.A) August 15, 2007 Sensoray 2007 7313 SW Tech Center Dr. Tigard, OR 97223 Phone 503.684.8005 Fax 503.684.8164 www.sensoray.com

More information

PRELIMINARY IDT7M9510 IDT7M9514

PRELIMINARY IDT7M9510 IDT7M9514 79RV60/79RC6V7 PCI MEZZANINE CARD PRELIMINARY 7M9510 7M951 FEATURES: PCI Mezzanine Card (PMC) (IEEE 1386) form factor 7M9510 High performance 79RV60 MIPS Processor 100Mhz, 150Mhz, 0Mhz, 00MHz CPU speeds

More information

PCI Local Bus Specification Revision 3.0. June 2002JuneDecember 5February 3, , 2002

PCI Local Bus Specification Revision 3.0. June 2002JuneDecember 5February 3, , 2002 PCI Local Bus Specification Revision 3.0 June 2002JuneDecember 5February 3, 20043 28, 2002 REVISION REVISION HISTORY DATE 1.0 Original issue. 6/22/92 2.0 Incorporated connector and add-in card specification.

More information

ATLD10A5-D EV1.0 Evaluation Board for ATLD10A5-D 10A High Efficiency Laser Controller ATLD10A5-D Evaluation Board Rev. 1.0

ATLD10A5-D EV1.0 Evaluation Board for ATLD10A5-D 10A High Efficiency Laser Controller ATLD10A5-D Evaluation Board Rev. 1.0 ATLD0A5-D EV.0 Evaluation Board for ATLD0A5-D 0A High Efficiency Laser Controller ATLD0A5-D Evaluation Board Rev..0 Figure ATLD0A5-D EV.0 Photo INTORDUCTION The ATLD0A5-D is an electronic module designed

More information

TMS320C6000 Host Port to the i80960 Microprocessors Interface

TMS320C6000 Host Port to the i80960 Microprocessors Interface Application Report SPRA541A - August 2001 TMS320C6000 Host Port to the i80960 Microprocessors Interface Zoran Nikolic Digital Signal Processor Solutions ABSTRACT This application report describes the interface

More information

SN54ALS74A, SN54AS74, SN74ALS74A, SN74AS74 DUAL D-TYPE POSITIVE-EDGE-TRIGGERED FLIP-FLOPS WITH CLEAR AND PRESET

SN54ALS74A, SN54AS74, SN74ALS74A, SN74AS74 DUAL D-TYPE POSITIVE-EDGE-TRIGGERED FLIP-FLOPS WITH CLEAR AND PRESET SNALS7A, SNAS7, SN7ALS7A, SN7AS7 SDASA D, APRIL 9 REVISED SEPTEMBER 97 Package Optio Include Plastic Small Outline Packages, Ceramic Chip Carriers, and Standard Plastic and Ceramic 00-mil DIPs Dependable

More information

TMS320C672x DSP Software-Programmable Phase-Locked Loop (PLL) Controller. Reference Guide

TMS320C672x DSP Software-Programmable Phase-Locked Loop (PLL) Controller. Reference Guide TMS320C672x DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide Literature Number: SPRU879A May 2005 2 SPRU879A May 2005 Contents Preface... 5 1 Overview... 7 2 Functional Description...

More information

Designed to GO... Universal Battery Monitor Using the bq2018 Power Minder IC. Typical Applications. Features. Figure 1. bq2018 Circuit Connection

Designed to GO... Universal Battery Monitor Using the bq2018 Power Minder IC. Typical Applications. Features. Figure 1. bq2018 Circuit Connection Designed to GO... Practical and Cost-Effective Battery Management Design Examples by Benchmarq Series 2018, Number One Universal Battery Monitor Using the bq2018 Power Minder IC Features Counts charge

More information