COMMUNICATIONS WITH THE MULTI- CHANNEL HOST P RT INTERFACE

Size: px
Start display at page:

Download "COMMUNICATIONS WITH THE MULTI- CHANNEL HOST P RT INTERFACE"

Transcription

1 Multiple Channels COMMUNICATIONS WITH THE MULTI- CHANNEL HOST P RT INTERFACE With the HPI and McHPI, applications can create a single physical channel and multiple virtual channels to provide communications among applications running on different processors By Stanford Hudson In some embedded systems, the need frequently arises for communication among applications executing on different processors. Designers typically resort to using a single-channel message distributor for that capability. However, because the message distributor must have knowledge of the applications, as well as of some of the information within the message, a new application can t be added; that is, the communications system lacks scalability a decided disadvantage. A more generic and scalable approach is to allow each application to create its own virtual communications channel or channels. The application then becomes both the distributor and the handler of messages. When a new application is installed on a processor, it may choose to add a channel so that other applications on other processors can communicate Figure 1: The scalable channel model enables applications to use their own virtual communications channels between the host processor and a DSP. The single physical channel provides a generic communications medium for the virtual channels. with it. This technique, known as multichannel communications, gives the communications system scalability (see Figure 1). A scalable channel model promotes data hiding and object orientation, since each channel is private within the system. The Multichannel Host Port Interface Model In multiprocessor systems using (at least) one member of the TMS320 DSP family, the Host Port Interface (HPI) peripheral is employed as a single physical communications channel between the host and the DSP processor. If used correctly, the HPI port can provide a generic way for applications residing on the host or the DSP to communicate with each other. Using the HPI port as a single physical channel for multiple virtual channels is made possible in turn by the Multi-Channel Host Port Interface (McHPI) channel model (see Figure 2). Various types of data transfers can be realized with this model, since each application can create multiple channels at run time. This capability can be useful in systems that require one channel for streaming data and another for command and status information. All HPI transmit and receive buffering is stored on the DSP, and each application owns its buffers. A device driver model is used for the application programming interface (API), which enables applications to manage channels at run time, as follows: extern void McHPI_Init(void); extern Uns McHPI_Open(MCHPI_CONFIG_T *cfg, Uns *channel); extern Uns McHPI_Close(Uns channel); extern Uns McHPI_Ioctl(Uns channel, Uns cmd, void *arg); extern Uns McHPI_Read(Uns channel, Uns *data, Uns *size); extern Uns McHPI_Write(Uns channel, Uns *data, Uns size); The McHPI_Init() call is issued once, at start-up, to initialize the internal structures of the McHPI subsystem. The McHPI_Open() call is issued for every virtual channel that the application requires. Each channel is assigned a unique integer that can be referenced in future calls to McHPI. A corresponding call to McHPI_Close() may be issued to close a channel. The McHPI_Ioctl() function is an optional implementation and can be used to reconfigure or to inquire about the status of the channel. The McHPI_Read() and McHPI_Write() functions enable an application to read from and write to the receive and transmit pipes. The message distributor, or application software interrupt (SWI), usually issues the McHPI_Read() call, and the main application thread issues calls to McHPI_Write() to send messages, thus: status = McHPI_Read(my_channel, (Uns *)&msg, &size); status = McHPI_Write(my_channel, (Uns *)msg, length); For a practical implementation of the McHPI model on a TMS320 DSP, you should use the DSP/BIOS realtime kernel as the operating system, since DSP/BIOS provides the necessary pipe and tasking structures to implement the model. To create a channel, each application must set up HPI transmit and receive buffers, memory flow control flags, and transmit and receive pipes. The configuration information that McHPI_Open() supplies to McHPI allows the application to specify all necessary information to open a virtual communications channel, thus: typedef struct { SWI_Obj swi; /* Application message distributor SWI */ PIP_Obj *txpipe; /* transmit pipe to host application */ 8 October 2002 Embedded Edge Embedded Edge October

2

3 Multiple Channels Figure 2: The Multi-Channel Host Port Interface (McHPI) model enables an application to create multiple virtual channels. A device driver API is provided by the McHPI that enables the application to manage its channels at run time. DSP s transmit and receive HPI buffer and flag register are fixed at link time and are known to the corresponding host processor applications. Therefore, a similar implementation of McHPI can be achieved on the host, but with HPI flag and buffering contained on the DSP. If the host is a DSP with HPI capability, the local DSP transmit flag and buffers can be located on the host. Similarly, the host s transmit flag and buffers can be located on the local DSP. The primary thread of the McHPI implementation is the DSP/BIOS HPI hardware interrupt (HWI) handler (see the listing, page 14). The HWI is triggered by an HPI interrupt from both the host and the DSP in the case of a transmission when the transmit pipe is empty. It handles all channel pipe transfers between HPI transmit and receive buffers. One application well-suited to McHPI is a DSP-based image-processing system. Application Examples One application that s well suited to the use of McHPI is a DSP-based video image-processing system that combines both high-speed digital video data transmissions and command and status messaging to and from a host processor. The system employs two processors: a DSP that handles the math-intensive image-processing algorithms and a general-purpose processor (GPP) that manages the capture and display of digital video data as well as user input. The GPP can be an HPIenabled DSP, simplifying the architecture. In this example application, a streaming transmit and receive channel is used to transfer raw digital video data between the GPP and the DSP. Another channel is used to communicate control and status information. Control information includes image dimension configuration data, the types of image-pro- PIP_Obj *rxpipe; /* receive pipe from host application */ Ptr *txlen; /* DSP-to-host message length */ Ptr *txfr; /* DSP-to-host message available */ Ptr *rxlen; /* host-to-dsp message length */ Ptr *rxfr; /* host-to-dsp message available */ Ptr *rxbuf; /* host-to-dsp message storage buffer */ Ptr *txbuf; /* DSP-to-host message storage buffer */ Uns inuse; /* internal use only */ } MCHPI_CONFIG_T; The transmit and receive pipes must be unique for each channel that an application opens, as must be the storage areas for transmit and receive buffers and control flags. Their uniqueness is what gives the McHPI model its privacy feature and its scalability. Transmit and receive pipes allow data to move between McHPI and the application and its message distributor. They provide a queuing mechanism for the application, thus enabling multiple messages to be queued up for servicing by the single-channel physical implementation of the HPI. The physical layer of McHPI communicates via the transmit and receive buffers and uses flag registers to indicate when data is available. The host sets the RXLEN register to the number of words to be read from the receive buffer (RXBUF). A value of 1 in the receive flag register (RXFR) indicates that the host has placed data in the RXBUF. The setting of the RXFR is performed in conjunction with an HPI interrupt to the DSP from the host. When the DSP has read the data and placed it in the receive pipe, the RXFR is set to 0 and an interrupt is sent back to the host. The HPI physical layer enables both the host and DSP to read the same areas of memory. Consequently, the host may either poll the RXFR or wait for an interrupt from the DSP to determine if more data can be sent. A similar flow control process occurs for DSP-tohost transmission. The TXLEN register is set to the number of words stored in the transmit buffer (TXBUF), and the transmit flag register (TXFR) is set The transmit and receive pipes must be unique for each channel that opens. to 1 by the DSP when data is available in the TXBUF. An interrupt accompanies the setting of this flag and is followed by a host read of the TXBUF. The host is then responsible for clearing the TXFR and interrupting the DSP. As with the receive case, the DSP and host can operate in either poll or interrupt mode to transmit data. For each application channel, the addresses of the V Faster load time through QuickLOAD technology Programmable JTAG clock High Performance USB Emulator...from the leaders in TI DSP Development Tools We also offer: ARM 28x 54x 55x 62x 64x 67x OMAP... PCI emulators with optional onboard EVM s FleXDS FleXDS 560+ TIGER DSP Development boards VIPER DSP Resource boards Design Services DSP Research, Inc. information@dspr.com Phone: (408) October 2002 Embedded Edge Embedded Edge October

4 cessing algorithms to perform on the data, and any text to be imposed on the video image. Status information might include the number of frames processed, the coordinates that define a region of interest (movement detected), or other analytical data. Changing the Channels One channel is established for the streaming video data. Sufficient space for the HPI transmit and receive buffers is allocated so that they can store an entire video frame of data. A second channel, with small receive and transmit buffers, is established for the control and status messages. Two software interrupts (SWIs) are created on the DSP processor, one for receiving raw image data from the host and another for receiving and processing control messages. Messages and data are received via a call to McHPI_Read(). A main application task on the Various voice channels reside within the TDM frame, and each frame contains one sample of the voice signal. DSP is used to process the raw image information and calls McHPI_Write() to send the data back to the host for display. Communications processing systems also are well suited to the McHPI model. An example system involves the detection of DTMF signals in a time-division multiplexing (TDM) voice data stream that the host sends to the DSP. Various voice channels reside within the TDM frame, and each frame contains one sample of the voice signal for each channel. One McHPI virtual communications channel is set up for the streaming TDM voice data, and another channel for messages indicating what DTMF tone has been detected on each voice channel. Stanford Hudson (shudson@tekgenix.com) is a member of the technical staff at Tekgenix Corporation, a consulting and design firm located in Richardson,Texas, that specializes in DSP-based hardware and software design, analysis, and rapid prototyping. He has more than 11 years experience in real-time embedded systems architectures. (Note: Hudson is now with Paragon Innovations.) 14 October 2002 Embedded Edge

5 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue any product or service without notice. Customers should obtain the latest relevant information before placing orders and should verify that such information is current and complete. All products are sold subject to TI s terms and conditions of sale supplied at the time of order acknowledgment. TI warrants performance of its hardware products to the specifications applicable at the time of sale in accordance with TI s standard warranty. Testing and other quality control techniques are used to the extent TI deems necessary to support this warranty. Except where mandated by government requirements, testing of all parameters of each product is not necessarily performed. TI assumes no liability for applications assistance or customer product design. Customers are responsible for their products and applications using TI components. To minimize the risks associated with customer products and applications, customers should provide adequate design and operating safeguards. TI does not warrant or represent that any license, either express or implied, is granted under any TI patent right, copyright, mask work right, or other TI intellectual property right relating to any combination, machine, or process in which TI products or services are used. Information published by TI regarding third party products or services does not constitute a license from TI to use such products or services or a warranty or endorsement thereof. Use of such information may require a license from a third party under the patents or other intellectual property of the third party, or a license from TI under the patents or other intellectual property of TI. Reproduction of information in TI data books or data sheets is permissible only if reproduction is without alteration and is accompanied by all associated warranties, conditions, limitations, and notices. Reproduction of this information with alteration is an unfair and deceptive business practice. TI is not responsible or liable for such altered documentation. Resale of TI products or services with statements different from or beyond the parameters stated by TI for that product or service voids all express and any implied warranties for the associated TI product or service and is an unfair and deceptive business practice. TI is not responsible or liable for any such statements. Mailing Address: Texas Instruments Post Office Box Dallas, Texas Copyright 2002, Texas Instruments Incorporated

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

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C5510 DSK

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C5510 DSK Application Report SPRA856A June 2003 A DSP/BIOS AIC23 Codec Device for the TMS320C5510 DSK ABSTRACT Software Development Systems This document describes the implementation of a DSP/BIOS device driver

More information

TFP101, TFP201, TFP401, TFP401A 2Pix/Clk Output Mode

TFP101, TFP201, TFP401, TFP401A 2Pix/Clk Output Mode Application Note SLLA137 March 2003 TFP101, TFP201, TFP401, TFP401A 2Pix/Clk Output Mode Digital Visual Interface ABSTRACT This document explains the recommended configuration to operate the TFP101/201/401(A)

More information

DSP/BIOS LINK. Configurable TSK and SWI approach LNK 207 DES. Version <1.00>

DSP/BIOS LINK. Configurable TSK and SWI approach LNK 207 DES. Version <1.00> DESIGN DOCUMENT DSP/BIOS LINK Version Template Version 12 Version Page 1 of 21 This page has been intentionally left blank Version Page 2 of 21 IMPORTANT NOTICE Texas Instruments Incorporated

More information

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C6416 DSK

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C6416 DSK Application Report SPRA909A June 2003 A DSP/BIOS AIC23 Codec Device for the TMS320C6416 DSK ABSTRACT Software Development Systems This document describes the usage and design of a device driver for the

More information

Using the TMS320C5509 USB Bootloader

Using the TMS320C5509 USB Bootloader Application Report SPRA840 - October 2002 Using the TMS320C5509 USB Bootloader Mathew George, Jr. (Joe) Clay Turner ABSTRACT C5000 DSP Applications Boot loading the TMS320VC5509 digital signal processor

More information

DSP/BIOS Link. Platform Guide Published on 20 th JUNE Copyright 2009 Texas Instruments Incorporated.

DSP/BIOS Link. Platform Guide Published on 20 th JUNE Copyright 2009 Texas Instruments Incorporated. DSP/BIOS Link Platform Guide 1.63 Published on 20 th JUNE 2009 Copyright 2009 Texas Instruments Incorporated. 2 Platform Support Products Version 1.63 IMPORTANT NOTICE Texas Instruments Incorporated and

More information

TMS470R1x External Clock Prescale (ECP) Reference Guide

TMS470R1x External Clock Prescale (ECP) Reference Guide TMS470R1x External Clock Prescale (ECP) Reference Guide Literature Number: SPNU202B November 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

DSP/BIOS LINK. Pool LNK 082 DES. Version 1.30

DSP/BIOS LINK. Pool LNK 082 DES. Version 1.30 DESIGN DOCUMENT DSP/BIOS LINK Template Version 12 Page 1 of 35 This page has been intentionally left blank Page 2 of 35 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve

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

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

This document describes the features of the GUI program used to control Power Line Modem with E-Meter Platform.

This document describes the features of the GUI program used to control Power Line Modem with E-Meter Platform. Overview This document describes the features of the GUI program used to control Power Line Modem with E-Meter Platform. Program Startup The first time the program is run, three menus will be displayed

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

Programming the TMS320VC5509 RTC Peripheral

Programming the TMS320VC5509 RTC Peripheral Application Report SPRA384A - September 2002 Programming the TMS320VC5509 RTC Peripheral Scott Tater ABSTRACT DSP Applications Semiconductor Group This application report demonstrates the procedure used

More information

INVENTORY HISTORY REPORT EXTENSION. User Guide. User Guide Page 1

INVENTORY HISTORY REPORT EXTENSION. User Guide. User Guide Page 1 INVENTORY HISTORY REPORT EXTENSION User Guide User Guide Page 1 Important Notice JtechExtensions reserves the right to make corrections, modifications, enhancements, improvements, and other changes to

More information

CUSTOM GOOGLE SEARCH. User Guide. User Guide Page 1

CUSTOM GOOGLE SEARCH. User Guide. User Guide Page 1 User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue

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

IndoTraq Development Kit 1: Command Reference

IndoTraq Development Kit 1: Command Reference IndoTraq Development Kit 1: Command Reference April 2016 Page 1 of 9 Copyright 2016, IndoTraq LLC DK1 Command Reference v1.0 Contents 1 Introduction... 3 1.1 Writing Conventions... 3 2 Basics... 3 2.1

More information

The TMS320 DSP Algorithm Standard

The TMS320 DSP Algorithm Standard White Paper SPRA581C - May 2002 The TMS320 DSP Algorithm Standard Steve Blonstein Technical Director ABSTRACT The TMS320 DSP Algorithm Standard, also known as XDAIS, is part of TI s expressdsp initiative.

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

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

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

A Technical Overview of expressdsp-compliant Algorithms for DSP Software Producers

A Technical Overview of expressdsp-compliant Algorithms for DSP Software Producers Application Report SPRA579C - September 2002 A Technical Overview of expressdsp-compliant Algorithms for DSP Software Producers Stig Torud Organization ABSTRACT Advances in digital signal processor (DSP)

More information

INVENTORY REPORT EXTENSION. User Guide. User Guide Page 1

INVENTORY REPORT EXTENSION. User Guide. User Guide Page 1 INVENTORY REPORT EXTENSION User Guide User Guide Page 1 Important Notice JtechExtensions reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products

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

ADD RELATED PRODUCTS TO CART. User Guide. User Guide Page 1

ADD RELATED PRODUCTS TO CART. User Guide. User Guide Page 1 ADD RELATED PRODUCTS TO CART User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services

More information

Application Report. 1 System Requirements. 2 Using the DM643x Pin Multiplexing Utility. Bernard Thompson...

Application Report. 1 System Requirements. 2 Using the DM643x Pin Multiplexing Utility. Bernard Thompson... Application Report SPRAAN3 July 2007 TMS320DM643x Pin Multiplexing Utility Bernard Thompson... ABSTRACT The DM643x devices use a great deal of internal pin multiplexing to allow the most functionality

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

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

Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP

Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP Application Report SLAA175 JUNE 2003 Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP Lijoy Philipose Data Acquisition Applications ABSTRACT This application note presents a method for interfacing

More information

Stereo Dac Motherboard application information

Stereo Dac Motherboard application information Stereo Dac Motherboard application information 1 Introduction The "Stereo Dac Motherboard" is a high end solution to create a complete dac system. Just one board is needed to create a stereo system. Several

More information

SavvyCube Ecommerce Analytics Connector by MageWorx. User Guide

SavvyCube Ecommerce Analytics Connector by MageWorx. User Guide SavvyCube Ecommerce Analytics Connector by MageWorx User Guide Getting started with SavvyCube A SavvyCube account is required in order to use this extension. You can sign up for an account here: https://appbeta.savvycube.com/account/register

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

DSP/BIOS LINK RING IO LNK 129 DES. Version 0.91

DSP/BIOS LINK RING IO LNK 129 DES. Version 0.91 DESIGN DOCUMENT DSP/BIOS LINK Template Version 1.2 Page 1 of 70 This page has been intentionally left blank. Page 2 of 70 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve

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

Table 1. Proper Termination of Unused (Port) Pins in a Single-Port PSE System

Table 1. Proper Termination of Unused (Port) Pins in a Single-Port PSE System Application Report SLVA231A June 2006 Revised November 2006 Proper Termination of Unused Port Connections Dale Wellborn... PMP Systems Power The TPS2384 quad integrated power sourcing equipment (PSE) power

More information

Memory Allocation Techniques in System with Dynamic Swapping of Application Codes

Memory Allocation Techniques in System with Dynamic Swapping of Application Codes Application Report SPRA824 June 2002 Memory Allocation Techniques in System with Dynamic Swapping of Application Codes Oh, Hong Lye SC Field Applications, Texas Instruments Singapore ABSTRACT This application

More information

TLK10081 EVM Quick Start Guide Texas Instruments Communications Interface Products

TLK10081 EVM Quick Start Guide Texas Instruments Communications Interface Products TLK10081 EVM Quick Start Guide Texas Instruments Communications Interface Products 1 Board Overview +5 V Adapter Input Connector for voltage monitor board Connector for SMA break-out or FPGA board. Allows

More information

Application Report. 1 Introduction. MSP430 Applications. Keith Quiring... ABSTRACT

Application Report. 1 Introduction. MSP430 Applications. Keith Quiring... ABSTRACT Application Report SLAA325 July 2006 MSP430 Interface to CC1100/2500 Code Library Keith Quiring... MSP430 Applications ABSTRACT The MSP430 is an ideal microcontroller solution for low-cost, low-power wireless

More information

Wolverine - based microcontrollers. Slashing all MCU power consumption in half

Wolverine - based microcontrollers. Slashing all MCU power consumption in half Wolverine - based microcontrollers Slashing all MCU power consumption in half Wolverine: Industry s lowest power MCU platform Unique mixed signal ultra-low leakage process technology Enables variety of

More information

UCD3138 Responding to Multiple PMBus Slave Addresses

UCD3138 Responding to Multiple PMBus Slave Addresses Application Report SLUA758 October 2015 UCD3138 Responding to Multiple PMBus Slave Addresses Jack Tan, Ian Bower High Voltage Power Solution ABSTRACT The use of digital power controllers is becoming mainstream

More information

NO P.O. BOXES ALLOWED AT CHECKOUT. User Guide. User Guide Page 1

NO P.O. BOXES ALLOWED AT CHECKOUT. User Guide. User Guide Page 1 NO P.O. BOXES ALLOWED AT CHECKOUT User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and

More information

Stacking the REF50xx for High-Voltage References

Stacking the REF50xx for High-Voltage References Stacking the REF50xx for High-Voltage References Application Report Alexander Smolyakov and Mihail Gurevich ABSTRACT This application note describes the additional ways of using the REF50xx. The application

More information

HSKT TM Technology Specifications

HSKT TM Technology Specifications HSKT TM Technology Specifications September 2018 Page 1 of 6 Copyright 2018, IndoTraq LLC Datasheet v1.3 HSKT This high-speed technology combines 12 axes of information into a tiny package to give a precise

More information

IMPORT/EXPORT Newsletter Subscribers. User Guide. User Guide Page 1

IMPORT/EXPORT Newsletter Subscribers. User Guide. User Guide Page 1 IMPORT/EXPORT Newsletter Subscribers User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and

More information

PROGRAMMING THE MSC1210

PROGRAMMING THE MSC1210 Application Report SBAA076 - April 2002 PROGRAMMING THE MSC1210 By Russell Anderson SERIAL FLASH PROGRAMMING AUTOBAUD AND SETUP The BootROM start address is F800 H for User Application Mode (UAM), and

More information

Protecting the TPS25810 from High Voltage DFPs

Protecting the TPS25810 from High Voltage DFPs Application Report Nick Smith... Power Interface ABSTRACT The TPS25810 is a USB Type-C Downstream Facing Port (DFP) controller that monitors the Type-C Configuration Channel (CC) lines to determine when

More information

Application Report. 1 Hardware Description. John Fahrenbruch... MSP430 Applications

Application Report. 1 Hardware Description. John Fahrenbruch... MSP430 Applications Application Report SLAA309 June 2006 Low-Power Tilt Sensor Using the MSP430F2012 John Fahrenbruch... MSP430 Applications ABSTRACT The MSP430 family of low-power microcontrollers are ideal for low-power

More information

FlashBurn: A DSK Flash Memory Programmer

FlashBurn: A DSK Flash Memory Programmer Application Report SPRA804 - October 2001 FlashBurn: A DSK Flash Memory Programmer Russ Heeschen SDS Productivity Tools Team ABSTRACT The FlashBurn utility is a Windows program that works along with Code

More information

XIO1100 NAND-Tree Test

XIO1100 NAND-Tree Test Application Report June 15, 2007 XIO1100 NAND-Tree Test Mike Campbell DIBU ABSTRACT Checking the interconnections between integrated circuits (IC) once they have been assembled on a PCB is important in

More information

A DSP/BIOS EDMA McBSP Device Driver for TMS320C6x1x DSPs

A DSP/BIOS EDMA McBSP Device Driver for TMS320C6x1x DSPs Application Report SPRA846A June 2003 A DSP/BIOS EDMA McBSP Device Driver for TMS320C6x1x DSPs ABSTRACT Software Development Systems This document describes the usage and design of the generic TMS320C6x1x

More information

DS25BR204 Evaluation Kit

DS25BR204 Evaluation Kit 3.125 Gbps 1:4 LVDS Buffer/Repeater with Transmit Pre-emphasis and Receive Equalization DS25BR204 Evaluation Kit USER MANUAL Part Number: DS25BR204EVK NOPB For the latest documents concerning these products

More information

PMC to PCI Express Adapter with JN4 Connector Breakout

PMC to PCI Express Adapter with JN4 Connector Breakout Innovative Integration Real time solutions! Mar 2009, Rev 1.1 PMC to PCI Express Adapter with JN4 Connector Breakout FEATURES Adapt one PMC to a PCI Express slot 4 lane PCI Express Host Interface PCI 64

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

TMS320C6000 DSP 32-Bit Timer Reference Guide

TMS320C6000 DSP 32-Bit Timer Reference Guide TMS320C6000 DSP 32-Bit Timer Reference Guide Literature Number: SPRU582A July 2003 Revised October 2004 Contents TMS320C6000 DSP 32-Bit Timer... 2 Table of Contents... 2 Preface... 3 1 Overview... 5 2

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

October 2002 PMP Portable Power SLVU074

October 2002 PMP Portable Power SLVU074 User s Guide October 2002 PMP Portable Power SLVU074 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements, improvements,

More information

PCIxx12 Single Socket CardBus Controller with Integrated 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller

PCIxx12 Single Socket CardBus Controller with Integrated 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller PCIxx12 Single Socket CardBus Controller with Integrated 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller Data Manual Includes: PCI4512GHK, PCI4512ZHK, PCI6412GHK, PCI6412ZHK, PCI6612GHK, PCI6612ZHK,

More information

AC Induction Motor (ACIM) Control Board

AC Induction Motor (ACIM) Control Board AC Induction Motor (ACIM) Control Board Ordering Information Order No. MDL-ACIM RDK-ACIM Description Stellaris ACIM Control Board Only Stellaris ACIM Control Board Reference Design Kit (includes MDL-ACIM

More information

Maximizing Endurance of MSC1210 Flash Memory

Maximizing Endurance of MSC1210 Flash Memory Application Report SBAA91 April 23 Maximizing Endurance of MSC121 Flash Memory Ramesh Saripalli saripalli_ramish@ti.com ABSTRACT Data Acquisition Products Microsystems The MSC121 embeds an 851 CPU, a high-performance,

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

Calibration Routines and Register Value Generation for the ADS1216, ADS1217 and ADS1218

Calibration Routines and Register Value Generation for the ADS1216, ADS1217 and ADS1218 Application Report SBAA099 August 2003 Calibration Routines and Register Value Generation for the ADS1216, ADS1217 and ADS1218 Joseph Wu Data Acquisition Group ABSTRACT In order to achieve the best possible

More information

SN65DSI86 SW Examples

SN65DSI86 SW Examples Application Report December 30, 2013 SN65DSI86 SW Examples Mike Campbell CCI ABSTRACT The document contains examples of how to program the SN65DSI86 for different purposes. All examples in the document

More information

WL1271 ini File Description and Parameters User's Guide

WL1271 ini File Description and Parameters User's Guide WL1271 ini File Description and Parameters User's Guide Literature Number: SPRUGT8 January 2010 Contents Contents... 2 Revision History... 4 Reference Documents... 4 About This Document... 4 Chapter 1...

More information

The photograph below shows the PMP9730 Rev E prototype assembly. This circuit was built on a PMP9730 Rev D PCB.

The photograph below shows the PMP9730 Rev E prototype assembly. This circuit was built on a PMP9730 Rev D PCB. 1 Photos The photograph below shows the PMP9730 Rev E prototype assembly. This circuit was built on a PMP9730 Rev D PCB. 2 Standby Power No Load Pin AC (W) 120VAC/60Hz 0.187 230VAC/50Hz 0.238 Page 1 of

More information

The examples in this application report require the Flash API Modules (SPRC236) within the "Tools & Software" folder.

The examples in this application report require the Flash API Modules (SPRC236) within the Tools & Software folder. Application Report SPNA093A February 2006 Revised December 2007 In-System Programming With Catalog TMS470 Devices John Mangino.. TMS470 Applications ABSTRACT This document gives two examples of reprogramming

More information

1 Photo. 7/15/2014 PMP10283 Rev A Test Results

1 Photo. 7/15/2014 PMP10283 Rev A Test Results 1 Photo The photographs below show the PMP10283 Rev A assembly. This circuit was built on a PMP10283 Rev A PCB. Top side: Bottom side: Page 1 of 17 2 Efficiency 120V AC /60Hz Vin(ac) Iin(A) Pin(W) PF Vo1(V)

More information

xdais-dm (Digital Media) User Guide

xdais-dm (Digital Media) User Guide xdais-dm (Digital Media) User Guide Literature Number: SPRUEC8B January 2007 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications,

More information

GUEST CHECKOUT TO REGISTERED CUSTOMERS. User Guide. User Guide Page 1

GUEST CHECKOUT TO REGISTERED CUSTOMERS. User Guide. User Guide Page 1 GUEST CHECKOUT TO REGISTERED CUSTOMERS User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products

More information

External Programming of the TMS320C64x EDMA for Low Overhead Data Transfers

External Programming of the TMS320C64x EDMA for Low Overhead Data Transfers Application Report SPRAA36 July 2004 External Programming of the TMS320C64x EDMA for Low Overhead Data Transfers Sébastien Tomas Wireless Infrastructure ABSTRACT This application report details a mechanism

More information

February 2003 PMP EVMs SLVU081

February 2003 PMP EVMs SLVU081 User s Guide February 2003 PMP EVMs SLVU081 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements, improvements, and

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

TIDA V Stepper Motor Controller with Integrated Current Sense Reference Design

TIDA V Stepper Motor Controller with Integrated Current Sense Reference Design Test Report TIDA-00867 November 2015 TIDA-00867 24V Stepper Motor Controller with Integrated Current Sense Reference Design Design Overview TIDA-00867 showcases the benefits of integrated current sensing

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

IMPORT/EXPORT CUSTOMERS FOR MAGENTO 2. User Guide. User Guide Page 1

IMPORT/EXPORT CUSTOMERS FOR MAGENTO 2. User Guide. User Guide Page 1 IMPORT/EXPORT CUSTOMERS FOR MAGENTO 2 User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products

More information

System-on-Chip Battery Board User s Guide

System-on-Chip Battery Board User s Guide System-on-Chip Battery Board User s Guide swru241 Table of Contents 1 Introduction...3 2 About this Manual...3 3 Acronyms and Definitions...3 4 Kit Contents...4 5 Hardware Description...5 5.1 LED, Button

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

DSP/BIOS LINK OMAP2530 EVM LNK 172 USR. Version 1.64 NOV 13, 2009

DSP/BIOS LINK OMAP2530 EVM LNK 172 USR. Version 1.64 NOV 13, 2009 DSP/BIOS LINK OMAP2530 EVM NOV 13, 2009 Document Template Version 1 Page 1 of 21 This page has been intentionally left blank. Page 2 of 21 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries

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

SN5476, SN54LS76A SN7476, SN74LS76A DUAL J-K FLIP-FLOPS WITH PRESET AND CLEAR

SN5476, SN54LS76A SN7476, SN74LS76A DUAL J-K FLIP-FLOPS WITH PRESET AND CLEAR SN5476, SN54LS76A SN7476, SN74LS76A DUAL J-K FLIP-FLOPS WITH PRESET AND CLEAR SDLS121 DECEMBER 1983 REVISED MARCH 1988 PRODUCTION DATA information is current as of publication date. Products conform to

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

Power Line Modem with E-Meter Platform Quick Start Guide

Power Line Modem with E-Meter Platform Quick Start Guide Purpose This document gives a quick summary of the steps to set up and run the platform. Preparation The setup configurations are shown in Figures 1 and 2, depending on whether a USB or RS232 (serial)

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

TMS320C6414T/15T/16T Power Consumption Summary

TMS320C6414T/15T/16T Power Consumption Summary Application Report SPRAA45A February 2008 TMS320C6414T/15T/16T Power Consumption Summary Todd Hiers Matthew Webster C6000 Hardware Applications ABSTRACT This document discusses the power consumption of

More information

GUEST CHECKOUT TO REGISTERED CUSTOMERS

GUEST CHECKOUT TO REGISTERED CUSTOMERS GUEST CHECKOUT TO REGISTERED CUSTOMERS FOR MAGENTO 2 User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to

More information

Writing TMS320C8x PP Code Under the Multitasking Executive

Writing TMS320C8x PP Code Under the Multitasking Executive TMS320 DSP DESIGNER S NOTEBOOK Writing TMS320C8x PP Code Under the Multitasking Executive APPLICATION BRIEF: SPRA269 Leor Brenman Digital Signal Processing Products Semiconductor Group Texas Instruments

More information

Choosing the Appropriate Simulator Configuration in Code Composer Studio IDE

Choosing the Appropriate Simulator Configuration in Code Composer Studio IDE Application Report SPRA864 November 2002 Choosing the Appropriate Simulator Configuration in Code Composer Studio IDE Pankaj Ratan Lal, Ambar Gadkari Software Development Systems ABSTRACT Software development

More information

IMPORT/EXPORT WISH LIST ITEMS FOR MAGENTO 2. User Guide. User Guide Page 1

IMPORT/EXPORT WISH LIST ITEMS FOR MAGENTO 2. User Guide. User Guide Page 1 IMPORT/EXPORT WISH LIST ITEMS FOR MAGENTO 2 User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products

More information

Single Cell Battery Power Solution

Single Cell Battery Power Solution Single Cell Battery Power Solution Input 5V DC Output 2.80.. 4.28V (dependent on charge state of battery) Current limited to 500mA max. Devices TPS2113A Autoswitching Power MUX TPD4S012 4-Channel USB ESD

More information

WM8805_6152_DS28_EV1_REV3 Schematic and Layout. WM8805_6152_DS28_EV1_REV3 Schematic and Layout. Customer Information 1 of 18 June 2007, Rev 3.

WM8805_6152_DS28_EV1_REV3 Schematic and Layout. WM8805_6152_DS28_EV1_REV3 Schematic and Layout. Customer Information 1 of 18 June 2007, Rev 3. Customer Information 1 of 18 June 2007, Rev 3.1 Top Level Customer Information 2 of 18 June 2007, Rev 3.1 S/PDIF Inputs Customer Information 3 of 18 June 2007, Rev 3.1 WM8805 Customer Information 4 of

More information

HV Solar MPPT DC-DC GUI Overview. Getting Started Guide

HV Solar MPPT DC-DC GUI Overview. Getting Started Guide HV Solar MPPT DC-DC GUI Overview Getting Started Guide Literature Number: TIDU403 September 2014 Contents 1 Getting Started... 5 2 Running the Application... 6 2.1 GUI Structure... 9 2.2 Using the GUI...

More information

Board Layout Adjustments Between the TNETE2201B and TLK2201/TLK1201

Board Layout Adjustments Between the TNETE2201B and TLK2201/TLK1201 Application Report SLLA115 May 2002 Board Layout Adjustments Between the TNETE2201B and TLK2201/TLK1201 Lori Schnier; Falk Alicke, Thomas Neu HPA Wizard Serial Links ABSTRACT This report explains the different

More information

TMS470R1x Serial Communication Interface (SCI) Reference Guide

TMS470R1x Serial Communication Interface (SCI) Reference Guide TMS470R1x Serial Communication Interface (SCI) Reference Guide Literature Number: SPNU196A September 2002 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to

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

TMS470R1VF334E TMS470 Microcontrollers Silicon Errata

TMS470R1VF334E TMS470 Microcontrollers Silicon Errata TMS470R1VF334E TMS470 Microcontrollers Silicon Errata Silicon Revision C August 2005 Copyright 2005, Texas Instruments Incorporated Contents 1 Known Design Marginality/Exceptions to Functional Specifications.....................................

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

1. Installation Instructions

1. Installation Instructions Table of Contents 1. Extension installation instructions 2. Accessing the extension main settings 3. Search Autocomplete settings 4. Search Autocomplete on the front-end 5. User Agreement 6. Support and

More information

PCI Express XMC to PCI Express Adapter with J16 Connector Breakout DESCRIPTION

PCI Express XMC to PCI Express Adapter with J16 Connector Breakout DESCRIPTION PCI Express XMC to PCI Express Adapter with J16 Connector Breakout FEATURES Adapt one XMC.3 (PCI Express VITA 42.3) module to a PCI Express slot PCI Express x1 lane interface Active signal equalization

More information

DSP/BIOS LINK MESSAGING COMPONENT LNK 031 DES. Version 1.30

DSP/BIOS LINK MESSAGING COMPONENT LNK 031 DES. Version 1.30 DESIGN DOCUMENT DSP/BIOS LINK Author(s) Mugdha Kamoolkar Approval(s) Sanjeev Premi Template Version 1.2 Page 1 of 148 This page has been intentionally left blank. Page 2 of 148 IMPORTANT NOTICE Texas Instruments

More information

File Downloads User Guide

File Downloads User Guide User Guide Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue any product

More information