Halogen and Antimony Free. “Green” Device (Note 3)
Qualified to AEC-Q101 Standards for High Reliability
PPAP Capable (Note 4)
Mechanical Data
Case: SOT223
Case Material: Molded Plastic. “Green” Molding Compound;
UL Flammability Rating 94V-0
Moisture Sensitivity: Level 1 per J-STD-020
Terminals: Finish - Matte Tin Plated Leads; Solderable per
MIL-STD-202, Method 208
Weight: 0.112 grams (Approximate)
Applications
Medium Power Switching or Amplification Applications
AF Driver and Output Stages
SOT223
C
B
E
Top View
Device Symbol
Top View
Pin-Out
Ordering Information
(Notes 4 & 5)
Product
BCP51TA
BCP5110TA
BCP5116TA
BCP5116TC
BCP52TA
BCP5210TA
BCP5216TA
BCP53TA
BCP53QTA
BCP5310TA
BCP5316TA
BCP5316QTA
BCP5316TC
Notes:
Compliance
AEC-Q101
AEC-Q101
AEC-Q101
AEC-Q101
AEC-Q101
AEC-Q101
AEC-Q101
AEC-Q101
Automotive
AEC-Q101
AEC-Q101
Automotive
AEC-Q101
Marking
BCP 51
BCP 5110
BCP 5116
BCP 5116
BCP 52
BCP 5210
BCP 5216
BCP 53
BCP 53
BCP 5310
BCP 5316
BCP 5316
Reel size (inches)
7
7
7
13
7
7
7
7
7
7
7
13
Tape width (mm)
12
12
12
12
12
12
12
12
12
12
12
12
Quantity per reel
1,000
1,000
1,000
4,000
1,000
1,000
1,000
1,000
1,000
1,000
1,000
4,000
Refer to http://diodes.com/datasheets/BCP5316Q.pdf
1. No purposely added lead. Fully EU Directive 2002/95/EC (RoHS) & 2011/65/EU (RoHS 2) compliant.
2. See http://www.diodes.com/quality/lead_free.html for more information about Diodes Incorporated’s definitions of Halogen- and Antimony-free, "Green"
and Lead-free.
3. Halogen- and Antimony-free "Green” products are defined as those which contain <900ppm bromine, <900ppm chlorine (<1500ppm total Br + Cl) and
<1000ppm antimony compounds.
4. Automotive products are AEC-Q101 qualified and are PPAP capable. Automotive, AEC-Q101 and standard products are electrically and thermally
the same, except where specified. For more information, please refer to http://www.diodes.com/quality/product_compliance_definitions/.
5. For packaging details, go to our website at http://www.diodes.com/products/packages.html.
Marking Information
SOT223
BCP = Product Type Marking Code, Line 1
XXXX = Product Type Marking Code, Line 2 as follows:
What is the definition of the AT command set? Is it complicated? Is it troublesome to use it? I am a layman. I want to understand the AT command set and how to learn to use it better and faster....
[i=s] This post was last edited by suoma on 2017-5-6 08:33 [/i] I was in a good mood on 4.30 and bought a dress. However, it has not been shipped today. I asked the buyer and he gave me the following ...
For RF engineers, the receiver sensitivity of their own design is one of the most concerned and important parameters. So let's first look at the definition of receiver sensitivity:The minimum signal l...
Why does fatal error RC1015: cannot open include file 'afxres.h' appear every time I create a menu? After I create a menu, I include "resource.h" and compile. This error occurs every time. I have trie...
[size=3]Registration for the National Image and Graphics Technology Application Conference has begun[/size] [size=3] Graphics and Image Processing Software Computer Graphics Image Processing Image Pro...
Shannon's theorem analogy: What does the speed of cars on urban roads depend on? It depends on the width of the road, the power of the car, and other interference factors (such as the number of cars a...
Recently, the first Digital China Summit was held in Fuzhou, attracting many domestic ICT industry giants to participate in the exhibition. The long queues outside the venue, the noisy and exciting...[Details]
For STM32, there are two ways to reset the software: 1) Use the official software library The system reset function is directly provided in the stm32f10x_nvic.c file of the official software li...[Details]
CMSIS Driver has similar API functions and similar calling methods. It is a further encapsulation based on the ST HAL library. It is much more convenient and simpler to use and configure than the ST ...[Details]
1. Introduction to MC68K CPU The MC683xx series of microcontrollers are composed of the famous MOTOROLA 32-bit microprocessors such as MC68K, 68020, 68040, and the compatible 68K, CPU32, CPU3...[Details]
On May 16, in response to
the public opinion storm caused by
Lenovo's
"
5G
voting" incident,
Lenovo
Holdings Chairman and
Lenovo
Group Founder Liu Chuanzhi, Lenovo Gr...[Details]
Notes on inverter installation and maintenance:
1. Before installation, you should first check whether the inverter is damaged during transportation.
2. When selecting an installa...[Details]
I used the bit definition in my 51 program: bit flag. After defining it this way, I ran the program and downloaded it to the circuit board. I found that the flag was not the value I set, which led to...[Details]
The Vatican Secret Archives is one of the world's greatest historical collections, but many of its documents have never been transcribed. Recently, a project called Codice Ratio used a
combination...[Details]
Interrupts and timers implement a 24-hour clock. The program is as follows: #include reg52.h #define PORTLEN P0 sbit bit_select = P2^0; sbit seg_select = P2^1; unsigned char src = {0x3f,0x06,0...[Details]
Use common anode digital tube and independent keyboard to connect P1 and P2 ports of single chip to realize answering machine The procedure is as follows: #include reg52.h void delay(unsigned char n)...[Details]
Manually assemble the following program machine code and analyze the execution function of the program segment. CLR A MOV R2, A MOV R7, #4 LOOP: CLR C MOV A, R0 RLC...[Details]
It is required to use timer/counter 1 for timing, with a timing of 1 second; timer/counter 0 for counter, and the external pulse to be counted is connected from P3.4 (T0). The microcontroller will co...[Details]
Assume that both the augend NA and the addend NB are three-byte compressed BCD codes, which are stored in the internal RAM units 20H~22H and 30H~32H, respectively, with the low digit first and the hi...[Details]
//Environment: winavr+avr studio char temp=0; ISR(TIMER1_COMPA_vect )//interrupt function { // user code here temp++; if (temp==10) temp=0; PORTA=temp; DDRA=0xff; } void ...[Details]