Maximizing Endurance of MSC1210 Flash Memory

Size: px
Start display at page:

Download "Maximizing Endurance of MSC1210 Flash Memory"

Transcription

1 Application Report SBAA91 April 23 Maximizing Endurance of MSC121 Flash Memory Ramesh Saripalli ABSTRACT Data Acquisition Products Microsystems The MSC121 embeds an 851 CPU, a high-performance, delta-sigma, 24-bit analog-todigital converter (ADC), 4/8/16/32K bytes flash memory (Flash) and other peripherals to give a system on-chip solution for high-precision data acquisition systems [1]. The endurance the number of times Flash can be erased and reprogrammed without failure is an important feature of Flash. This application report presents how to maximize the endurance of MSC121 Flash and also discusses the data retention specifications of the MSC121. Contents Introduction... 2 MSC121 Flash Technology and System... 2 Endurance... 2 Endurance Mechanism... 3 System Setup... 3 Measurement Procedure... 3 Erase/Program Operations... 3 Pattern... 3 Parameters... 4 Sample Size... 4 Firmware... 4 Endurance Results... 5 Temperature... 5 Voltage... 6 Erase Time... 7 Maximizing the Endurance... 7 Data Retention... 8 Appendix A: Table of Endurance Results for Different Test Conditions... 9 Appendix B: Graphs for Different Test Conditions... 1 Appendix C: Data Retention at Different Junction Temperatures References

2 Introduction Flash microcontrollers and Flash are popular these days. These devices can be programmed and erased in system. Flash can be programmed the same way as the EEPROM, however, Flash can be erased electrically, whereas, EPROM must be erased using a UV eraser. The memory is called flash because part or all of these devices can be erased in a flash. When compared to EEPROM, Flash offers higher performance, lower power consumption, and significant cost savings. The MSC121 family uses Flash for both data and code memory. MSC121 Flash Technology and System The MSC121 family uses NOR-type Flash. NOR Flash has large sector size and cell size, highspeed rewrite, and high-speed random data access. NOR devices use hot electron injection for data writing and tunnel release for erasing. Figure 1 shows the Flash system of the MSC121 from the user s perspective. You can write to the FTCON register [1] to modify the erase and write time of Flash. The Flash commands call the Flash subroutines in the internal boot ROM, which sends the signals to the Flash Controller. The controller executes commands like Flash Write, Flash Read, Flash Erase and Page Erase on the flash memory. Flash Commands Boot ROM Flash Controller 32K Bytes Flash Data and Program Memory FTCON 128 Bytes Flash HCR Figure 1. User s View of a Flash Memory System Main Flash Storage: 32K bytes (Y5), 16K bytes (Y4), 8K bytes (Y3), and 4K bytes (Y2) Configuration Flash Storage: 128 bytes Erase/Write Storage Value: Erase to all 1s; valid write value ; write 1 has no effect. Flash Structure: NOR-type Flash Page Size: 128 bytes Read Time: Minimum of 3ns (~33MHz CPU clock) Write Time: 3µs ~4µs Page/Mass Erase Time: 4ms Power Supply: 2.7V~5.25V DVDD for all operations (read/write/page erase/mass erase) Endurance Like their EEPROM counterparts, Flash devices have a limited number of erase/write cycles they can withstand without failure. The reason for the limitation depends on either charge trapping characteristics or the dielectric breakdown characteristics of the charge transfer oxides. This introduces a term called endurance. Endurance is a measure of the number of erase/write cycles that a Flash array can achieve while retaining data integrity. The endurance of Flash is a function of many parameters, the most important being temperature, voltage, erase-time, and write-time. 2 Maximizing Endurance of MSC121 Flash Memory

3 Endurance Mechanism To find out how to maximize the endurance of the MSC121, we need to perform an endurance test with varying parameters, and analyze the data to determine how they affect the endurance. System Setup PC or Host RS232 Master Board 37-Pin Connector Gang Board Oven Temp 4 C~85 C Figure 2. System Setup for Performing an Endurance Test The system setup to perform the endurance testing is shown in Figure 2. A master board connects to the PC through RS232 for serial communications. The PC is used to select the options, start the test, and display the results. The master board has an MSC121, which receives the signals from the PC and starts sending the Flash commands to the slaves sitting on the gang board. Each gang board can hold up to ten MSC121s, and a total of eight gang boards can be connected to the master board at the same time, giving us the flexibility to test 1 to 8 chips at a time. The gang boards go into the oven and the test is performed at varying temperatures. In order to perform the test at 3V and 5V, the gang and master boards have hardware support to run at these voltages. Flash-erase and Flash-write times are user-modifiable and can be programmed before running the test. If more accurate data is needed, the software gives the option of performing the test on more than one page for the same test conditions. Measurement Procedure The endurance test is performed without violating the Flash data retention specifications. The minimum required write-time of 3µs and erase-time of 4ms must be maintained in order to meet the data retention specifications of 1 years. The measurement procedure to find out the endurance is followed in accordance with the JEDEC specification [2]. Erase/Program Operations Pattern Flash can be erased either as a whole or by one page at a time (a page being 128 bytes). The test is performed on one page at a time. The sequences of operations that are performed to get the endurance are page-erase and then page-write. This procedure is performed until either page-erase or any one of the write operations fails. In MSC121 Flash technology, a charge is injected when you erase Flash (logic 1), and is discharged when you write Flash (logic ). Writing the bit to logic 1 does not perform any action, as the charge is already injected when it is erased. It is unknown if the ability of the gate in trapping the electrons is destroyed by injection of a charge, or by discharging. Therefore, each data bit location in Flash is programmed to a different value than what was programmed previously, in order to do average work on that bit location. The algorithm for Flash pattern generation for a page is shown in List 1. Maximizing Endurance of MSC121 Flash Memory 3

4 Parameters While(!Test Fail) { Write_value=xAA; For(i=;i<128;i++) { // Procedure call for writing the data location pointed by the address ( addr_hi, addr_low ) with Write_value. Flash write(addr_hi, addr_low, write_value ); Addr_low++; } Write_value=write_value^xFF; // Changing xaa (x55) to x55 (xaa) } List 1. Pattern Generation for Writing to the Page Endurance is a function of temperature, voltage, erase time, and write time. The experiment was performed varying these parameters. In the initial test results, it was observed that changing the write time, ranging 3µs~6µs, does not change the endurance as much as the other parameters. Therefore, write time is not changed during the course of experiment and is fixed to 3µs. The experiment is repeated with different temperatures, voltages, and erase-times. The different test conditions are shown in Table 1. -4, 27, 85 Voltage (V) 5, 3 Erase Time (ms) 4, 11 Table 1. List of All the Different Test Conditions for Endurance Testing Because the MSC121 allows you to control the erase/write times, the external clock frequency of the device does not need to be changed in order to change these parameters. Sample Size Firmware To get credible information on the endurance of MSC121 we ran the test on ten different parts for each test condition. The Flash commands issued by the master to the slave devices call the subroutines from the boot ROM. Therefore, it is very important to note how the boot ROM routines work [3]. The two routines that are used for endurance measurement are Flash write and Flash page-erase. Flash Write: This subroutine is called by the Flash write command. It attempts to write a byte of data to Flash at the specified address. The routine reads back the data after writing and verifies if the write was successful. If successful, it then sets the pass flag. Otherwise, it tries again for a maximum of three attempts. If after three attempts the write is still not successful, a fail flag is returned. Flash Page-Erase: This subroutine is called by the Flash page-erase command. It attempts to erase the page at the specified address. After page-erase is done, the routine reads the first byte of the page and verifies it with xffh. If it matches, then the pass flag is set and the routine exits. Otherwise, it tries again for a maximum of three attempts. If after three attempts the write is still not successful, a fail flag is returned. 4 Maximizing Endurance of MSC121 Flash Memory

5 Endurance Results The results of the endurance test for different temperatures, voltages and erase times are presented in Appendix A. For each test condition, the results from the ten chips are collected. The mean and standard deviation (SD) of the endurance within the sample size is calculated and tabulated. Temperature The effect of temperature on endurance is significant. From the experimental results presented in Appendix A and from the graph in Figure 3, we can see that Flash endurance increases with an increase in temperature. The same relationship exists in all the graphs for different test conditions. The graph shown in Figure 3 is for 5V and 11ms erase time. Endurance (Erase/Write Cycles) Performance (5V) Mean Mean+SD Mean-SD Temperature( C) Figure 3. Endurance Results Over a Temperature Range at 5V and 11ms of Erase Time The graph of Figure 3 plots the endurance results over the temperature range and also shows the mean +SD and mean -SD as a reference. The maximum endurance of 3.8 million cycles is attained at 85 C. Interestingly, it is also observed that the standard deviation of the endurance increases as the temperature increases. That can be seen in Figure 3; the distance between the points of the three curves increases as the temperature increases. Maximizing Endurance of MSC121 Flash Memory 5

6 Voltage Flash endurance increases as the voltage increases. This effect can be explained by the use of a charge pump at higher voltages, which helps in inducing more charges into the tunnel oxide. Figure 4 shows the endurance for 3V and 5V at 11ms. It shows that the endurance at all temperature points has increased as the voltage increased. Endurance Performance for Different Voltages No Of Cycles V 3V Figure 4. Endurance Performance for Different Voltages at an 11ms Erase Time For each temperature and erase time, the endurance measured for 3V and 5V is tabulated, and the percentage increase in endurance with respect to the endurance at 3V is calculated, and is tabulated in Table 2. It is observed that the percentage increase in the endurance is significant (close to 85%) as the voltage is increased from 3V to 5V. Endurance at 3V Endurance at 5V Percentage Increase in Endurance Test Condition (Number of Cycles) (Number of Cycles) (%) -4 C and 11ms erase time C and 11ms erase time C and 11ms erase time Table 2. Percentage Increase in Endurance vs Voltage 6 Maximizing Endurance of MSC121 Flash Memory

7 Erase Time Flash endurance increases with an increase in erase time. This can be explained by the longer amount of time it takes to charge the memory cells during erase. The charge pump is used for longer periods, and thus, helps in trapping more charge in the tunnel oxide. However, prolonged use of the charge pump at higher voltages degrades the gate oxide, and thereby decreases endurance. It is not known which parameter has more effect, but endurance increased as erase time increased. Figure 5 shows the endurance performance for 5V with different erase times. Endurance Performance for Different Erase Times ms 4ms Figure 5. Endurance Performance for Different Erase Times at 5V It can be seen from Figure 5 that the effect of erase time seems to be insignificant at lower temperatures, but becomes significant as temperature increases. The same effect is observed at 3V, as shown in Appendix B, Figure 1. An increase in erase time does not have the same effect as an increase in voltage, but the percentage increase in endurance is still significant and is in the range of 2% to 4%. Maximizing the Endurance From the results acquired, the following observations can be made: Increasing the voltage increases the endurance. Increasing the erase time increases the endurance. Increasing the temperature increases the endurance. If the user wants to maximize endurance, the MSC121 has to operate at a higher voltage, and the erase time must be set to a minimum of 1ms by setting the FTCON register. The Flash write and erase routines must be used from the boot ROM to achieve the results that are presented. No additional code is required by the user to achieve the results. Additionally, by being able to control the ambient temperature, better endurance results can be achieved. The user can also estimate the endurance for their conditions. It is very important to note that the results, and the predictions of the results, are within the test condition limits, and these results cannot be used to extrapolate outside the these limits. Maximizing Endurance of MSC121 Flash Memory 7

8 Data Retention The basic requirement for Flash is that of data retention. Flash must ensure a period over which the data will be retained by the device. The data retention strongly depends on the temperature. Data retention is defined as trying to maintain a logic value in the storage medium over a period of time. The data retention test is performed at higher temperatures for a lesser duration of time so that the results can be extrapolated using the Arrhenius equation 1 at lower temperatures. Data retention of MSC121 Flash was performed at 25 C for 1 hours, and the results showed that none of the parts failed for retention. The graph in Figure 6 plots the data retention in years over junction temperature and the tabulated data is presented in Appendix C, Table 4. Data retention at 3 C junction temperature is 244 years. Data Retention Over Temperature Retention (Years) Tj Junction Figure 6. Data Retention in Years over Junction Temperature NOTE: A minimum of 3µs for Flash write operation and a minimum of 4ms for Flash erase (mass/page) operation are required for the data retention values specified in Appendix C to be valid. (1) t1 = t exp[(q/k) (1/T1 1/T)] Where: t = Test Duration at temp T t1 = Equivalent Duration at temp T1 Q = Activation Energy (ev) k = Boltzmann Constant T = Test Temperature (K) T1 = Extrapolation Temperature (K) 8 Maximizing Endurance of MSC121 Flash Memory

9 Appendix A: Table of Endurance Results for Different Test Conditions Table 3 shows the endurance for different test conditions. The graphs for the data are shown in Appendix B. Temperature ( C) Erase Time (ms) Voltage (V) Mean (No. of Cycles) SD (No. of Cycles) Table 3. Endurance Results for Different Test Conditions Maximizing Endurance of MSC121 Flash Memory 9

10 Appendix B: Graphs for Different Test Conditions Endurance (Erase/Write Cycles) Performance (3V) Figure 7. Endurance Results at 3V and 4ms Erase Time Endurance (Erase/Write Cycles) Performance (3V) Figure 8. Endurance Results at 3V and 11ms Erase Time Endurance (Erase/Write Cycles) Performance (5V) Endurance Variations on Erase Time ms 4ms Figure 9. Endurance Results at 5V and 4ms Erase Time Figure 1. Endurance Performance for Different Erase Times at 3V Endurace Variations on Voltage V 3V Figure 11. Endurance Performance for Different Voltages at 4ms Erase Time 1 Maximizing Endurance of MSC121 Flash Memory

11 Appendix C: Data Retention at Different Junction Temperatures The difference between junction and ambient temperatures can be calculated using θ JA [1] and the power dissipated by the chip. Once the ambient temperature is known, the data retention can be calculated from the graph plotted in Figure 6. Temperature ( C) Data Retention (In Years) Table 4. Data Retention at Different Junction Temperatures References [1] MSC121 Data Sheet [2] JEDEC Standard EEPROM Program/Erase Endurance and Data Retention Test JESD22-A117 [3] MSC121: ROM Routines SBAA85 [4] MSC121: In-Application Flash Programming SBAA87 Maximizing Endurance of MSC121 Flash Memory 11

12 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 23, Texas Instruments Incorporated

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

CCD VERTICAL DRIVER FOR DIGITAL CAMERAS

CCD VERTICAL DRIVER FOR DIGITAL CAMERAS CCD VERTICAL DRIVER FOR DIGITAL CAMERAS FEATURES CCD Vertical Driver: Three Field CCD Support Two Field CCD Support Output Drivers: 3 Levels Driver (V-Transfer) x 5 2 Levels Driver (V-Transfer) x 3 2 Levels

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

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

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

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

Quad-Channel TEC Controller Getting Started Guide. Contents. Introduction. Contents of Evaluation Kit

Quad-Channel TEC Controller Getting Started Guide. Contents. Introduction. Contents of Evaluation Kit Contents Introduction... 1 Contents of Evaluation Kit... 1 Quad-TEC Platform Overview... 2 Installing the Control Software... 2 Removing the Quad-TEC Platform from its Protective Packaging... 2 Connecting

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

SN54LVTH16374, SN74LVTH V ABT 16-BIT EDGE-TRIGGERED D-TYPE FLIP-FLOPS WITH 3-STATE OUTPUTS

SN54LVTH16374, SN74LVTH V ABT 16-BIT EDGE-TRIGGERED D-TYPE FLIP-FLOPS 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

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

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

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

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

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

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

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

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

AntMiner S9 Installation Guide

AntMiner S9 Installation Guide AntMiner S9 Installation Guide Document Version 0.1 June 2016 Copyright Bitmain Technologies Ltd. 2007 2016. All rights reserved. Bitmain Technologies Ltd. (Bitmain) reserves the right to make corrections,

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

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

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

Application Report. Low-Power Wireless. Shreharsha Rao... ABSTRACT

Application Report. Low-Power Wireless. Shreharsha Rao... ABSTRACT Application Report SWRA043B July 2005 Dolphin Frequency Hopping Spread Spectrum Chipset Host Interface Protocol Shreharsha Rao... Low-Power Wireless ABSTRACT The Dolphin is a FCC precertified reference

More information

COMMUNICATIONS WITH THE MULTI- CHANNEL HOST P RT INTERFACE

COMMUNICATIONS WITH THE MULTI- CHANNEL HOST P RT INTERFACE 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

More information

AntMiner L3+ Installation Guide

AntMiner L3+ Installation Guide AntMiner L3+ Installation Guide Document Version 0.1 April 2017 Copyright Bitmain Technologies Ltd. 2017 2027. All rights reserved. Bitmain Technologies Ltd. (Bitmain) reserves the right to make corrections,

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

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

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

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

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

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

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

Digital Temperature Sensor with I 2 C Interface

Digital Temperature Sensor with I 2 C Interface TMP00 TMP0 Digital Temperature Sensor with I 2 C Interface SBOS23B JANUARY 2002 REVISED MAY 2002 FEATURES DIGITAL OUTPUT: I 2 C Serial 2-Wire RESOLUTION: 9- to 2-Bits, User-Selectable ACCURACY: ±2.0 C

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

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

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

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

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

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

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

AntMiner T9 Installation Guide

AntMiner T9 Installation Guide AntMiner T9 Installation Guide Document Version 0.1 Jan 2017 Copyright Bitmain Technologies Ltd. 2007 2016. All rights reserved. Bitmain Technologies Ltd. (Bitmain) reserves the right to make corrections,

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

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

Stereo Audio Volume Control

Stereo Audio Volume Control PGA2310 Stereo Audio Volume Control FEATURES DIGITALLY CONTROLLED ANALOG VOLUME CONTROL Two Independent Audio Channels Serial Control Interface Zero Crossing Detection Mute Function WIDE GAIN AND ATTENUATION

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

TMS320C6000 DSP Expansion Bus: Multiple DSP Connection Using Asynchronous Host Mode

TMS320C6000 DSP Expansion Bus: Multiple DSP Connection Using Asynchronous Host Mode Application Report SPRA632A - August 2001 TMS320C6000 DSP Expansion Bus: Multiple DSP Connection Using Asynchronous Host Mode Kyle Castille DSP Applications ABSTRACT You can easily interface multiple TMS320C6000

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

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

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

AntMiner D3 Installation Guide

AntMiner D3 Installation Guide AntMiner D3 Installation Guide Document Version 0.1 Aug 2017 Copyright Bitmain Technologies Ltd. 2007 2016. All rights reserved. Bitmain Technologies Ltd. (Bitmain) reserves the right to make corrections,

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

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

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

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

Texas Instruments Solution for Undershoot Protection for Bus Switches

Texas Instruments Solution for Undershoot Protection for Bus Switches Application Report SCDA007 - APRIL 2000 Texas Instruments Solution for Undershoot Protection for Bus Switches Nadira Sultana and Chris Graves Standard Linear & Logic ABSTRACT Three solutions for undershoot

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

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

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

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

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

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

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

Radiation Tolerant Analog I/O Module KM6782.1

Radiation Tolerant Analog I/O Module KM6782.1 Radiation Tolerant Analog I/O Module KM6782.1 MAIN FEATURES Power Consumption: 2W Voltage channels: 16 diff. signals Temperature Channels: 22 x AD590 & 6 PT1000 Onboard Calibration Dimensions: 160x100

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

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

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

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

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

The photographs below show the top and bottom view of the PMP11282Rev A board, which is built on PMP11064 Rev B PCB. Top Side

The photographs below show the top and bottom view of the PMP11282Rev A board, which is built on PMP11064 Rev B PCB. Top Side 1 Photo The photographs below show the top and bottom view of the PMP11282Rev A board, which is built on PMP11064 Rev B PCB. Top Side Bottom Side Page 1 of 22 2 Efficiency The efficiency curves of total

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

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

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

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

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

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

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

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

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

XMC Adapter for 3U cpci/pxi

XMC Adapter for 3U cpci/pxi PCI Express XMC to Compact PCI Adapter with PXI support; Air or Conduction Cooling V 1.3 FEATURES Adapt one XMC.3 (PCI Express VITA 42.3) module to a 3U compact PCI/PXI PCI/PCI-X 64 bit, 133MHz interface

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

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