AN2658 Application note

Size: px
Start display at page:

Download "AN2658 Application note"

Transcription

1 Application note Using the analog to digital converter of the STM8S microcontroller Introduction The purpose of this application note is to explain how to use the Analog to Digital Converter implemented in many of the STM8S microcontroller family devices. It provides useful information on how to configure the ADC registers and microcontroller resources and use the ADC in different modes. The STM8 firmware library, containing source code of all the examples described in this application note, can be downloaded from the STMicroelectronics website: July 2009 Doc ID Rev 2 1/23

2 Contents AN2658 Contents 1 ADC hardware description General properties ADC operation Summary of features Resolution Clock selection Conversion triggers ADC speed/sampling time Voltage reference Input analog channel selection Data storage Extended functions Buffers Buffer overrun flag Analog watchdog Scan mode Bandgap reference channel Configuring ADC registers for conversion Selecting the operating mode Single conversion mode Continuous conversion mode Conversion on external trigger Scan conversion mode Conversion speed selection Analog input selection Storing converted values Analog watchdog function ADC interrupt management Practical application Areas of use /23 Doc ID Rev 2

3 Contents 4.2 Hardware connection examples Methods for precision improvement Design recommendations Displaying the ADC conversion result using LEDs Overview Hardware description Firmware description ADC conversion triggered by TIM1 timer Overview Hardware description Firmware description Revision history Doc ID Rev 2 3/23

4 ADC hardware description AN ADC hardware description 1.1 General properties STM8 family microcontrollers include one Analog to Digital Converter which has up to 16 multiplexed inputs. Depending on the STM8 device, the ADC can be one of two types: A basic ADC type named ADC2 An extended ADC type named ADC1 The resolution of both ADC types is 10 bits. The number of external analog inputs depends on the package size of the chosen STM8 family device. The ADC is a successive approximation Analog to Digital Converter (SAR). Conversion can be performed in continuous mode or single mode. The analog input channels can be selected individually or in scan mode. In scan mode, several channels are converted in sequence, the channel number is incremented for each conversion. The digital result is then stored in registers. Because the ADC resolution is 10 bits and the ADC data register bit length is 16, one ADC result is stored in two 8-bit registers. The 10-bit data is either right or left aligned (this is selectable) in the 16-bit register. Devices with ADC1 can use buffered mode for data storage. In this case, the values converted by the ADC are stored in N data buffers (to decrease CPU overhead). The event used to start conversion can be generated by software or by the STM8 microcontroller's internal timer 1 (any type of timer event can be used). The start of A/D conversion can also be triggered by an external pin. The reference voltage for the ADC depends from package. It comes either from an external source - in this case the reference must be connected to two external pins - or is connected internally to analog power supply pins. The value of this reference voltage is restricted in its magnitude - must be from 2.75V up to V DDA. The measured voltage must be between V REF+ and V REF-. Resolution can be increased by so-called analog zooming - using a smaller reference voltage around the range of values to be measured. Devices with ADC1 have an analog watchdog function. This function compares the converted data with high and low thresholds and if a threshold is reached then the analog watchdog flag is set. If needed, an interrupt can be generated at the end of conversion and if an analog watchdog event occurred. The ADC is driven by a clock derived from the MCU master clock through a programmable divider. This allows you to select the ADC clock speed according to your application requirements. 4/23 Doc ID Rev 2

5 ADC hardware description Figure 1. ADC2 block diagram (basic ADC) V REF+ V REF- V DDA V SSA Power/Analog pins Data register (10-bits) End of conversion Data bus EOC interrupt AIN0 AIN1 Analog to digital converter fadc Clock prescaler f MASTER GPIOs AIN15 ADC registers ADC_ETR trigger Timer 1 Figure 2. ADC1 block diagram (extended ADC) Analog watchdog AWD interrupt Analog watchdog registers Bandgap reference U = 1.232V Data buffer register n Data buffer register 1 Overrun flag V REF+ V REF- V DDA V SSA Power/Analog pins Data register (10-bits) End of conversion Data bus EOC interrupt AIN0 AIN1 Analog to digital converter fadc Clock prescaler f MASTER GPIOs AIN15 ADC registers ADC_ETR trigger Timer 1 Doc ID Rev 2 5/23

6 ADC hardware description AN ADC operation The ADC can operate in single or continuous mode. In single mode, the ADC stops after one conversion. In continuous mode, it continues converting (on the same channel or different channel). Figure 3. and Figure 4. describe ADC operation in single and continuous mode. Figure 3. Single conversion mode CLK ADON EOC ADC inactive next conversion t STAB (7µs) conversion time (14 clocks) sync clock* 3 clocks sampling time 10 clocks conversion Software clears EOC bit Start conversion ADON=1 or trigger Power-on ADC ADON=1 Start conversion ADON=1 or trigger End of conversion Software reads ADC data Figure 4. Continuous conversion mode CLK ADON EOC t STAB (7µs) conversion time (14 clocks) End of conversion Software reads ADC data next conversion time (14 clocks) Power-on ADC ADON=1 Start conversion ADON=1 or trigger Next conversion starts immediately Software clears EOC bit In devices with ADC1, these two modes can be usefully combined with scan mode and use of the data buffer registers (buffered mode). Figure 5. shows all the possible ADC1 operating modes. ADC2 does not support scan and buffered modes. 6/23 Doc ID Rev 2

7 ADC hardware description Figure 5. ADC1 operating modes Start Start Channel X conversion Channel X conversion Stop Single channel Single conversion Single channel Continuous conversion Start Start Channel X conversion Channel X conversion Channel X conversion Channel X conversion Single channel Continuous and Buffered conversion Channel 1 conversion... Channel n conversion Stop Multiple channels Scan conversion (buffered) Start Channel 1 conversion... Channel n conversion Multiple channel Continuous and Scan conversion (buffered) Doc ID Rev 2 7/23

8 Summary of features AN Summary of features Table 1. below summarizes the main features of the STM8 ADC. Table 1. STM8 ADC features Feature STM8 ADC Resolution Clock speed Triggers Operating modes Conversion speed Reference voltage Number of input channels Data format Buffers (1) Special functions (1) 10-bit f ADC = 1 to 4 or 6 MHz (refer to datasheet) Software, timer or external pin trigger Single or continuous mode (14 clocks) MHz f ADC V REF+ and V REF- external pins: 2.75 V V DDA range, analog zooming possible Note: In some packages V REF+ and V REF- are not available, in these cases the reference voltages are V DDA or V DD and V SSA or V SS ) Up to 16 channels Optional left or right alignment Up to 16 data buffer registers (depending on the number of channels) Scan mode, analog watchdog, buffer overrun flag, bandgap reference voltage channel 1. Available only on ADC1 (extended ADC type) 2.1 Resolution The STM8 ADC converter has 10-bit resolution. A special extra feature of the STM8 is that, to read the conversion results faster, and if you can accept lower resolution; you can read only 8 of the 10 bits, provided that you select the appropriate register alignment. The register for configuring right or left data alignment is ADC_CR Clock selection The A/D conversion speed is given by the ADC clock signal. This clock speed must be between 1 MHz and 4 or 6 MHz (refer to datasheet). The ADC clock frequency is selected by dividing the frequency of the master clock. The register for clock speed selection is ADC_CR1. 8/23 Doc ID Rev 2

9 Summary of features 2.3 Conversion triggers ADC conversion can be triggered by a Timer1 TRGO (trigger output) event or by a rising edge on the ADC_ETR external pin. Conversion can also be triggered by software, by setting the ADON bit. The register for trigger selection is ADC_CR ADC speed/sampling time The ADC speed (and also sampling time) influences the measurement precision and must be chosen depending on the output impedance of the measured voltage source and the required conversion precision. The sampling time cannot be set independently from the ADC clock. The ADC speed can be chosen from f MASTER /2 down to f MASTER /18 where f MASTER is the microcontroller internal clock. The maximum speed of ADC conversion in the STM8 ADC is 2.33 µs. The register for selecting the ADC clock division factor is ADC_CR Voltage reference The ADC reference voltage must be connected to the external pins or in most packages is connected internally to analog power supply. The reference voltage must be within the analog power supply range and the minimum reference voltage value is 2.75V. 2.6 Input analog channel selection The STM8 ADC has up to 16 analog inputs connected to GPIO input pins. There are fewer analog inputs on some devices (this depends on the device package). Pins with ADC function must be configured as floating input and the input Schmidt trigger on these pins should be disabled (this reduces power consumption). The register for selecting the input analog channel is ADC_CSR. Doc ID Rev 2 9/23

10 Summary of features AN Data storage The 10 bits of ADC converted data are stored in two 8-bit registers (and in ADC1 type also in the buffer registers - see Figure 6.: Data alignment). The STM8 ADC has selectable data alignment. You can choose to left or right align the 10- bit ADC result in the two 8-bit data registers. You must read the data registers in a particular order to ensure that the data retrieved from the registers is consistent (resulting from the same conversion). When the first data register is read, the second data register is latched so it can be read later and to prevent it being overwritten by the next conversion. The order in which you must read the data registers depends on the alignment mode. In right alignment mode, the LSB must be read first and then the MSB. In left alignment mode, the MSB must be read first and then the LSB. Figure 6. Data alignment Left alignment mode: ADC_DRH 7 0 ADC_DRL 7 0 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0 Right alignment mode: ADC_DRH 7 0 D9 D8 D7 D6 D5 D4 D3 D2 ADC_DRL 7 0 D1 D0 2.8 Extended functions Buffers These extended functions are present only in devices with ADC1. Devices with ADC1 have a set of registers for data storage which are used when buffered mode is enabled. The converted data are stored cyclically in these registers (ring buffer). This makes data storage and collection more efficient (less CPU load and less data buffer overrun issues). The number of data buffer registers is equal to the number of ADC1 input channels and depends on the STM8 device type Buffer overrun flag This flag is set when the values in the ADC1 data buffer registers are overwritten before being read by the CPU. The user firmware can use this flag detect an overrun event and can then perform appropriate actions (for example restart A/D conversion). 10/23 Doc ID Rev 2

11 Summary of features Analog watchdog The analog watchdog compares the last converted value with high and low thresholds. When a threshold is reached then a flag is set and interrupt can be generated. This is a useful way of checking for critical analog values without CPU intervention. Figure 7. Analog watchdog operation V in ADC_HTR AWD flag is set AWD interrupt ADC_LTR t Scan mode Scan mode allows AD conversion to be performed on consecutive channels. When one AD conversion is performed on the n-th channel, then channel n+1 is selected as input channel and the next AD conversion is performed on this channel. The sequence of channels to be converted starts from channel 1 (always 1) to a selectable channel N. Channel N is set by programming the input channel selection bits. If continuous mode is used together with scan mode, then the channels are cyclically repeated, from the N-th channel back to channel 1 etc Bandgap reference channel Some devices with ADC1 have a bandgap voltage block which is connected to an input channel (usually the last channel). The purpose of this voltage block is to provide a stable, precise voltage reference for ADC calibration. Calibration can may be needed because the analog supply (V DDA and V SSA), depends on an external power source. The method of using the bandgap voltage for improving ADC accuracy is based on periodically performing an ADC conversion of the bandgap voltage input, then calculating an offset from the result and applying this offset to the results on the other channels. (postprocessing). Refer to the device datasheet to determine if a bandgap reference channel is present in the STM8 device you are using. Doc ID Rev 2 11/23

12 Configuring ADC registers for conversion AN Configuring ADC registers for conversion 3.1 Selecting the operating mode The ADC converter can operate in different modes according to application requirements. The following sections list the various operating modes, the register settings required to use the ADC in each mode and the practical uses in each case Single conversion mode In this mode, the ADC performs only one conversion. Conversion start is triggered either by software writing to the ADON bit or by a signal from Timer1 or from an external signal on the ADC_ETR pin (rising edge). There must be a new start of conversion generated before the next single conversion (either by external trigger or by software). Register settings: ADC_CR1: CONT = 0 ADC_CR3: DBUF = 0 or 1 (data buffer registers not used or used) Practical use: This mode can be used to collect an analog value from an external sensor (for example to read a temperature periodically) Continuous conversion mode In this mode, the ADC performs conversions cyclically. When one conversion has finished, then the next conversion starts immediately. Data must be collected from the data registers before they are overwritten by the next conversions. Register settings: ADC_CR1: CONT = 1 ADC_CR3: DBUF = 0 or 1 (data buffer registers not used or used ) Practical use: To collect a set of analog values from an external analog signal (for example to read an AC voltage waveform) Conversion on external trigger Conversion can be started by writing to the ADON control bit or by external trigger. The external trigger source event can be a Timer1 TRGO event or a rising edge on the external ADC_ETR pin. Register settings: ADC_CR2: EXTSEL and EXTTRIG bits ADC_CR3: DBUF = 0 or 1 (data buffer registers not used or used ) Practical use: To measure analog values at regular intervals (timer trigger) or when a user input occurs (external pin trigger - pushbutton) Scan conversion mode In this mode, the ADC performs a sequence of conversions from channel 1 up to a selected channel number. When one conversion has finished, then the next conversion starts immediately on the next channel. Data are stored incrementally in data buffer registers 12/23 Doc ID Rev 2

13 Configuring ADC registers for conversion ADC_DBx (if DBUF bit is set) from which they must be retrieved before they are overwritten by the next set of conversions (especially if continuous mode is also selected). Register settings: ADC_CR2: SCAN bit ADC_CR3: DBUF = 0 or 1 (data buffer registers not used or used ) Practical use: To collect a set of analog values from different inputs in one shot (for example to read a sample of several AC voltage waveforms almost simultaneously). 3.2 Conversion speed selection The total conversion speed of an ADC depends proportionally on the ADC clock frequency, the sampling time duration and on the ADC resolution. The ADC clock speed must be selected by selecting the division factor to be applied to the internal master clock. The sampling time is not customizable and depends on the ADC clock (3 ADC clocks). Register settings: ADC_CR1: SPSEL[2:0] bits 3.3 Analog input selection The device has up to 16 external analog inputs connected to GPIO input pins. Pins to be used as ADC input function must be configured as floating inputs and the input Schmitt triggers on these pins should be disabled to avoid unnecessary power consumption. If the application changes the analog input channel during conversion then the current conversion is stopped and the next conversion starts on the new channel. If scan mode is selected then the channel bits define the top channel in the scan sequence (from channel 1 to the top channel). Register settings: ADC_CSR: CH[3:0] bits 3.4 Storing converted values The converted ADC value is stored in the ADC_DRH and ADC_DRL registers. If buffered mode is selected then data are stored cyclically in the data buffer registers ADC_DBxRH and ADC_DBxRL (x= 0..N, N is device dependent, refer to the datasheet). Because the converted value has a 10 bit length and the data registers have 2x8 bit length, it is possible to select left or right alignment of the conversion result in the data registers. In left alignment the 8 most significant bits are stored in a single register, in right alignment the 8 least significant bits are stored in a single register. This can be chosen to suit the application. Data register reading is buffered - when the first register is read, the second register is automatically stored in a shadow register to be read later. This prevents reading data register values from 2 different conversions. The first register to be read depends on the data alignment. You must read the MSB first in left alignment mode and read LSB first in right alignment mode. Doc ID Rev 2 13/23

14 Configuring ADC registers for conversion AN2658 Right alignment has the advantage of fast read access when measuring low level signals. In cases where the result does not affect the high order bits, you can read only the least significant byte. Practical usage: Left alignment is useful for fast read access to the conversion result in 8- bit resolution. Register settings: ADC_CR3: DBUF bit ADC_CR2: ALIGN bit ADC_CR3: OVR bit 3.5 Analog watchdog function The converted ADC sample is compared with the high and low analog watchdog threshold registers. If the threshold is reached then the AWD flag is set and another status bit in the analog watchdog status register to indicate the channel on which the event occurred. The analog watchdog function can be enabled for selected channels only by setting the corresponding bits in the ADC_AWCRx control registers. Register settings: ADC_HTRH, ADC_HTRL, ADC_LTRH, ADC_LTRL - high and low thresholds ADC_AWCRH, ADC_AWCRL - control registers ADC_AWSRH, ADC_AWSRL - status registers ADC_CSR: AWDIE and AWD bits 3.6 ADC interrupt management ADC interrupt source(s) are selectable from one or more of the following events: End of conversion (EOC) in non buffered mode: generated after each AD conversion End of conversion (EOC) in buffered mode: generated after data buffer registers are full Analog watchdog alert: when converted values reach the high or low threshold values Event-driven programming can be used for efficiency or for special software requirements. With this technique, when the main program is running, it is notified of state changes by events. You can enable the ADC interrupt to give the main program fast asynchronous event notification at the end of conversion(s). This means the main program does not need to poll the ADC conversion status flags but only has to process the ADC data results (for example after storing a set of conversions in a buffer). The reception of the ADC converted data values is performed by an interrupt routine in the background. In addition, the analog watchdog interrupt can be used for monitoring a given analog range on the measured channels. Register settings: ADC_CSR: AWDIE, EOCIE bits 14/23 Doc ID Rev 2

15 Practical application 4 Practical application 4.1 Areas of use Temperature measurement: Process calibration Device thermal protection Fan control Power supply measurement: Auto save configuration Battery charging/protection Measurement of physical values in other types of application: Automation: from sensors with analog outputs Household: automatic lights dimmers, weather stations, thermometers, security sensors, Industry: lights, thermostats, humidity control, Electrical quantity measurements: voltage, current, capacity, resistance, 4.2 Hardware connection examples Figure 8. Simple unipolar DC signal measurement U IN AINx STM8 V REF- V SS Doc ID Rev 2 15/23

16 Practical application AN2658 Figure 9. External preamplifier usage (with high impedance input) U IN + - AINx R2 R1 V REF- STM8 V SS Figure 10. Differential DC signal measurement with preamplifier R2 - U IN R1 R3 R4 + AINx V REF- V SS STM8 Figure 11. AC signal (FFT) measurement U IN DC filter AINx STM8 V REF- V SS 16/23 Doc ID Rev 2

17 Practical application Figure 12. Analog zooming AINx U IN = (V REF+, V REF- ) U REF V REF+ V REF- V SS STM8 Figure 13. Multiple channel measurement (in scan mode for example) U IN0 U IN1 AIN0 AIN1 U INx AINx STM8 V REF- V SS Doc ID Rev 2 17/23

18 Practical application AN Methods for precision improvement Averaging samples: Averaging decreases speed but can give improved accuracy Analog zooming (use appropriate V REF voltage and V REF offset): Select reference voltage between input signal ranges Gives full ADC range - min. voltage per bit White noise added to measured signal: wobbling of input signal over several bits gives possibility to use averaging (if input signal is very stable) White noise gives independence from sampling frequency Digital filtering (50/60 Hz suppression from DC value) Set proper sampling frequency (The trigger from Timer1 is useful in this case) Perform software post processing on sampled data (comb filter) Fast Fourier Transform (FFT) for AC measurements: To show harmonic parts in measured signal Slower due to more computational power requirements Calibration of ADC: offset, gain, bit weight calibration Decreases internal ADC errors Internal ADC structure must be known Good hardware design: Grounding Reference voltage filtering Power supply filtering Preamplifier usage Frequency independence Refer to AN2719 for more details. 18/23 Doc ID Rev 2

19 Design recommendations 5 Design recommendations The following is a checklist of the main design rules for using the ADC. Grounding of analog/digital power: Star topology V DDA, V SSA filtering: RC, LC filtering Avoid noise from noisy digital power V REF selection - offset, value, precision: Reference voltage source precision and stability to meet the required precision in the application and the and ADC s capability Reference voltage source value and precision according to the expected measurement range Source impedance vs. input impedance knowledge: Use input buffers for measured signal Impedance relation with required conversion speed External preamplifier usage: For low (and also high) level signals Amplifier speed and precision properties Amplifier dependency from frequency Select appropriate ADC mode, speed, trigger Software methods: averaging, FFT, Doc ID Rev 2 19/23

20 Displaying the ADC conversion result using LEDs AN Displaying the ADC conversion result using LEDs 6.1 Overview This section describes how to use the ADC continuous conversion mode and display the result on LEDs. The example shows how to use continuous conversion mode and observe the effect of changing the voltage values on the analog channel and observing the accuracy of the ADC conversion. 6.2 Hardware description Figure 14 shows a typical connection between the STM8 AIN9 pin and a potentiometer. Figure 14. Connection to a potentiometer 5 V AIN9 10 KΩ STM8 6.3 Firmware description The STM8 firmware library includes the ADC driver that supports the ADC through a set of functions. In this example the ADC is configured in continuous conversion mode with interrupt enabled. In the interrupt routine, the range of the converted value defines the number of LEDs to light up each time a conversion occurs. Increasing the voltage applied to channel 9 of the ADC, using the potentiometer, increases the number of LEDs that light up (up to 4). This firmware is provided as ADC example 1 in the STM8 firmware library, available from the STMicroelectronics microcontroller website. 20/23 Doc ID Rev 2

21 ADC conversion triggered by TIM1 timer 7 ADC conversion triggered by TIM1 timer 7.1 Overview This section describes how to start and ADC conversion triggered by the TIM1 trigger output. There are several ways of starting ADC conversions in the STM8 including any event that can be generated by the multipurpose timer (TIM1). This gives the you a large choice when implementing your application. 7.2 Hardware description Figure 14 shows a typical connection between the STM8 AIN9 pin and a potentiometer. This allows you to test the ADC by changing the input voltage to be converted. The conversion result is displayed on four LEDs. This example hardware is implemented in the STM8 evaluation board STM8/128-EVAL. 7.3 Firmware description The STM8 firmware library includes the ADC driver that supports the ADC through a set of functions. ADC is configured in continuous conversion mode with interrupt enabled. The conversion is triggered by the TIM1 TRGO event. In the interrupt routine, the range of the converted value defines the number of LEDs to light up each time a conversion occurs. This firmware is provided as ADC example 2 in the STM8 firmware library, available from the STMicroelectronics microcontroller website. Doc ID Rev 2 21/23

22 Revision history AN Revision history Table 2. Document revision history Date Revision Changes 28-Oct Initial release. 08-Jul Revised to describe ADC1 and ADC2 specific features. 22/23 Doc ID Rev 2

23 Please Read Carefully: Information in this document is provided solely in connection with ST products. STMicroelectronics NV and its subsidiaries ( ST ) reserve the right to make changes, corrections, modifications or improvements, to this document, and the products and services described herein at any time, without notice. All ST products are sold pursuant to ST s terms and conditions of sale. Purchasers are solely responsible for the choice, selection and use of the ST products and services described herein, and ST assumes no liability whatsoever relating to the choice, selection or use of the ST products and services described herein. No license, express or implied, by estoppel or otherwise, to any intellectual property rights is granted under this document. If any part of this document refers to any third party products or services it shall not be deemed a license grant by ST for the use of such third party products or services, or any intellectual property contained therein or considered as a warranty covering the use in any manner whatsoever of such third party products or services or any intellectual property contained therein. UNLESS OTHERWISE SET FORTH IN ST S TERMS AND CONDITIONS OF SALE ST DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE USE AND/OR SALE OF ST PRODUCTS INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (AND THEIR EQUIVALENTS UNDER THE LAWS OF ANY JURISDICTION), OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. UNLESS EXPRESSLY APPROVED IN WRITING BY AN AUTHORIZED ST REPRESENTATIVE, ST PRODUCTS ARE NOT RECOMMENDED, AUTHORIZED OR WARRANTED FOR USE IN MILITARY, AIR CRAFT, SPACE, LIFE SAVING, OR LIFE SUSTAINING APPLICATIONS, NOR IN PRODUCTS OR SYSTEMS WHERE FAILURE OR MALFUNCTION MAY RESULT IN PERSONAL INJURY, DEATH, OR SEVERE PROPERTY OR ENVIRONMENTAL DAMAGE. ST PRODUCTS WHICH ARE NOT SPECIFIED AS "AUTOMOTIVE GRADE" MAY ONLY BE USED IN AUTOMOTIVE APPLICATIONS AT USER S OWN RISK. Resale of ST products with provisions different from the statements and/or technical features set forth in this document shall immediately void any warranty granted by ST for the ST product or service described herein and shall not create or extend in any manner whatsoever, any liability of ST. ST and the ST logo are trademarks or registered trademarks of ST in various countries. Information in this document supersedes and replaces all information previously supplied. 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 - Philippines - Singapore - Spain - Sweden - Switzerland - United Kingdom - United States of America Doc ID Rev 2 23/23

AN3332 Application note

AN3332 Application note Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three

More information

AN3998 Application note

AN3998 Application note Application note PDM audio software decoding on STM32 microcontrollers 1 Introduction This application note presents the algorithms and architecture of an optimized software implementation for PDM signal

More information

EVL185W-LEDTV. 185 W power supply with PFC and standby supply for LED TV based on the L6564, L6599A and Viper27L. Features.

EVL185W-LEDTV. 185 W power supply with PFC and standby supply for LED TV based on the L6564, L6599A and Viper27L. Features. Features 185 W power supply with PFC and standby supply for LED TV based on the L6564, L6599A and Viper27L Data brief Universal input mains range: 90 264 Vac - frequency 45 65 Hz Output voltage 1: 130

More information

AN3265 Application note

AN3265 Application note Application note Handling hardware and software failures with the STM8S-DISCOVERY Application overview This application is based on the STM8S-DISCOVERY. It demonstrates how to use the STM8S window watchdog

More information

AN2680 Application note

AN2680 Application note Application note Fan speed controller based on STDS75 or STLM75 digital temperature sensor and ST72651AR6 MCU Introduction This application note describes the method of defining the system for regulating

More information

2STBN15D100. Low voltage NPN power Darlington transistor. Features. Application. Description

2STBN15D100. Low voltage NPN power Darlington transistor. Features. Application. Description Low voltage NPN power Darlington transistor Features Good h FE linearity High f T frequency Monolithic Darlington configuration with integrated antiparallel collector-emitter diode TAB Application Linear

More information

AN3252 Application note

AN3252 Application note Application note Building a wave generator using STM8L-DISCOVERY Application overview This application note provides a short description of how to use the STM8L-DISCOVERY as a basic wave generator for

More information

AN2389 Application note

AN2389 Application note Application note An MCU-based low cost non-inverting buck-boost converter for battery chargers Introduction As the demand for rechargeable batteries increases, so does the demand for battery chargers.

More information

AN3353 Application note

AN3353 Application note Application note IEC 61000-4-2 standard testing Introduction This Application note is addressed to technical engineers and designers to explain how STMicroelectronics protection devices are tested according

More information

ST13005. High voltage fast-switching NPN power transistor. Features. Applications. Description

ST13005. High voltage fast-switching NPN power transistor. Features. Applications. Description High voltage fast-switching NPN power transistor Datasheet production data Features Low spread of dynamic parameters Minimum lot-to-lot spread for reliable operation Very high switching speed Applications

More information

AN2604 Application note

AN2604 Application note AN2604 Application note STM32F101xx and STM32F103xx RTC calibration Introduction The real-time clock (RTC) precision is a requirement in most embedded applications, but due to external environment temperature

More information

DDSL01. Secondary protection for DSL lines. Features. Description

DDSL01. Secondary protection for DSL lines. Features. Description Secondary protection for DSL lines Features Stand off voltage: 30 V Surge capability: I pp = 30 A 8/20 µs Low capacitance device: 4.5 pf at 2 V RoHS package Low leakage current: 0.5 µa at 25 C 3 2 Description

More information

AN2824 Application note

AN2824 Application note Application note STM32F10xxx I 2 C optimized examples Introduction The aim of this application note is to provide I 2 C firmware optimized examples based on polling, interrupts and DMA, covering the four

More information

LM135-LM235-LM335. Precision temperature sensors. Features. Description

LM135-LM235-LM335. Precision temperature sensors. Features. Description Precision temperature sensors Features Directly calibrated in K 1 C initial accuracy Operates from 450µA to 5mA Less than 1Ω dynamic impedance TO-92 (Plastic package) Description The LM135, LM235, LM335

More information

AN3110 Application note

AN3110 Application note Application note Using the STVM100 to automatically adjust VCOM voltage in e-paper Introduction The widespread use of multimedia electronic devices, coupled with environmental concerns over the manufacturing

More information

TN0023 Technical note

TN0023 Technical note Technical note Discontinuous flyback transformer description and design parameters Introduction The following is a general description and basic design procedure for a discontinuous flyback transformer.

More information

MC33079. Low noise quad operational amplifier. Features. Description

MC33079. Low noise quad operational amplifier. Features. Description Low noise quad operational amplifier Datasheet production data Features Low voltage noise: 4.5 nv/ Hz High gain bandwidth product: 15 MHz High slew rate: 7 V/µs Low distortion: 0.002% Large output voltage

More information

ULN2001, ULN2002 ULN2003, ULN2004

ULN2001, ULN2002 ULN2003, ULN2004 ULN2001, ULN2002 ULN2003, ULN2004 Seven Darlington array Datasheet production data Features Seven Darlingtons per package Output current 500 ma per driver (600 ma peak) Output voltage 50 V Integrated suppression

More information

BD241A BD241C. NPN power transistors. Features. Applications. Description. NPN transistors. Audio, general purpose switching and amplifier transistors

BD241A BD241C. NPN power transistors. Features. Applications. Description. NPN transistors. Audio, general purpose switching and amplifier transistors BD241A BD241C NPN power transistors Features. NPN transistors Applications Audio, general purpose switching and amplifier transistors Description The devices are manufactured in Planar technology with

More information

BD135 - BD136 BD139 - BD140

BD135 - BD136 BD139 - BD140 BD135 - BD136 BD139 - BD140 Complementary low voltage transistor Features Products are pre-selected in DC current gain Application General purpose Description These epitaxial planar transistors are mounted

More information

Single LNB supply and control IC DiSEqC 1.X compliant with EXTM based on the LNBH29 in a QFN16 (4x4) Description

Single LNB supply and control IC DiSEqC 1.X compliant with EXTM based on the LNBH29 in a QFN16 (4x4) Description Single LNB supply and control IC DiSEqC 1.X compliant with EXTM based on the LNBH29 in a QFN16 (4x4) Data brief Low-drop post regulator and high-efficiency step-up PWM with integrated power N-MOS allowing

More information

BD238. Low voltage PNP power transistor. Features. Applications. Description. Low saturation voltage PNP transistor

BD238. Low voltage PNP power transistor. Features. Applications. Description. Low saturation voltage PNP transistor Low voltage PNP power transistor Features Low saturation voltage PNP transistor Applications Audio, power linear and switching applications Description The device is manufactured in planar technology with

More information

LM134-LM234-LM334. Three terminal adjustable current sources. Features. Description

LM134-LM234-LM334. Three terminal adjustable current sources. Features. Description Three terminal adjustable current sources Features Operates from 1V to 40V 0.02%/V current regulation Programmable from 1µA to 10mA ±3% initial accuracy Description The LM134/LM234/LM334 are 3-terminal

More information

LM337. Three-terminal adjustable negative voltage regulators. Features. Description

LM337. Three-terminal adjustable negative voltage regulators. Features. Description Three-terminal adjustable negative voltage regulators Datasheet - production data current limit, thermal overload protection and safe area protection. All overload protection circuitry remains fully functional

More information

AN4108 Application note

AN4108 Application note Application note How to set up a HTTPS server for In-Home display with HTTPS Introduction This application note describes how to configure a simple SSL web server using the EasyPHP free application to

More information

ULN2801A, ULN2802A, ULN2803A, ULN2804A

ULN2801A, ULN2802A, ULN2803A, ULN2804A ULN2801A, ULN2802A, ULN2803A, ULN2804A Eight Darlington array Datasheet production data Features Eight Darlington transistors with common emitters Output current to 500 ma Output voltage to 50 V Integral

More information

SPC5-FLASHER. Flash management tool for SPC56xx family. Description. Features

SPC5-FLASHER. Flash management tool for SPC56xx family. Description. Features Flash management tool for SPC56xx family Data brief Flash verify: check the Flash content with a binary image file Unsecure sequence for censored device: sending the private password selected from the

More information

AN3354 Application note

AN3354 Application note Application note STM32F105/107 in-application programming using a USB host 1 Introduction An important requirement for most Flash-memory-based systems is the ability to update firmware installed in the

More information

Description. Table 1. Device summary. Order code Temperature range Package Packaging Marking

Description. Table 1. Device summary. Order code Temperature range Package Packaging Marking 14-stage ripple carry binary counter/divider and oscillator Applications Automotive Industrial Computer Consumer Description Datasheet - production data Features Medium speed operation Common reset Fully

More information

Order code Temperature range Package Packaging

Order code Temperature range Package Packaging ST485B ST485C Low power RS-485/RS-422 transceiver Features Low quiescent current: 300 µa Designed for RS-485 interface application - 7 V to 12 V common mode input voltage range Driver maintains high impedance

More information

BZW50. Transil, transient voltage surge suppressor (TVS) Features. Description

BZW50. Transil, transient voltage surge suppressor (TVS) Features. Description Transil, transient voltage surge suppressor (TVS) Datasheet production data Features Peak pulse power: 5000 W (10/0 µs) Stand-off voltage range from 10 V to 180 V Unidirectional and bidirectional types

More information

ESDLIN1524BJ. Transil, transient voltage surge suppressor diode for ESD protection. Features. Description SOD323

ESDLIN1524BJ. Transil, transient voltage surge suppressor diode for ESD protection. Features. Description SOD323 Transil, transient voltage surge suppressor diode for ESD protection Datasheet production data Features Max peak pulse power 160 W (8/0 µs) Asymmetrical bidirectional device Stand-off voltage: 15 and 4

More information

DSL01-xxxSC5. Secondary protection for DSL lines. Features. Description. Applications. Benefits. Complies with the following standards

DSL01-xxxSC5. Secondary protection for DSL lines. Features. Description. Applications. Benefits. Complies with the following standards -xxxsc5 Secondary protection for DSL lines Features Low capacitance devices: -xxxsc5: Delta C typ = 3.5 pf High surge capability: 30 A - 8/20 µs Voltage: 8 V, 10.5 V, 16 V, and 24 V RoHS package Benefits

More information

UA741. General-purpose single operational amplifier. Features. Applications. Description. N DIP8 (plastic package)

UA741. General-purpose single operational amplifier. Features. Applications. Description. N DIP8 (plastic package) General-purpose single operational amplifier Datasheet - production data N DIP8 (plastic package) D SO8 (plastic micropackage) Pin connections (top view) 1 - Offset null 1 2 - Inverting input 3 - Non-inverting

More information

AN4156 Application note

AN4156 Application note Application note Hardware abstraction layer for Android Introduction This application note provides guidelines for successfully integrating STMicroelectronics sensors (accelerometer, magnetometer, gyroscope

More information

L78MxxAB L78MxxAC. Precision 500 ma regulators. Features. Description

L78MxxAB L78MxxAC. Precision 500 ma regulators. Features. Description L78MxxAB L78MxxAC Precision 500 ma regulators Features Output current to 0.5 A Output voltages of 5; 6; 8; 9; 10; 12; 15; 18; 24 V Thermal overload protection Short circuit protection Output transition

More information

EN: This Datasheet is presented by the m anufacturer. Please v isit our website for pricing and availability at www.hest ore.hu.

EN: This Datasheet is presented by the m anufacturer. Please v isit our website for pricing and availability at www.hest ore.hu. EN: This Datasheet is presented by the m anufacturer. Please v isit our website for pricing and availability at www.hest ore.hu. 2N3055, MJ2955 Complementary power transistors Features Datasheet - production

More information

Description. Table 1. Device summary

Description. Table 1. Device summary 2 A positive voltage regulator IC Description Datasheet - production data Features TO-220 Output current up to 2 A Output voltages of 5; 7.5; 9; 10; 12; 15; 18; 24 V Thermal protection Short circuit protection

More information

ETP01-xx21. Protection for Ethernet lines. Features. Description. Applications. Benefits. Complies with the following standards

ETP01-xx21. Protection for Ethernet lines. Features. Description. Applications. Benefits. Complies with the following standards ETP0-xx2 Protection for Ethernet lines Features Differential and common mode protection Telcordia GR089 Intrabuilding: 50 A, 2/0 µs ITU-T K20/2: 40 A, 5/30 µs Low capacitance: 3 pf max at 0 V UL94 V0 approved

More information

AN2557 Application note

AN2557 Application note Application note STM32F10x in-application programming using the USART Introduction An important requirement for most Flash-memory-based systems is the ability to update firmware when installed in the end

More information

STP60NF06. N-channel 60V - 0.014Ω - 60A TO-220 STripFET II Power MOSFET. General features. Description. Internal schematic diagram.

STP60NF06. N-channel 60V - 0.014Ω - 60A TO-220 STripFET II Power MOSFET. General features. Description. Internal schematic diagram. N-channel 60V - 0.014Ω - 60A TO-220 STripFET II Power MOSFET General features Type V DSS R DS(on) I D STP60NF06 60V

More information

Description. Table 1. Device summary. Order codes. TO-220 (single gauge) TO-220 (double gauge) D²PAK (tape and reel) TO-220FP

Description. Table 1. Device summary. Order codes. TO-220 (single gauge) TO-220 (double gauge) D²PAK (tape and reel) TO-220FP 1.2 V to 37 V adjustable voltage regulators Description Datasheet - production data TO-220 TO-220FP The LM217, LM317 are monolithic integrated circuits in TO-220, TO-220FP and D²PAK packages intended for

More information

Table 1. Absolute maximum ratings (T amb = 25 C) Symbol Parameter Value Unit. ISO 10605 - C = 330 pf, R = 330 Ω : Contact discharge Air discharge

Table 1. Absolute maximum ratings (T amb = 25 C) Symbol Parameter Value Unit. ISO 10605 - C = 330 pf, R = 330 Ω : Contact discharge Air discharge Automotive dual-line Transil, transient voltage suppressor (TVS) for CAN bus Datasheet - production data Complies with the following standards ISO 10605 - C = 150 pf, R = 330 Ω : 30 kv (air discharge)

More information

UM1676 User manual. Getting started with.net Micro Framework on the STM32F429 Discovery kit. Introduction

UM1676 User manual. Getting started with.net Micro Framework on the STM32F429 Discovery kit. Introduction User manual Getting started with.net Micro Framework on the STM32F429 Discovery kit Introduction This document describes how to get started using the.net Micro Framework (alias NETMF) on the STM32F429

More information

UM0985 User manual. Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software. Introduction

UM0985 User manual. Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software. Introduction User manual Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software Introduction This document provides an introduction on how to use IAR Embedded Workbench for ARM software

More information

Getting started with DfuSe USB device firmware upgrade STMicroelectronics extension

Getting started with DfuSe USB device firmware upgrade STMicroelectronics extension User manual Getting started with DfuSe USB device firmware upgrade STMicroelectronics extension Introduction This document describes the demonstration user interface that was developed to illustrate use

More information

STTH2R06. High efficiency ultrafast diode. Features. Description

STTH2R06. High efficiency ultrafast diode. Features. Description STTH2R6 High efficiency ultrafast diode Features Very low conduction losses Negligible switching losses Low forward and reverse recovery times High junction temperature Description A K The STTH2R6 uses

More information

STP60NF06FP. N-channel 60V - 0.014Ω - 30A TO-220FP STripFET II Power MOSFET. General features. Description. Internal schematic diagram.

STP60NF06FP. N-channel 60V - 0.014Ω - 30A TO-220FP STripFET II Power MOSFET. General features. Description. Internal schematic diagram. N-channel 60V - 0.014Ω - 30A TO-220FP STripFET II Power MOSFET General features Type V DSS R DS(on) I D STP60NF06FP 60V

More information

L6234. Three phase motor driver. Features. Description

L6234. Three phase motor driver. Features. Description Three phase motor driver Features Supply voltage from 7 to 52 V 5 A peak current R DSon 0.3 Ω typ. value at 25 C Cross conduction protection TTL compatible driver Operating frequency up to 150 khz Thermal

More information

UM1613 User manual. 16-pin smartcard interface ST8034P demonstration board. Introduction

UM1613 User manual. 16-pin smartcard interface ST8034P demonstration board. Introduction User manual 16-pin smartcard interface ST8034P demonstration board Introduction The purpose of this document is to describe, and provide information on, how to efficiently use the ST8034P smartcard interface

More information

Description SO-8. series. Furthermore, in the 8-pin configuration Very low-dropout voltage (0.2 V typ.)

Description SO-8. series. Furthermore, in the 8-pin configuration Very low-dropout voltage (0.2 V typ.) ery low-dropout voltage regulator with inhibit function TO-92 Bag TO-92 Tape and reel Ammopack 1 2 3 SO-8 Description Datasheet - production data The is a very low-dropout voltage regulator available in

More information

TDA2003 10W CAR RADIO AUDIO AMPLIFIER

TDA2003 10W CAR RADIO AUDIO AMPLIFIER TDA2003 10W CAR RADIO AUDIO AMPLIFIER DESCRIPTION The TDA 2003 has improved performance with the same pin configuration as the TDA 2002. The additional features of TDA 2002, very low number of external

More information

AN2760 Application note

AN2760 Application note Application note Using clock distribution circuits in smart phone system design Introduction As smart phones become more and more popular in the market, additional features such as A-GPS, Bluetooth, WLAN

More information

STEVAL-IEG001V2. Smart real-time vehicle tracking system. Features

STEVAL-IEG001V2. Smart real-time vehicle tracking system. Features Smart real-time vehicle tracking system Data brief Features Real-time vehicle tracking through GPS/GSM/GPRS. Vehicle location coordinates acquired using a Telit GPS module and sent over GPRS to web server-based

More information

STN3NF06L. N-channel 60 V, 0.07 Ω, 4 A, SOT-223 STripFET II Power MOSFET. Features. Application. Description

STN3NF06L. N-channel 60 V, 0.07 Ω, 4 A, SOT-223 STripFET II Power MOSFET. Features. Application. Description N-channel 60 V, 0.07 Ω, 4 A, SOT-223 STripFET II Power MOSFET Features Type V DSS (@Tjmax) Exceptional dv/dt capability Avalanche rugged technology 100% avalanche tested R DS(on) max STN3NF06L 60 V < 0.1

More information

How To Write To An Eeprom Memory On A Flash Memory On An Iphone Or Ipro Memory On Microsoft Flash Memory (Eeprom) On A Microsoft Microsoft Powerbook (Ai) 2.2.2

How To Write To An Eeprom Memory On A Flash Memory On An Iphone Or Ipro Memory On Microsoft Flash Memory (Eeprom) On A Microsoft Microsoft Powerbook (Ai) 2.2.2 Application note EEPROM emulation in STM32F10x microcontrollers Introduction Many applications require EEPROM (electrically erasable programmable read-only memory) for non-volatile data storage. For low-cost

More information

Description. IO and RF AGC. ASIC controller and power management. Carrier recovery loop. GPIO switch matrix. Lock indicator and monitoring DVBS2 FEC

Description. IO and RF AGC. ASIC controller and power management. Carrier recovery loop. GPIO switch matrix. Lock indicator and monitoring DVBS2 FEC Multi-standard advanced demodulator for satellite digital TV and data services set-top boxes Data Brief Features Demodulation DIRECTV TM and DVBS QPSK DVBS2 QPSK and 8PSK Digital Nyquist root filter with

More information

TDA2004R. 10 + 10 W stereo amplifier for car radio. Features. Description

TDA2004R. 10 + 10 W stereo amplifier for car radio. Features. Description 10 + 10 W stereo amplifier for car radio Features Low distortion Low noise Protection against: Output AC short circuit to ground Overrating chip temperature Load dump voltage surge Fortuitous open ground

More information

P6KE. Transil, transient voltage surge suppressor (TVS) Features. Description. Complies with the following standards

P6KE. Transil, transient voltage surge suppressor (TVS) Features. Description. Complies with the following standards Transil, transient voltage surge suppressor (TVS) Datasheet production data Features Peak pulse power: 600 W (10/0 µs ) Stand-off voltage range 6.8 to 440 V Unidirectional and bidirectional types Low clamping

More information

AN4368 Application note

AN4368 Application note Application note Signal conditioning for pyroelectric passive infrared (PIR) sensors Sylvain Colliard-Piraud Introduction Pyroelectric passive infrared (PIR) sensors are widely used in daily life. They

More information

AN3359 Application note

AN3359 Application note Application note Low cost PCB antenna for 2.4GHz radio: Meander design 1 Introduction This application note is dedicated to the STM32W108 product family from STMicroelectronics. One of the main reasons

More information

AN3990 Application note

AN3990 Application note Application note Upgrading STM32F4DISCOVERY board firmware using a USB key Introduction An important requirement for most Flash memory-based systems is the ability to update the firmware installed in the

More information

AN2866 Application note

AN2866 Application note Application note How to design a 13.56 MHz customized tag antenna Introduction RFID (radio-frequency identification) tags extract all of their power from the reader s field. The tags and reader s antennas

More information

STTH1R04-Y. Automotive ultrafast recovery diode. Features. Description

STTH1R04-Y. Automotive ultrafast recovery diode. Features. Description Automotive ultrafast recovery diode Features Datasheet - production data K SMA STTH1R4AY Table 1. Device summary Symbol Value I F(AV) 1 A V RRM 4 V T j (max) 175 C V F (typ) t rr (typ) A K.9 V 14 ns A

More information

AN3270 Application note

AN3270 Application note Application note Using the STM8L16x AES hardware accelerator Introduction The purpose of cryptography is to protect sensitive data to avoid it being read by unauthorized persons. There are many algorithms

More information

M24LRxx/CR95HF application software installation guide

M24LRxx/CR95HF application software installation guide User manual M24LRxx/CR95HF application software installation guide Introduction This user manual describes the procedures to install the different software drivers required to use the DEVKIT-M24LR-A development

More information

ST19NP18-TPM-I2C. Trusted Platform Module (TPM) with I²C Interface. Features

ST19NP18-TPM-I2C. Trusted Platform Module (TPM) with I²C Interface. Features Trusted Platform Module (TPM) with I²C Interface Data brief Features Single-chip Trusted Platform Module (TPM) Embedded TPM 1.2 firmware I²C communication interface (Slave mode) Architecture based on ST19N

More information

STLM20. Ultra-low current 2.4 V precision analog temperature sensor. Features. Applications

STLM20. Ultra-low current 2.4 V precision analog temperature sensor. Features. Applications Ultra-low current 2.4 V precision analog temperature sensor Features Precision analog voltage output temperature sensor ±1.5 C maximum temperature accuracy at 25 C (±0.5 C typical) Ultra-low quiescent

More information

STCS1. 1.5 A max constant current LED driver. Features. Applications. Description

STCS1. 1.5 A max constant current LED driver. Features. Applications. Description 1.5 A max constant current LED driver Features Up to 40 V input voltage Less than 0.5 V voltage overhead Up to 1.5 A output current PWM dimming pin Shutdown pin LED disconnection diagnostic DFN8 (3x3 mm)

More information

AN3155 Application note

AN3155 Application note Application note USART protocol used in the STM32 bootloader Introduction This application note describes the USART protocol used in the STM32 microcontroller bootloader. It details each supported command.

More information

SPC5-CRYP-LIB. SPC5 Software Cryptography Library. Description. Features. SHA-512 Random engine based on DRBG-AES-128

SPC5-CRYP-LIB. SPC5 Software Cryptography Library. Description. Features. SHA-512 Random engine based on DRBG-AES-128 SPC5 Software Cryptography Library Data brief SHA-512 Random engine based on DRBG-AES-128 RSA signature functions with PKCS#1v1.5 ECC (Elliptic Curve Cryptography): Key generation Scalar multiplication

More information

AN2703 Application note

AN2703 Application note Application note list for SCRs, TRIACs, AC switches, and DIACS Introduction All datasheet parameters are rated as minimum or maximum values, corresponding to the product parameter distribution. In each

More information

LM2901. Low-power quad voltage comparator. Features. Description

LM2901. Low-power quad voltage comparator. Features. Description Low-power quad voltage comparator Features Wide single supply voltage range or dual supplies for all devices: +2 V to +36 V or ±1 V to ±18 V Very low supply current (1.1 ma) independent of supply voltage

More information

AN4128 Application note

AN4128 Application note Application note Demonstration board for Bluetooth module class 1 SBT2632C1A.AT2 Introduction This document describes the STEVAL-SPBT4ATV3 demonstration board (dongle) for the Bluetooth class 1 SPBT2632C1A.AT2

More information

VN05N. High side smart power solid state relay PENTAWATT. Features. Description

VN05N. High side smart power solid state relay PENTAWATT. Features. Description High side smart power solid state relay Features Type V DSS R DS(on) I OUT V CC VN05N 60 V 0.18 Ω 13 A 26 V Output current (continuous): 13A @ Tc=25 C 5V logic level compatible input Thermal shutdown Under

More information

STCS1A. 1.5 A max constant current LED driver. Features. Applications. Description

STCS1A. 1.5 A max constant current LED driver. Features. Applications. Description 1.5 A max constant current LED driver Features Up to 40 V input voltage Less than 0.5 V voltage overhead Up to 1.5 A output current PWM dimming pin Shutdown pin LED disconnection diagnostic DFN8 (3 x 3

More information

STGB10NB37LZ STGP10NB37LZ

STGB10NB37LZ STGP10NB37LZ STGB10NB37LZ STGP10NB37LZ 10 A - 410 V internally clamped IGBT Features Low threshold voltage Low on-voltage drop Low gate charge TAB TAB High current capability High voltage clamping feature Applications

More information

STP55NF06L STB55NF06L - STB55NF06L-1

STP55NF06L STB55NF06L - STB55NF06L-1 General features STP55NF06L STB55NF06L - STB55NF06L-1 N-channel 60V - 0.014Ω - 55A TO-220/D 2 PAK/I 2 PAK STripFET II Power MOSFET Type V DSS R DS(on) I D STP55NF06L 60V

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Vertical deflection booster for 3 App TV/monitor applications with 0 V flyback generator Features Figure. Heptawatt package Power amplifier Flyback generator Stand-by control Output current up to 3.0 App

More information

UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction

UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction User manual Getting started with STM32 Nucleo board software development tools Introduction The STM32 Nucleo board (NUCLEO-F030R8, NUCLEO-F072RB, NUCLEO-F103RB, NUCLEO-F302R8, NUCLEO-F401RE, NUCLEO-L152RE)

More information

STDP2690. Advanced DisplayPort to DisplayPort (dual mode) converter. Features. Applications

STDP2690. Advanced DisplayPort to DisplayPort (dual mode) converter. Features. Applications Advanced DisplayPort to DisplayPort (dual mode) converter Data brief Features DisplayPort dual-mode transmitter DP 1.2a compliant Link rate HBR2/HBR/RBR 1, 2, or 4 lanes AUX CH 1 Mbps Supports edp operation

More information

UM1790 User manual. Getting started with STM32L053 discovery kit software development tools. Introduction

UM1790 User manual. Getting started with STM32L053 discovery kit software development tools. Introduction User manual Getting started with STM32L053 discovery kit software development tools Introduction This document describes the software environment recommendations required to build an application using

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Low-power combo DVB-T/T2/C/S/S2 single-chip receiver Features DVB-T2 demodulation: Compliant with ETSI EN302755 DTG v7 and Nordig Unified v2.3 compliant 1.7, 5, 6, 7 and 8 MHz normal and extended BW signals

More information

AN974 APPLICATION NOTE

AN974 APPLICATION NOTE AN974 APPLICATION NOTE Real time clock with ST7 Timer Output Compare By MCD Application Team 1 INTRODUCTION The purpose of this note is to present how to use the ST7 Timer output compare function. As an

More information

AN235 Application note

AN235 Application note Application note Stepper motor driving By Thomas Hopkins Introduction Dedicated integrated circuits have dramatically simplified stepper motor driving. To apply these ICs, designers need little specific

More information

STOD2540. PMOLED display power supply. Features. Application. Description

STOD2540. PMOLED display power supply. Features. Application. Description PMOLED display power supply Features Inductor switches boost controller PFM mode control High efficiency over wide range of load (1 ma to 40 ma) Integrated load disconnect switch Over voltage protection

More information

TDA7448 6 CHANNEL VOLUME CONTROLLER 1 FEATURES 2 DESCRIPTION. Figure 1. Package

TDA7448 6 CHANNEL VOLUME CONTROLLER 1 FEATURES 2 DESCRIPTION. Figure 1. Package 6 CHANNEL CONTROLLER FEATURES 6 CHANNEL INPUTS 6 CHANNEL OUTPUTS ATTENUATION RANGE OF 0 TO -79dB CONTROL IN.0dB STEPS 6 CHANNEL INDEPENDENT CONTROL ALL FUNCTION ARE PROGRAMMABLE VIA SERIAL BUS DESCRIPTION

More information

UM1680 User manual. Getting started with STM32F429 Discovery software development tools. Introduction

UM1680 User manual. Getting started with STM32F429 Discovery software development tools. Introduction User manual Getting started with STM32F429 Discovery software development tools Introduction This document describes the software environment and development recommendations required to build an application

More information

STM6315. Open drain microprocessor reset. Features

STM6315. Open drain microprocessor reset. Features Open drain microprocessor reset Features Low supply current of 1.5µA (typ) ±1.8% reset threshold accuracy (25 C) Guaranteed RST assertion down to V CC = 1.0V Open drain RST output can exceed V CC Power

More information

STCS2A. 2 A max constant current LED driver. Features. Applications. Description

STCS2A. 2 A max constant current LED driver. Features. Applications. Description 2 A max constant current LED driver Features Up to 40 V input voltage Less than 0.5 V voltage overhead Up to 2 A output current PWM dimming pin Shutdown pin LED disconnection diagnostic Slope control with

More information

STB75NF75 STP75NF75 - STP75NF75FP

STB75NF75 STP75NF75 - STP75NF75FP STB75NF75 STP75NF75 - STP75NF75FP N-channel 75V - 0.0095Ω - 80A - TO-220 - TO-220FP - D 2 PAK STripFET II Power MOSFET General features Type V DSS R DS(on) I D STB75NF75 75V

More information

AN438 APPLICATION NOTE SAFETY PRECAUTIONS FOR DEVELOPMENT TOOL TRIAC + MICROCONTROLLER

AN438 APPLICATION NOTE SAFETY PRECAUTIONS FOR DEVELOPMENT TOOL TRIAC + MICROCONTROLLER AN438 APPLICATION NOTE SAFETY PRECAUTIONS FOR DEVELOPMENT TOOL TRIAC + MICROCONTROLLER INTRODUCTION The goal of this paper is to analyse the different ways to configure a micro-controller and a development

More information

NE555 SA555 - SE555. General-purpose single bipolar timers. Features. Description

NE555 SA555 - SE555. General-purpose single bipolar timers. Features. Description NE555 SA555 - SE555 General-purpose single bipolar timers Features Low turn-off time Maximum operating frequency greater than 500 khz Timing from microseconds to hours Operates in both astable and monostable

More information

AN4646 Application note

AN4646 Application note Application note Peripheral interconnections on STM32F401 and STM32F411 lines Introduction On top of the highest performance and the lowest power consumption of the STM32F4 family, STM32F401/411 peripherals

More information

MC34063AB, MC34063AC, MC34063EB, MC34063EC

MC34063AB, MC34063AC, MC34063EB, MC34063EC MC34063AB, MC34063AC, MC34063EB, MC34063EC DC-DC converter control circuits Description Datasheet - production data Features DIP-8 SO-8 Output switch current in excess of 1.5 A 2 % reference accuracy Low

More information

STP10NK80ZFP STP10NK80Z - STW10NK80Z

STP10NK80ZFP STP10NK80Z - STW10NK80Z STP10NK80ZFP STP10NK80Z - STW10NK80Z N-channel 800V - 0.78Ω - 9A - TO-220/FP-TO-247 Zener-protected supermesh TM MOSFET General features Type V DSS R DS(on) I D Pw STP10NK80Z 800V

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) 32 W hi-fi audio power amplifier Features High output power (50 W music power IEC 268.3 rules) High operating supply voltage (50 V) Single or split supply operations Very low distortion Short-circuit protection

More information

STTH110. High voltage ultrafast rectifier. Description. Features

STTH110. High voltage ultrafast rectifier. Description. Features High voltage ultrafast rectifier Datasheet - production data K Description The STTH110, which is using ST ultrafast high voltage planar technology, is especially suited for free-wheeling, clamping, snubbering,

More information

STDP4328. DisplayPort 1.2a concentrator. Features. Applications

STDP4328. DisplayPort 1.2a concentrator. Features. Applications DisplayPort 1.2a concentrator Data brief Features DisplayPort dual mode receiver Two receiver ports DP 1.2a compliant Link rate HBR2/HBR/RBR SST or MST (up to eight streams) 1, 2, or 4 lanes AUX CH 1 Mbps

More information

AN4195 Application note

AN4195 Application note AN4195 Application note STM32F30x ADC modes and application Introduction This application note presents an overview of the ADC peripherals in the STM32F30x microcontroller families, and explains how to

More information