AN1185 APPLICATION NOTE Designing for Compatibility between ST and AMD NOR Flash Memories

Size: px
Start display at page:

Download "AN1185 APPLICATION NOTE Designing for Compatibility between ST and AMD NOR Flash Memories"

Transcription

1 AN1185 APPLICATION NOTE Designing for Compatibility between ST and AMD NOR Flash Memories STMicroelectronics offers a range of Flash memory products that are hardware and software compatible with AMD devices. Identifying differences (or similarities) between parts from different manufacturers can be a daunting task; this document aims at pointing out the similarities between the devices offered by each manufacturer and also highlights the differences that may require software or hardware modifications. The information content in this application note is believed to be correct at the time of publishing. However, frequent modifications to Flash memories occur and you must always check the information with the latest datasheets. NOR FLASH MEMORY TECHNOLOGY Different technologies exist to produce Flash memories. Today, NOR Flash memories still have the lion s share of the market but the demand for NAND Flash memories is growing fast. In terms of compatibility, a device of one technology can only be replaced by a device of the technology. Only NOR devices will be discussed in this Application Note, even though STMicroelectronics manufactures both technologies. NOR-type Flash memories are typically organized as a number of blocks whose size ranges between 16 KBytes and 128 KBytes. Each of these blocks can be individually erased or programmed. The architecture can be either uniform if all of the blocks are of the size, or asymmetrical, if the blocks vary in size. The array can be organized as a single piece of memory or split into dual or multiple banks. The device can also have a top or bottom boot block configuration depending on where the boot blocks, which are dedicated to the storage of the boot code, are located in the memory address space. NOR Flash memories offer fast random access times (currently in the region of 35ns to 120ns) and fast random write times (8µs per Byte). The fast random access of NOR memories and their excellent reliability make these memories suitable for code storage and low-density data storage. March /8

2 TABLE OF CONTENTS NOR FLASH MEMORY TECHNOLOGY PORTABILITY ISSUES Device and Manufacturer Codes PART NUMBERS Table 1. Part Numbering Scheme for Standard STMicroelectronics Flash memories Table 2. Equivalent Parts List CONCLUSION REVISION HISTORY Table 3. Document Revision History /8

3 PORTABILITY ISSUES For two parts from different manufacturers to be compatible, a number of requirements should be satisfied: they should have the package, and the signals should be pin for pin compatible. the DC characteristics and the AC characteristics should also be compatible (e.g. voltage requirements and bus timing requirements). in the case of Flash memories, there is another layer that also needs to be compatible, the software command layer. When you write to a Flash memory you write to a Command Interface that interprets the commands you send, and executes them. In order for two Flash memories to be compatible they need to have more than pin-out compatibility, they need to be command compatible too. STMicroelectronics has different Command Set families, but only the M29 series Flash memories will be addressed in this Application Note. This Command Set is also used by some of AMD s devices and we will study the compatibility between these products and ST s M29 series. Within the Command Set shared by AMD and STMicroelectronics M29 series Flash memories there are some minor differences that do not affect most software code. The differences that did exist have been ironed out over time in order to try and make each part a second source to the other. Some of the command set differences are obvious and simple to fix, others are a little more obscure. Not all the differences between equivalent parts are discussed here because this would make too complex a document, however Table 2., Equivalent Parts List, shows the parts that can be used as a second source to each other. One of the main differences is related to Device and Manufacturer Codes that differ between the parts: some software may be written to work with different sized parts and may use the Device Code to select the correct memory size. When designing for compatibility between manufacturers it is necessary to include a means of identifying each part from each manufacturer, then the parts can be interchanged without modification to the software. A lot of software never reads the Device and Manufacturer codes and is, therefore, not affected by this difference. Device and Manufacturer Codes Coping with several Device and Manufacturer Codes in the software can be simple if it is designed into the software at the start. There are many instances, however, where it is necessary to write a quick fix so an additional Flash memory can be used. If the time pressure is such that the software cannot be made to look up the characteristics of several different Flash memories then a simple fix is to translate equivalent memories into a memory that is known by the system. Consider software that has a function called device_code(), written as follows: unsigned int device_code( void ) { unsigned int i; /* Write AutoSelect Sequence */ FlashWrite( 0x5555L, 0xAA ); /* Note the use of A0-A14 in AutoSelect */ FlashWrite( 0xAAAAL, 0x55 ); /* which allows Autoselct to identify older memories */ FlashWrite( 0x5555L, 0x90 ); /* Autoselect mode */ i = ReadFlash( 0x0001L ); /* Device code at address XXX1h */ FlashWrite( 0x0000h, 0xF0 ); /* Read/Reset to return to Read Mode */ } return i; 3/8

4 An effective way to quickly re-write this function so an AMD Am29F040B could be replaced by an M29F040B is: unsigned int device_code( void ) { unsigned int i; /* Write AutoSelect Sequence */ FlashWrite( 0x5555L, 0xAA ); /* Note the use of A0-A14 in AutoSelect */ FlashWrite( 0xAAAAL, 0x55 ); /* which allows Autoselct to identify older memories */ FlashWrite( 0x5555L, 0x90 ); /* Autoselect mode */ i = FlashRead( 0x0001L ); /* Device code at address XXX1h */ if( FlashRead( 0x0000L ) == 0x20h /* Check for ST manufacturer code */ && i == 0xE2 ) /* And M29F040B device code */ i = 0xA4; /* Replace with AMD s device code, they are compatible anyway */ FlashWrite( 0x0000h, 0xF0 ); /* Read/Reset to return to Read Mode */ return i; } No other changes are required to the software due to the compatibility of AMD and STMicroelectronics devices. This may be a crude way to adapt your software, but it will take 5 minutes. Adding a look-up table to a piece of software you have inherited and do not fully understand can lead to many unforeseen problems. Note that it may also be necessary to change the equivalent function, manufacturer_code(), if one exists. If you require further help with understanding the software required to operate a Flash memory then ST- Microelectronics has a range of software drivers for nearly all of our Standard Flash memory products. There are extensive comments in the code to help you understand how to operate your Flash memory. PART NUMBERS The part numbering scheme used by STMicroelectronics and AMD is very similar. Table 1. shows the example of the M29F400BB55N1 (equivalent to AMD s Am29F400BB55EC). All STMicroelectronics parts start with M29 and AMD parts start with Am29. The following letter(s) define the voltage: an F indicates a Single Supply 5V part; a W (STMicroelectronics) or LV (AMD) indicates a Single Supply 3V part, a D before W means that the memory array is split in dual or multiple banks with dual operation. The following three digits indicate the size and architecture of the memory, for example an 040 is a 4 Mbit Uniform Block memory; an 800 is an 8 Mbit Boot Block memory, etc. The following letter indicates the Device Revision (most parts are currently at revision D ). An optional letter located after the Device Revision letter refers to additional features like Reset/Block Temporary Unprotect pin (letter N ) or Write Protection pin ( H, L, U ). The Array Matrix (Top/Bottom for Boot Block memories, none for Uniform) follows the Device Revision. Finally the speed, package, temperature and other options follow. Table 2. lists the equivalent parts from the two manufacturers. If you cannot find a second source for a particular part, contact STMicroelectronics as parts are always in development. We may have the part you require ready in time for your production. 4/8

5 Table 1. Part Numbering Scheme for Standard STMicroelectronics Flash memories Device Type M29 STMicroelectronics Definition AMD Equivalent Example M29 F400B H B 55 N 1 Am29 Operating Voltage F = V CC = 5V ± 10% W = V CC = 2.7 to 3.6V DW= Dual Operation, V CC = 2.7 to 3.6V Device Function + Device Revision 010B = 1Mb (x8), Uniform 102B = 1Mb (x16), Boot 200B = 2Mb (x8, x16), Boot 002B, BN = 2Mb (x8), Boot, Reset/Block Temporary Unprot. pin 040B = 4Mb (x8), Uniform 004B = 4Mb (x8), Boot 400B, 400D = 4Mb (x8, x16), Boot 080D = 8Mb (x8), Uniform 800D, 800DX = 8Mb (x8, x16), Boot 016D, 017D= 16Mb (x8), Uniform 160D, 160E = 16Mb (x8, x16), Boot 032D = 32Mb (x8), Uniform 320D = 32Mb (x8, x16), Boot 323D = 32Mb (x8, x16), Dual Bank 8:24, Boot 324D =32Mb (x8,x16), Dual Bank 16:16, Boot 640D = 64Mb (x8, x16), Boot Additional Feature N = No Reset/Temporary Write Protect pin (for M29GF002B) F LV DL 080B 800B 160D 324G - Array Matrix T = Top Boot B = Bottom Boot Speed 35 = 35 ns 45 = 45 ns 55 = 55 ns 70 = 70 ns 90 = 90 ns 120 = 120 ns Package K = PLCC N = TSOP M = SO P = PDIP Temperature Range 1 = 0 to 70 C 3 = 40 to 125 C 6 = 40 to 85 C J E S P C E I 5/8

6 Table 2. Equivalent Parts List ST Part Number AMD Part Number Description M29F010B Am29F010B 1 Mbit (128Kb x8, Uniform Block) Single Supply 5V M29W010B Am29LV010B 1 Mbit (128Kb x8, Uniform Block) Single Supply 3V M29F102BB 1 Mbit (64Kb x16, Bottom Boot Block) Single Supply 5V M29W102BB, BT 1 Mbit (64Kb x16, Boot Block) Single Supply 3V M29F200BB, BT Am29F200B 2 Mbit (256Kb x8 or 128Kb x16, Boot Block) Single Supply 5V M29W200BB, BT Am29LV200B 2 Mbit (256Kb x8 or 128Kb x16, Boot Block) Single Supply 3V M29F002BB,BT, BNT,BNB Am29F002B, NB 2 Mbit (256Kb x8,boot Block, Reset/Block Temporary Unprotect pin) Single Supply 5V idem without Reset/Block Temporary Unprotect pin M29W022BB, BT No Equivalent 2 Mbit (256Kb x8, Boot Block) Low Voltage Single Supply Flash Memory M29F040B Am29F040B 4 Mbit (512Kb x8, Uniform Block) Single Supply 5V M29W040B Am29LV040B 4 Mbit (512Kb x8, Uniform Block) Single Supply 3V M29F400BB, BT Am29F400B 4 Mbit (512Kb x8 or 256Kb x16, Boot Block) Single Supply 5V M29W400BB, BT Am29LV400B 4 Mbit (512Kb x8 or 256Kb x16, Boot Block) Single Supply 3V M29W400DB, DT Am29LV400B 4 Mbit (512Kb x8 or 256Kb x16, Boot Block) Single Supply 3V M29W004BB, BT Am29LV004B 4 Mbit (512Kb x8, Boot Block) Single Supply 3V M29F080D Am29F080B 8 Mbit (1Mb x8, Uniform Block) Single Supply 5V M29F080A AM29F080B 8 Mbit (1Mb x8, Uniform Block) Single Supply Flash Memory M29F800A AM29F800B 8 Mbit (1Mb x8 or 512Kb x16, Boot Block) Single Supply Flash Memory M29F800DB, DT Am29F800B 8 Mbit (1Mb x8 or 512Kb x16, Boot Block) Single Supply 5V M29W008A AM29LV008B 8 Mbit (1Mb x8, Boot Block) Low Voltage Single Supply Flash Memory M29W800AT, AB AM29LV800B 8 Mbit (1Mb x8 or 512Kb x16, Boot Block) Low Voltage Single Supply Flash Memory M29W800DB, DT Am29LV800B 8 Mbit (1Mb x8 or 512Kb x16, Boot Block) Single Supply 3V M29F016B AM29F016D 16 Mbit (2Mb x8, Uniform Block) Single Supply Flash Memory M29F016D Am29F016D 16 Mbit (2Mb x8, Uniform Block) Single Supply 5V M29W160DB, DT Am29LV160D 16 Mbit (2Mb x8 or 1Mb x16, Boot Block) Single Supply 3V M29W160EB, ET Am29LV160D 16 Mbit (2Mb x8 or 1Mb x16, Boot Block) Single Supply 3V M29W017D Am29LV017D 16 Mbit (2Mb x8, Uniform Block) Single Supply 3V M29F032D Am29F032B 32 Mbit (4Mb x8, Uniform Block) Single Supply 5V M29W320DB, DT Am29LV320D 32 Mbit (4Mb x8, 2Mbx16 Boot Block) Single Supply 3V M29DW323DB, DT Am29DL323D 32 Mbit (4Mb x8, 2Mbx16, Dual Bank 8:24, Boot Block) Single Supply 3V M29DW324DB, DT Am29DL324G 32 Mbit (4Mb x8, 2Mbx16, Dual Bank 16:16, Boot Block) Single Supply 3V M29W640DB, DT Am29LW640D 64 Mbit (8Mb x8, 4Mbx16, Boot Block) Single Supply 3V M29DW640D Am29DL640G 64 Mbit (8Mb x8, 4Mbx16, Multiple Bank, Boot Block) Single Supply 3V 6/8

7 CONCLUSION This Application Note shows that the M29 series NOR Flash memories and the AMD AM29 series NOR Flash memories are very similar, which makes second sourcing possible. Most equivalent parts have the pinout, command set and bus configuration and so, are 100% compatible. The software only needs to be changed to cater for a few differences (when any), and when additional Flash memories are used as the manufacturer specific identification codes differ. But the modifications are straightforward. REVISION HISTORY Table 3. Document Revision History Date Version Revision Details 01-Jan First Issue 30-Mar Application Note completely rewritten. 7/8

8 If you have any questions or suggestions concerning the matters raised in this document, please send them to the following electronic mail addresses: (for general enquiries) Please remember to include your name, company, location, telephone number and fax number. Information furnished is believed to be accurate and reliable. However, STMicroelectronics assumes no responsibility for the consequences of use of such information nor for any infringement of patents or other rights of third parties which may result from its use. No license is granted by implication or otherwise under any patent or patent rights of STMicroelectronics. Specifications mentioned in this publication are subject to change without notice. This publication supersedes and replaces all information previously supplied. STMicroelectronics products are not authorized for use as critical components in life support devices or systems without express written approval of STMicroelectronics. The ST logo is a registered trademark of STMicroelectronics. All other names are the property of their respective owners STMicroelectronics - All rights reserved STMicroelectronics GROUP OF COMPANIES Australia - Belgium - Brazil - Canada - China - Czech Republic - Finland - France - Germany - Hong Kong - India - Israel - Italy - Japan - Malaysia - Malta - Morocco - Singapore - Spain - Sweden - Switzerland - United Kingdom - United States 8/8

STEVAL-ISA001V1. 6W Dual Output Supply using VIPer12A. Features. Blue angel. Applications

STEVAL-ISA001V1. 6W Dual Output Supply using VIPer12A. Features. Blue angel. Applications Features Switch mode General Purpose Power Supply Input: 85 to 264 VAC @ 50/60 Hz Output: 12V @ 0.5A Output Power (peak) 6W Burst Mode Operation in Standby for Blue Angel operation Current Mode Control

More information

STEVAL-ILL015V1. High brightness RGB LED array with LED error detection based on the STP24DP05 and STM32. Features. Description

STEVAL-ILL015V1. High brightness RGB LED array with LED error detection based on the STP24DP05 and STM32. Features. Description High brightness RGB LED array with LED error detection based on the STP24DP05 and STM32 Data Brief Features Two STP24DP05 devices (TQFP48 package) connected to 3 X 16 RGB high brightness LEDs STM32 microcontroller

More information

ROBOT-M24LR16E-A. Evaluation board for the M24LR16E-R dual interface EEPROM. Features. Description

ROBOT-M24LR16E-A. Evaluation board for the M24LR16E-R dual interface EEPROM. Features. Description Features Evaluation board for the M24LR16E-R dual interface EEPROM 20 mm x 40 mm 13.56 MHz inductive antenna etched on PCB M24LR16E-R dual interface EEPROM I²C connector Energy harvesting output (V OUT

More information

STEVAL-SPBT2ATV2. USB Dongle for the Bluetooth class 2 SPBT2532C2.AT module. Features. Description

STEVAL-SPBT2ATV2. USB Dongle for the Bluetooth class 2 SPBT2532C2.AT module. Features. Description USB Dongle for the Bluetooth class 2 SPBT2532C2.AT module Data brief Features Bluetooth V2.1 board USB connection SMD antenna onboard RoHS compliant Description The demonstration board is a design tool

More information

M24LR04E-R, M24LR16E-R, M24LR64E-R Errata sheet

M24LR04E-R, M24LR16E-R, M24LR64E-R Errata sheet M24LR04E-R, M24LR16E-R, M24LR64E-R Errata sheet M24LR04E-R, M24LR16E-R and M24LR64E-R device limitations Silicon identification This errata sheet applies to STMicroelectronics M24LR04E-R, M24LR16E-R and

More information

STEVAL-IFN003V1. PMSM FOC motor driver based on the L6230 and STM32F103. Features. Description

STEVAL-IFN003V1. PMSM FOC motor driver based on the L6230 and STM32F103. Features. Description STEVAL-IFN003V1 Features PMSM FOC motor driver based on the L6230 and STM32F103 Data brief Input range: 8 V up to 48 V (up to 45 W) STMicroelectronics ARM Cortex-M3 corebased STM32F103 microcontroller

More information

STEVAL-IHM024V W 3-phase inverter using the L6390 and STGDL6NC60DI for vector control. Features. Applications. Description

STEVAL-IHM024V W 3-phase inverter using the L6390 and STGDL6NC60DI for vector control. Features. Applications. Description 100 W 3-phase inverter using the L6390 and STGDL6NC60DI for vector control Data brief Features Wide-range input voltage (110 Vac and 230 Vac) Maximum power-up to 100 W at 230 Vac input voltage Hyper-fast

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Features ERY LOW COLLECTOR TO EMITTER SATURATION OLTAGE D.C. CURRENT GAING, h FE > 100 5 A CONTINUOUS COLLECTOR CURRENT SOT-223 PLASTIC PACKAGE FOR SURFACE MOUNTING CIRCUITS AAILABLE IN TAPE & REEL PACKING

More information

TDA2320 PREAMPLIFIER FOR INFRARED REMOTE CONTROL SYSTEMS

TDA2320 PREAMPLIFIER FOR INFRARED REMOTE CONTROL SYSTEMS WIDE SUPPLY VOLTAGE RAGE: 4 TO 20V SIGLE OR SPLIT SUPPLY OPERATIO VERY LOW CURRET COSUMPTIO: 0.8mA VERY LOW DISTORTIO: 0.03% TYPICA DESCRIPTIO The TDA2320 is a monolithic integrated circuit in Dip package

More information

L7208. Portable consumer electronics spindle and VCM motor controller. General features. Spindle driver. Description. VCM driver.

L7208. Portable consumer electronics spindle and VCM motor controller. General features. Spindle driver. Description. VCM driver. Portable consumer electronics spindle and VCM motor controller General features Register Based Architecture 3 wire serial port up to 50MHz Ultra-thin package Data Brief Spindle driver 0.5A peak current

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) DC-DC step down power supply Features Module DC-DC step down single output Wide range input voltage: 100 370 V dc Output power: 4.0 W typ. Output voltage precision 5% Output short-circuit protection No

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) L6563 80W High performancetm PFC with active tracking boost function General description Data Brief L6563 is a current-mode PFC controller operating in Transition Mode (TM). Based on the core of a standard

More information

STA2051E VESPUCCI 32-BIT SINGLE CHIP BASEBAND CONTROLLER FOR GPS AND TELEMATIC APPLICATIONS 1 FEATURES. Figure 1. Packages

STA2051E VESPUCCI 32-BIT SINGLE CHIP BASEBAND CONTROLLER FOR GPS AND TELEMATIC APPLICATIONS 1 FEATURES. Figure 1. Packages STA2051 VESPUCCI 32-BIT SINGLE CHIP BASEBAND CONTROLLER FOR GPS AND TELEMATIC APPLICATIONS DATA BRIEF 1 FEATURES ARM7TDMI 16/32 bit RISC CPU based host microcontroller. Complete Embedded Memory System:

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Features Camera with ZigBee connectivity based on the STM32 STM32-based camera with ZigBee connectivity Includes microsd card and ZigBee module Works with monitoring unit (order code STEVAL-CCM003V1) Camera

More information

SPC564A80CAL176 SPC564A70CAL176

SPC564A80CAL176 SPC564A70CAL176 Features SPC564A80CAL176 SPC564A70CAL176 SPC564Axx microcontroller family calibration and emulation system Data brief Support for LQFP176 MCU production package allowing calibration systems to be built

More information

PRODUCT TERMINATION NOTIFICATION

PRODUCT TERMINATION NOTIFICATION PRODUCT TERMINATION NOTIFICATION PTN IPD-IPC/13/8117 Dated 24 Sep 2013 L4960H and L4962H/A 1/4 PTN IPD-IPC/13/8117 - Dated 24 Sep 2013 Table 1. Termination Implementation Schedule Forecasted date of STMicroelectronics

More information

HD1530FX. High Voltage NPN Power Transistor for High Definition and New Super-Slim CRT Display. Features. Applications. Internal Schematic Diagram

HD1530FX. High Voltage NPN Power Transistor for High Definition and New Super-Slim CRT Display. Features. Applications. Internal Schematic Diagram High Voltage NPN Power Transistor for High Definition and New Super-Slim CRT Display Features STATE-OF-THE-ART TECHNOLOGY: DIFFUSED COLLECTOR ENHANCED GENERATION EHVS1 WIDER RANGE OF OPTIMUM DRIVE CONDITIONS

More information

STEVAL-IHM043V1. 6-step BLDC sensorless driver board based on the STM32F051 and L6234. Features. Description

STEVAL-IHM043V1. 6-step BLDC sensorless driver board based on the STM32F051 and L6234. Features. Description 6-step BLDC sensorless driver board based on the STM32F051 and L6234 Features Input voltage range: 7 to 42 V dc Output current: 2 A (5 A peak) Can operate up to 100% duty cycle RoHS compliant Description

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Adapter board (daughter board for the STM3210C_EVAL) for a thermal printer based on the L293DD Data brief Features This application is designed for a connectivity line demonstration board. The thermal

More information

PRODUCT INFORMATION LETTER

PRODUCT INFORMATION LETTER PRODUCT INFORMATION LETTER PIL MMS-MIC/13/7751 Dated 26 Mar 2013 STM32F40x and STM32F41x products LQFP176 package - Pinout modification 1/4 PIL MMS-MIC/13/7751 - Dated 26 Mar 2013 Sales Type/product family

More information

EVAL-RHF1009A. EVAL-RHF1009A product evaluation board. Description. Features

EVAL-RHF1009A. EVAL-RHF1009A product evaluation board. Description. Features product evaluation board Data brief R3 (cathode) resistor set to 6.8 kω, with a power supply voltage of 3.3 V this gives a cathode current of about 110 μa If RHF1009A device is soldered onto the, Cn1 is

More information

AN555 APPLICATION NOTE AUTOMOTIVE PROTECTION WITH THE RBOxx SERIES

AN555 APPLICATION NOTE AUTOMOTIVE PROTECTION WITH THE RBOxx SERIES APPLICATION NOTE AUTOMOTIVE PROTECTION WITH THE RBOxx SERIES INTRODUCTION The harsh electrical environment in automobiles poses problems for the electronic modules present. Even in normal operation, large

More information

STEVAL-IHM021V W, 3-phase inverter based on the L6390 and UltraFASTmesh MOSFET for speed FOC of 3-phase PMSM motor drives. Features.

STEVAL-IHM021V W, 3-phase inverter based on the L6390 and UltraFASTmesh MOSFET for speed FOC of 3-phase PMSM motor drives. Features. 100 W, 3-phase inverter based on the L6390 and UltraFASTmesh MOSFET for speed FOC of 3-phase PMSM motor drives Features Data brief Wide range input voltage Maximum power: up to 100 W at 230 Vac input STD5N52U

More information

STEVAL-CCM003V1. Graphic panel with ZigBee features based on the STM32 and SPZBE260 module. Features. Description

STEVAL-CCM003V1. Graphic panel with ZigBee features based on the STM32 and SPZBE260 module. Features. Description Graphic panel with ZigBee features based on the STM32 and SPZBE260 module Data brief Features Microsoft FAT16/FAT32 compatible library JPEG decoder algorithm S-Touch -based touch keys for menu navigation

More information

EVALPM8803-FWD. EVALPM8803-FWD: IEEE802.3at compliant demonstration kit with synchronous active clamp forward PoE converter. Features.

EVALPM8803-FWD. EVALPM8803-FWD: IEEE802.3at compliant demonstration kit with synchronous active clamp forward PoE converter. Features. : IEEE802.3at compliant demonstration kit with synchronous active clamp forward PoE converter Features EEE 802.3at compliant Support for Gigabit Ethernet Data pass-through for the ethernet data Works with

More information

Main components Proximity and ambient light sensing (ALS) module

Main components Proximity and ambient light sensing (ALS) module DT0017 Design tip VL6180X interleaved mode explanation By Colin Ramrattan Main components VL6180X Proximity and ambient light sensing (ALS) module Purpose and benefits The purpose of this document is to

More information

STEVAL-IKR001V7D. Sub Ghz transceiver daughterboard with power amplifier based on the SPIRIT1. Features. Description

STEVAL-IKR001V7D. Sub Ghz transceiver daughterboard with power amplifier based on the SPIRIT1. Features. Description Sub Ghz transceiver daughterboard with power amplifier based on the SPIRIT1 Data brief Features SPIRIT1 low power sub GHz transceiver in a standalone RF module tuned for 169 MHz band with external power

More information

STEVAL-TDR007V1. 3 stage RF power amplifier demonstration board using: PD57002-E, PD57018-E, 2 x PD57060-E. Features. Description

STEVAL-TDR007V1. 3 stage RF power amplifier demonstration board using: PD57002-E, PD57018-E, 2 x PD57060-E. Features. Description 3 stage RF power amplifier demonstration board using: PD57002-E, PD57018-E, 2 x PD57060-E Features N-channel enhancement-mode lateral MOSFETs Excellent thermal stability Frequency: 1030 MHz Supply voltage:

More information

STEVAL-ICB004V1. Advanced resistive touchscreen controller demonstration board based on the STMPE811. Features. Description

STEVAL-ICB004V1. Advanced resistive touchscreen controller demonstration board based on the STMPE811. Features. Description Advanced resistive touchscreen controller demonstration board based on the STMPE811 Data brief Features Four-wire resistive touch-sensing demonstration GUI Configurable touch-sensing parameters STMPE811

More information

Order code Package Connection. SPDC400FC12M0.60 Open frame Comb. October 2007 Rev 1 1/9

Order code Package Connection. SPDC400FC12M0.60 Open frame Comb. October 2007 Rev 1 1/9 DC-DC step down power supply Preliminary Data Features Module DC-DC step down single output Wide range input voltage 100 370 V dc Output power 8W max Output voltage precision 5% Output short circuit protection

More information

STEVAL-IHM008V1. BLDC & AC motor control Power board SEMITOP 2 1kW. Features. Applications

STEVAL-IHM008V1. BLDC & AC motor control Power board SEMITOP 2 1kW. Features. Applications Features Quick to set up, to install and easy to run Inverter stage IGBT short circuit rugged based Design is re-usable (the ORCAD source files are available for free) Several kinds of applications with

More information

STEVAL-ILL043V1. High end, 75 W high power factor flyback LED driver based on the L6562A with two dimmable strings. Features.

STEVAL-ILL043V1. High end, 75 W high power factor flyback LED driver based on the L6562A with two dimmable strings. Features. High end, 75 W high power factor flyback LED driver based on the L6562A with two dimmable strings Features Data brief Mains voltage range V ACmin = 165V ac, V ACmax = 277 V ac Minimum mains frequency f

More information

STEVAL-ISB008V1. Standalone USB Li-Ion battery charger demonstration board based on the STw4102 and STM32F103C6. Features.

STEVAL-ISB008V1. Standalone USB Li-Ion battery charger demonstration board based on the STw4102 and STM32F103C6. Features. Features Standalone USB Li-Ion battery charger demonstration board based on the STw4102 and STM32F103C6 Data brief The STw4102 Li-Ion battery charger IC: supports battery charging by USB or external DC

More information

STEVAL-ILH004V1. 70 W electronic ballast for metal halide lamp (HID) based on the L6382D5 and ST7FLITE49K2. Features. Description

STEVAL-ILH004V1. 70 W electronic ballast for metal halide lamp (HID) based on the L6382D5 and ST7FLITE49K2. Features. Description 70 W electronic ballast for metal halide lamp (HID) based on the L6382D5 and ST7FLITE49K2 Data brief Features Minimum mains voltage (rms value): 85 V Maximum mains voltage (rms value) : 265 V Minimum mains

More information

TA0311 TECHNICAL ARTICLE High Temperature Electronics 1 Introduction 2 Why the need for high-temperature semiconductors?

TA0311 TECHNICAL ARTICLE High Temperature Electronics 1 Introduction 2 Why the need for high-temperature semiconductors? TECHNICAL ARTICLE High Temperature Electronics 1 Introduction In the semiconductor world, there are numerous products specified with an industrial temperature range (-40/+85 C), and somewhat fewer with

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Power over ethernet 10 W module Preliminary data Features Input voltage range: 38.5 V to 60 V 10 W output Based on ST devices integrating standard PoE interface and current mode PVM controller IEEE 802.3af

More information

STEVAL-ILL037V1. Demonstration board for the HVLED805 IC for LED power supply. Features. Description

STEVAL-ILL037V1. Demonstration board for the HVLED805 IC for LED power supply. Features. Description Demonstration board for the HVLED805 IC for LED power supply Data brief Features Input voltage: 90 Vac - 265 Vac Input frequency: 50 Hz - 60 Hz Output power: 3.2 W Expected efficiency: 85% Output voltage:

More information

STEVAL-MKI126V2. MEMS microphone system evaluation board based on the STA321MPL and MP34DB01. Description. Features

STEVAL-MKI126V2. MEMS microphone system evaluation board based on the STA321MPL and MP34DB01. Description. Features MEMS microphone system evaluation board based on the STA321MPL and MP34DB01 Description Data brief Features 2 MP34DB01 MEMS microphones Capable of driving up to 6 digital MEMS microphones 3 independent

More information

2 x 58 W high frequency ballast for T8 fluorescent tubes based on L6562A, L6569, and STL11NM60N in PowerFlat HV package

2 x 58 W high frequency ballast for T8 fluorescent tubes based on L6562A, L6569, and STL11NM60N in PowerFlat HV package 2 x 58 W high frequency ballast for T8 fluorescent tubes based on L6562A, L6569, and STL11NM60N in PowerFlat HV package Data brief light for the same input power when driven above 20 khz, instead of 50/60

More information

STEVAL-MKI126V3. STSmartVoice demonstration board based on MP34DT01. Description. Features

STEVAL-MKI126V3. STSmartVoice demonstration board based on MP34DT01. Description. Features STSmartVoice demonstration board based on MP34DT01 Description Data brief Features 2 on-board MEMS MP34DT01 microphones on board Capable of driving up to 6 digital MEMS microphones 3 independent I 2 S

More information

STANC0. Stereo HD-PA digitally programmable active noise cancelling audio engine. Features. System. Input and output.

STANC0. Stereo HD-PA digitally programmable active noise cancelling audio engine. Features. System. Input and output. Features System Operates from 2.7-3.6 V host-powered, down to 1 V when battery operated Low current consumption: 5 ma audio equalizer + feedback ANC I 2 C interface for production and dynamic in-use configuration

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Bluetooth low energy development kit based on the STBLC01 Features STBLC01 Bluetooth low energy controller in a standalone RF module STM32L Discovery board, including STLINK Associated STBLC01 development

More information

STEVAL-IHM025V1. 1 kw 3-phase motor control demonstration board featuring the IGBT SLLIMM STGIPL14K60. Features. Description

STEVAL-IHM025V1. 1 kw 3-phase motor control demonstration board featuring the IGBT SLLIMM STGIPL14K60. Features. Description Features 1 kw 3-phase motor control demonstration board featuring the IGBT SLLIMM STGIPL14K60 Data brief Min. input voltage: 125 VDC or 90 VAC Max. input voltage: 400 VDC or 285 VAC Max. output power for

More information

Multi-channel LED driver with integrated boost controller for medium, large LCD panel backlight based on LED7708 and STM32F103C6T6A

Multi-channel LED driver with integrated boost controller for medium, large LCD panel backlight based on LED7708 and STM32F103C6T6A Multi-channel LED driver with integrated boost controller for medium, large LCD panel backlight based on LED7708 and STM32F103C6T6A Features Data brief Wide DC input voltage: 10 V to 28 V Integrated boost

More information

EVLHVLED815W8CV. 8 W - high power factor - constant voltage regulation based on HVLED815PF. Features. Description

EVLHVLED815W8CV. 8 W - high power factor - constant voltage regulation based on HVLED815PF. Features. Description 8 W - high power factor - constant voltage regulation based on HVLED815PF Data brief Features 8 W LED driver - constant voltage EU range input (200-265 Vac) Isolated solution Single stage HPF flyback Primary

More information

March 2012 Doc ID Rev 1 1/4

March 2012 Doc ID Rev 1 1/4 2 x 28 W electronic ballast with active PFC based on the STD3N62K3 and STD845DN40 BJT devices Data brief production data Features Input voltage range: 180 Vac to 264 Vac Nominal output voltage: 400 V Nominal

More information

GM68020H. DisplayPort receiver. Features. Applications

GM68020H. DisplayPort receiver. Features. Applications DisplayPort receiver Data Brief Features DisplayPort 1.1a compliant receiver HDCP 1.3 support DisplayPort link comprising four main lanes and one auxiliary channel Input bandwidth sufficient to receive

More information

GM60028H. DisplayPort transmitter. Features. Applications

GM60028H. DisplayPort transmitter. Features. Applications DisplayPort transmitter Data Brief Features DisplayPort 1.1a compliant transmitter HDCP 1.3 support DisplayPort link comprising four main lanes and one auxiliary channel Output bandwidth sufficient to

More information

M24SR-DISCOVERY. Discovery kit for the M24SR series Dynamic NFC/RFID tag. Features

M24SR-DISCOVERY. Discovery kit for the M24SR series Dynamic NFC/RFID tag. Features Discovery kit for the M24SR series Dynamic NFC/RFID tag Data brief Features Ready-to-use printed circuit board (PCB) including: M24SR64-Y Dynamic NFC/RFID tag 31 mm x 30 mm 13.56 MHz double layer inductive

More information

STEVAL-ILH005V W electronic ballast for HID lamps based on the L6562A and ST7LITE39F2. Features. Description

STEVAL-ILH005V W electronic ballast for HID lamps based on the L6562A and ST7LITE39F2. Features. Description 150 W electronic ballast for HID lamps based on the L6562A and ST7LITE39F2 Data brief Features Minimum mains voltage: V ac(min) = 185 V Maximum mains voltage: V ac(min) = 265 V Minimum mains frequency:

More information

PRODUCT/PROCESS CHANGE NOTIFICATION

PRODUCT/PROCESS CHANGE NOTIFICATION PRODUCT/PROCESS CHANGE NOTIFICATION PCN MATERIAL CHANGE FOR ALL ST ZEROPOWER AND TIMEKEEPER NVRAMS IN DIP24 AND DIP28 CAPHAT PACKAGES WHAT IS THE CHANGE? STMicroelectronics is implementing our new ECOPACK

More information

EMIF QCF 4 LINE LOW CAPACITANCE EMI FILTER AND ESD PROTECTION IPAD

EMIF QCF 4 LINE LOW CAPACITANCE EMI FILTER AND ESD PROTECTION IPAD IPAD EMIF04-1502QCF 4 LINE LOW CAPACITANCE EMI FILTER AND ESD PROTECTION MAIN PRODUCT CHARACTERISTICS: Where EMI filtering in ESD sensitive equipment is required : LCD and camera for Mobile phones Computers

More information

STEVAL-ILL029V1. Front panel demonstration board based on the STLED325 and STM8S. Features. Description

STEVAL-ILL029V1. Front panel demonstration board based on the STLED325 and STM8S. Features. Description Front panel demonstration board based on the STLED325 and STM8S Data brief Features 4-digit, 7-segment (with decimal point) LED display 8 discrete LEDs 8 front panel keys for control of channel, brightness

More information

Main components Proximity and ambient light sensing (ALS) module

Main components Proximity and ambient light sensing (ALS) module DT0035 Design tip VL6180X low power features By Ken Weiner Main components VL6180X Proximity and ambient light sensing (ALS) module Purpose and Benefits This document explains how the low power features

More information

AN442 APPLICATION NOTE

AN442 APPLICATION NOTE AN442 APPLICATION NOTE TRIAC & MICROCONTROLLERS: THE EASY CONNECTION INTRODUCTION The aim of this note is to show how to connect an ST triac and an ST microcontroller. CONVENTIONAL SOLUTION For many years

More information

M89 FAMILY In-System Programmable (ISP) Multiple-Memory and Logic FLASH+PSD Systems for MCUs

M89 FAMILY In-System Programmable (ISP) Multiple-Memory and Logic FLASH+PSD Systems for MCUs In-System Programmable (ISP) Multiple-Memory and Logic FLASH+PSD Systems for MCUs DATA BRIEFING Single Supply Voltage: 5V±10% for M9xxFxY 3 V (+20/ 10%) for M9xxFxW 1 or 2 Mbit of Primary Flash Memory

More information

AN2421 Application note

AN2421 Application note Application note Using the STMPE801 as a keypad controller Introduction STMPE801 is an 8-bit general purpose port expander device in the STMicroelectronics Port Expander Logic family. Its eight GPIOs (General

More information

STM32-PRIMER/LAB. Raisonance EvoPrimer-LAB to monitor STM32 applications and standalone STM32 Flash programming. Features

STM32-PRIMER/LAB. Raisonance EvoPrimer-LAB to monitor STM32 applications and standalone STM32 Flash programming. Features Raisonance EvoPrimer-LAB to monitor STM32 applications and standalone STM32 Flash programming Features EvoPrimer-LAB includes: EvoPrimer base RLink-ADP and SWD adapter for connection to external hardware

More information

HCF4054B 4 SEGMENT LIQUID CRYSTAL DISPLAY DRIVER WITH STROBED LATCH FUNCTION

HCF4054B 4 SEGMENT LIQUID CRYSTAL DISPLAY DRIVER WITH STROBED LATCH FUNCTION 4 SEGMENT LIQUID CRYSTAL DISPLAY DRIVER WITH STROBED LATCH FUNCTION QUIESCENT CURRENT SPECIF. UP TO 20V OPERATION OF LIQUID CRYSTALS WITH CMOS CIRCUITS PROVIDES ULTRA LOW POWER DISPLAYS EQUIVALENT AC OUTPUT

More information

STW High voltage fast-switching NPN power transistor. Features. Application. Description

STW High voltage fast-switching NPN power transistor. Features. Application. Description High voltage fast-switching NPN power transistor Features Low spread of dynamic parameters High voltage capability Minimum lot-to-lot spread for reliable operation ery high switching speed Application

More information

EVAL6208Q. Stepper motor driver mounting the L6208Q. Features. Description

EVAL6208Q. Stepper motor driver mounting the L6208Q. Features. Description Stepper motor driver mounting the L6208Q Data brief AM11912v1 Features Voltage range from 8 to 52 V Phase current up to 2.5 A r.m.s. Adjustable PWM current control OFF-time Logic inputs 5 V / 3.3 V compliant

More information

IEC compliant smart meter system for AMI applications based on STM32, ST7570 PLM, and STPMC1/STPMS1 chipset

IEC compliant smart meter system for AMI applications based on STM32, ST7570 PLM, and STPMC1/STPMS1 chipset IEC 61334-5-1 compliant smart meter system for AMI applications based on STM32, ST7570 PLM, and STPMC1/STPMS1 chipset Features Data brief Energy measurement by an external metrology board S-FSK Power line

More information

STEVAL-IHT005V2. Demonstration board with full 3.3 V ACS/Triac control using the STM32F100. Description. Features

STEVAL-IHT005V2. Demonstration board with full 3.3 V ACS/Triac control using the STM32F100. Description. Features Demonstration board with full 3.3 V ACS/Triac control using the STM32F100 Data brief IEC 61000-4-4 pre-compliance test passed (burst up to 8 kv) IEC 61000-4-5 pre-compliance test passed (surge up to 2

More information

BUL1203EFP HIGH VOLTAGE FAST-SWITCHING NPN POWER TRANSISTOR

BUL1203EFP HIGH VOLTAGE FAST-SWITCHING NPN POWER TRANSISTOR BUL1203EFP HIGH OLTAGE FAST-SWITCHING NPN POWER TRANSISTOR HIGH OLTAGE CAPABILITY LOW SPREAD OF DYNAMIC PARAMETERS MINIMUM LOT-TO-LOT SPREAD FOR RELIABLE OPERATION ERY HIGH SWITCHING SPEED FULLY INSULATED

More information

TN0885 Technical note

TN0885 Technical note TN0885 Technical note New I 2 PAKFP (TO-281) package, practical approach for compact and slim product design needs Introduction STMicroelectronics has introduced a new package family, I 2 PAKFP, which

More information

STEVAL-CCH002V2. HDMI and video switches demonstration board. Features. Description

STEVAL-CCH002V2. HDMI and video switches demonstration board. Features. Description HDMI and video switches demonstration board Data brief Features 16-character x 2-line alphanumeric backlit LCD VGA input and output connectors S-video input and output connectors Y Pb Pr input and output

More information

UHF, EPCglobal Class-1 Generation-2, Contactless Memory Chip 432 bit with Multi-session Protocol, Anti-collision and Kill functions

UHF, EPCglobal Class-1 Generation-2, Contactless Memory Chip 432 bit with Multi-session Protocol, Anti-collision and Kill functions UHF, EPCglobal Class-1 Generation-2, Contactless Memory Chip 432 bit with Multi-session Protocol, Anti-collision and Kill functions Features summary DATA BRIEF EPCglobal Class-1 Generation-2 specification

More information

L CHANNEL LOW POWER PREAMPLIFIER

L CHANNEL LOW POWER PREAMPLIFIER 1 FEATURES Dual Power Supplies of +5V, 10% and -3v, 6% Low Power consumption; 980 mw @ 800Mb/s (Single Head 100% Write mode duty cycle, Random pattern, Iw = 40mA, Max Ovs). Flip Chip package.l6316 Differential

More information

STEVAL-CCA043V1. 25 Watt mono BTL class-d audio amplifier demonstration board based on the TDA7491MV. Features. Description

STEVAL-CCA043V1. 25 Watt mono BTL class-d audio amplifier demonstration board based on the TDA7491MV. Features. Description 25 Watt mono BTL class-d audio amplifier demonstration board based on the TDA7491MV Features High output-power capability: 25 W / 6 Ω at 16 V, 1 KHz,THD = 10% 20 W / 8 Ω at 18 V, 1 KHz, THD = 10% Wide-range,

More information

STEVAL-IHM038V1. BLDC ceiling fan controller based on the STM32 and SLLIMM-nano. Description. Features

STEVAL-IHM038V1. BLDC ceiling fan controller based on the STM32 and SLLIMM-nano. Description. Features BLDC ceiling fan controller based on the STM32 and SLLIMM-nano Data brief FOC (field oriented control) sensorless algorithm PCB size customized for ceiling fan design PCB diameter: 105 mm Double-sided

More information

STEVAL-IME002V1. Multi-lead electrocardiogram (ECG) and body impedance demonstration board. Features. Description

STEVAL-IME002V1. Multi-lead electrocardiogram (ECG) and body impedance demonstration board. Features. Description Multi-lead electrocardiogram (ECG) and body impedance demonstration board Data brief Features Two power supply options: USB connector and external power connector Up to three HM301D: 12-lead ECG with bioimpedance

More information

GM69010H DisplayPort, HDMI, and component input receiver Features Applications

GM69010H DisplayPort, HDMI, and component input receiver Features Applications DisplayPort, HDMI, and component input receiver Data Brief Features DisplayPort 1.1 compliant receiver DisplayPort link comprising four main lanes and one auxiliary channel HDMI 1.3 compliant receiver

More information

STEVAL-IHM034V2. Dual motor control and PFC evaluation board featuring the STM32F103 and STGIPS20C60. Features

STEVAL-IHM034V2. Dual motor control and PFC evaluation board featuring the STM32F103 and STGIPS20C60. Features Dual motor control and PFC evaluation board featuring the STM32F103 and STGIPS20C60 Data brief Features Nominal power 1300 W, max. power 1700 W Digital PFC section: Single-stage boost converter based on

More information

IMPORTANT NOTICE. Company name - STMicroelectronics NV is replaced with ST-NXP Wireless.

IMPORTANT NOTICE. Company name - STMicroelectronics NV is replaced with ST-NXP Wireless. IMPORTANT NOTICE Dear customer, As from August 2 nd 2008, the wireless operations of STMicroelectronics have moved to a new company, ST-NXP Wireless. As a result, the following changes are applicable to

More information

STPC Video Pipeline Driver Writer s Guide

STPC Video Pipeline Driver Writer s Guide STPC Video Pipeline Driver Writer s Guide September 1999 Information provided is believed to be accurate and reliable. However, ST Microelectronics assumes no responsibility for the consequences of use

More information

AN2056 APPLICATION NOTE

AN2056 APPLICATION NOTE APPLICATION NOTE Extension of the SRC DiSEcQ 1 standard for control of Satellite Channel Router based one-cable LNBs 1 System overview 1.1 Description ST Microelectronics has introduced a new device that

More information

PRODUCT/PROCESS CHANGE NOTIFICATION

PRODUCT/PROCESS CHANGE NOTIFICATION PRODUCT/PROCESS CHANGE NOTIFICATION PCN MMS-MMY/07/3303 Notification Date 12/26/2007 M24256, 256Kbit Serial I2C Bus EEPROM Upgrade and Die Optimization MMY - MEMORY 1/12 PCN MMS-MMY/07/3303 - Notification

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) BUL310 HIGH OLTAGE FAST-SWITCHING NPN POWER TRANSISTOR STMicroelectronics PREFERRED SALESTYPE NPN TRANSISTOR HIGH OLTAGE CAPABILITY LOW SPREAD OF DYNAMIC PARAMETERS MINIMUM LOT-TO-LOT SPREAD FOR RELIABLE

More information

AN3075 Application note

AN3075 Application note Application note Demonstration board user guidelines for the STC3100 battery monitor for gas gauge applications Introduction This application note describes the STEVAL-ISB009V1, a demonstration board specifically

More information

Description. Table 1. Device summary. Order codes Temperature range [ C] Package Packing. LPS2HBTR -30 to +105 HLGA - 10L

Description. Table 1. Device summary. Order codes Temperature range [ C] Package Packing. LPS2HBTR -30 to +105 HLGA - 10L MEMS pressure sensor: 260-1260 hpa absolute digital output barometer Applications Data brief Altimeter and barometer for portable devices GPS applications Weather station equipment Indoor navigation (Altitude

More information

Main components Narrow-band OFDM power line networking PRIME compliant system-on-chip

Main components Narrow-band OFDM power line networking PRIME compliant system-on-chip DN0025 Design note Maximize Power Line Communication signal level on ST7590 PRIME compliant applications Designs from our labs describe tested circuit designs from ST labs which provide optimized solutions

More information

STTH8003CY HIGH FREQUENCY SECONDARY RECTIFIERS MAJOR PRODUCTS CHARACTERISTICS. 2x40 A 300 V. V F (max) FEATURES AND BENEFITS

STTH8003CY HIGH FREQUENCY SECONDARY RECTIFIERS MAJOR PRODUCTS CHARACTERISTICS. 2x40 A 300 V. V F (max) FEATURES AND BENEFITS STTH83CY HIGH FREQUENCY SECONDARY RECTIFIERS MAJOR PRODUCTS CHARACTERISTICS I F(AV) V RRM V F (max) trr (max) 2x4 A 3 V 1 V 6 ns FEATURES AND BENEFITS n COMBINES HIGHEST RECOVERY AND VOLTAGE PERFORMANCE.

More information

UM0534 User manual. STEVAL-MKI014V1 demonstration kit for the LIS344ALH. Introduction

UM0534 User manual. STEVAL-MKI014V1 demonstration kit for the LIS344ALH. Introduction UM054 User manual STEVAL-MKI04V demonstration kit for the LIS44ALH Introduction The STEVAL-MKI04V is a demonstration kit designed to provide the user with a complete, ready-to-use platform for the evaluation

More information

HCF4027B DUAL J-K MASTER SLAVE FLIP-FLOP

HCF4027B DUAL J-K MASTER SLAVE FLIP-FLOP DUAL J-K MASTER SLAVE FLIP-FLOP SET RESET CAPABILITY STATIC FLIP-FLOP OPERATION - RETAINS STATE INDEFINETELY WITH CLOCK LEVEL EITHER HIGH OR LOW MEDIUM-SPEED OPERATION - 16MHz (Typ. clock toggle rate at

More information

EVLHVLED815W10F. 10 W wide-range high power factor isolated LED driver based on HVLED815PF. Description. Features

EVLHVLED815W10F. 10 W wide-range high power factor isolated LED driver based on HVLED815PF. Description. Features 10 W wide-range high power factor isolated LED driver based on HVLED815PF Description Data brief Features 10 W LED driver Wide-range input (88-265 VAC) Isolated solution Single stage HPF flyback Primary

More information

STV6110A. 8PSK/QPSK low-power 3.3 V satellite tuner IC. Description. Features

STV6110A. 8PSK/QPSK low-power 3.3 V satellite tuner IC. Description. Features 8PSK/QPSK low-power 3.3 V satellite tuner IC Data Brief Features RF to baseband 8PSK/QPSK direct conversion Single 3.3 V DC supply Input frequency range 950 MHz to 2150 MHz Supports 1 to 45 Msymbol/s On-chip

More information

Symbol Parameter Value Unit V CES Collector-Emitter Voltage (V BE = 0) 700 V V CEO Collector-Emitter Voltage (I B = 0) 400 V Emitter-Base Voltage

Symbol Parameter Value Unit V CES Collector-Emitter Voltage (V BE = 0) 700 V V CEO Collector-Emitter Voltage (I B = 0) 400 V Emitter-Base Voltage STD3003 HIGH OLTAGE FAST-SWITCHING NPN POWER TRANSISTOR REERSE PINS OUT s STANDARD IPAK (TO-25) / DPAK (TO-252) PACKAGES MEDIUM OLTAGE CAPABILITY LOW SPREAD OF DYNAMIC PARAMETERS MINIMUM LOT-TO-LOT SPREAD

More information

STV6417 R/C/Pr, G/C, B/Pb Switches + Filter. C, Y, CVBS/Y Switches + Filter. Audio Switches Volume Control AUDIO R SLOW BLANK

STV6417 R/C/Pr, G/C, B/Pb Switches + Filter. C, Y, CVBS/Y Switches + Filter. Audio Switches Volume Control AUDIO R SLOW BLANK Audio/video switch and 6-channel SD video filter Data Brief Features I²C bus control Interrupt or auto-startup mode: low power consumption Video section 3 CVBS inputs, 2 CVBS outputs 3 Y/C inputs, 3 Y/C

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) 1 Introduction TA0319 TECHNICAL ARTICLE New Damper Diodes Family for CRT TV & CRT Monitor The Coolest Damper Diodes STMicroelectronics is well established in the CRT Monitor and CRT TV market and is known

More information

MEMS Module STMEMSDQ-EVAL1

MEMS Module STMEMSDQ-EVAL1 STMicroelectronics MEMS Module STMEMSDQ-EVAL1 UM0152 USER MANUAL Rev 0.1 September 2005 BLANK UM0152 USER MANUAL MEMS Module STMEMSDQ-EVAL1 Dedicated to upsd Evaluation Kit DK34XX Introduction The MEMS

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) OCTAL BUS TRANSCEIVER/REGISTER WITH 3 STATE OUTPUTS HIGH SPEED: f MAX = 60 MHz (TYP.) at V CC = 4.5V LOW POWER DISSIPATION: I CC = 4µA(MAX.) at T A =25 C COMPATIBLE WITH TTL OUTPUTS : V IH = 2V (MIN.)

More information

Mechanical specification. October 2010 Doc ID Rev 1 1/10

Mechanical specification. October 2010 Doc ID Rev 1 1/10 Portable UHF 2-way radio demonstration board based on the PD84001 Preliminary data Features Excellent thermal stability Frequency: 380-520 MHz Supply voltage: 7.2 V Output power: 1 W Power gain: 15.5 ±

More information

HCF40193B PRESETTABLE UP/DOWN COUNTERS (DUAL CLOCK WITH RESET) BINARY TYPE

HCF40193B PRESETTABLE UP/DOWN COUNTERS (DUAL CLOCK WITH RESET) BINARY TYPE PRESETTABLE UP/DOWN COUNTERS (DUAL CLOCK WITH RESET) BINARY TYPE INDIVIDUAL CLOCK LINES FOR COUNTING UP OR COUNTING DOWN SYNCHRONOUS HIGH-SPEED CARRY AND BORROW PROPAGATION DELAYS FOR CASCADING ASYNCHRONOUS

More information

DB W. 60W / 26V / MHz PA using 1x PD57070S The LdmoST FAMILY. General Features. Description. Order Code

DB W. 60W / 26V / MHz PA using 1x PD57070S The LdmoST FAMILY. General Features. Description. Order Code 60W / 26V / 925-960 MHz PA using 1x PD57070S The LdmoST FAMILY General Features EXCELLENT THERMAL STABILITY COMMON SOURCE CONFIGURATION P OUT = 60W WITH 13 db GAIN OVER 925-960 MHz 10:1 LOAD VSWR CAPABILITY

More information

STEVAL-ISA121V1. Wide range single-output demonstration board based on the VIPER37LE. Features. Description

STEVAL-ISA121V1. Wide range single-output demonstration board based on the VIPER37LE. Features. Description Wide range single-output demonstration board based on the VIPER37LE Data brief Features Universal input mains range: input voltage 90-264 V AC frequency 45-65 Hz Single-output voltage: 5 V @ 3 A continuous

More information

FL_101 USER MANUAL. FlashLink User Manual. CONTENTS (Introduction on next page)

FL_101 USER MANUAL. FlashLink User Manual. CONTENTS (Introduction on next page) FL_0 USER MANUAL FlashLink User Manual CONTENTS (Introduction on next page) January 00 / FlashLink User Manual Features Allows PC parallel port to communicate with PSDF via PSDsoft Provides interface medium

More information

BUL128 HIGH VOLTAGE FAST-SWITCHING NPN POWER TRANSISTOR

BUL128 HIGH VOLTAGE FAST-SWITCHING NPN POWER TRANSISTOR BUL128 HIGH OLTAGE FAST-SWITCHING NPN POWER TRANSISTOR STMicroelectronics PREFERRED SALESTYPE NPN TRANSISTOR HIGH OLTAGE CAPABILITY LOW SPREAD OF DYNAMIC PARAMETERS MINIMUM LOT-TO-LOT SPREAD FOR RELIABLE

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) STEVAL-IPP001V2 Complete solution for power line communication in metering applications Data brief Features Energy consumption measured by external metering board Power line communication up to 28.8 kbps

More information

TEA6425 VIDEO CELLULAR MATRIX

TEA6425 VIDEO CELLULAR MATRIX IDEO CELLULAR MATRIX 6 ideo Inputs - 8 ideo Outputs Internal Selectable YC Adders MHz Bandwidth @ -db Selectable 0./6.dB Gain FOR EACH Output High Impedance Switch for each Output (- state operation) Programmable

More information

Order code Marking Package Packing. STA5630TR STA5630 VFQFPN32 Tape and reel STA5630ATR (1) September 2013 Doc ID Rev 4 1/8

Order code Marking Package Packing. STA5630TR STA5630 VFQFPN32 Tape and reel STA5630ATR (1) September 2013 Doc ID Rev 4 1/8 Low power GPS RF front-end Data brief production data Features Integrated LNA Low power consumption (< 25 mw) 1.8 V supply voltage GPS and Galileo compliant Minimum external components Serial interface

More information