Developer Friendly USB: A Detailed Look At How Easily A USB-based Device Can Be Developed

2024-07-24 FTDI CHIP Official Website
USB-UART chip,USB chip,FT232BM,FT245BM USB-UART chip,USB chip,FT232BM,FT245BM USB-UART chip,USB chip,FT232BM,FT245BM USB-UART chip,USB chip,FT232BM,FT245BM

As the popularity of USB continues to increase, so does the desire and need for easier ways to develop USB-based products. Lots of integrated circuit manufacturers are now offering USB serial engines and integrated USB/Microcontroller chips. The use of these devices assumes you will take on the burden of all required software development. 


The development of most new USB-based products begins with the laborious and frustrating task of writing a device driver. This task can easily consume the bulk of a developer’s free time (nights and weekends that is) trying to stay on schedule. This task can be simplified somewhat by using the Human Interface Device (HID) class, or it can be eliminated altogether by using FTDI’s royalty-free drivers. The only catch with using FTDI’s drivers is that they only work with FTDI’s chips. FTDI offers two versions of their USB chips (USB to UART and USB to parallel FIFO) as well as two versions of their drivers (Virtual Com Port and DLL). 


This article will describe a complete USB-based product design--start to finish-- for acquiring temperature data from two digital temperature sensors. The USBUART version of the FTDI device (FT232BM) will be used as well as their Virtual Com Port drivers


Microcontroller

As mentioned above, FTDI (www.ftdichip.com) makes both a parallel and a serial version of their USB chip. Connection to the parallel version (FT245BM) requires 8 data lines and 4 handshaking lines to properly implement the interface. What if you only have 2 free port pins on your microcontroller? The serial version of their chip presents an industry standard RS232 interface (RX, TX, CTS, RTS, etc.) for easy connection to a legacy RS232 device. All that is typically needed to connect a legacy RS-232 device to the FT232BM is a garden-variety receiver/driver IC (MAX-232, HIN232, etc.) and a DB9 connector. Using the 2 FT232BM USB-UART chip instead of the parallel version frees up 10 micro port pins for use in your project.


For this project, we will interface the FT232BM directly to an 8-pin, PIC 12F629 Flash-based microcontroller. Two of the micro’s pins connect to a 20MHz crystal, two are used for power and ground, two for communicating with a host PC (TX and RX), and two for talking to a pair of Dallas Semiconductor DS18B20 digital temperature sensors. 

Fig.1

The micro only has 1K of ROM and, surprisingly, the firmware for this project only required 54% of the available ROM thanks to PCM, a highly-optimized C compiler from CCS (www.ccsinfo.com). Since the micro is Flash based and a programming header is included in the design, the firmware can be easily updated (or replaced by your own code) without having to remove the micro from the board. And that’s significant for this design since the micro we’ve selected is in an SOIC8 surface-mount (i.e. no socket) package.


All that is needed to interface to each DS18B20 is a single port pin and a pull-up resistor. Neither the micro nor the DS18S20 ever drive the port pin high. The only time it is high is when neither is driving it low. An open collector (or in this case, open drain) port pin on the micro would be perfectly suited for this application. However, since this design doesn’t have one available, the software will have to pick up the slack. The functionality of an open drain output can be easily simulated by toggling the port pin between input and output-low. When the port pin is configured as input, the pull-up resistor pulls the data line high.


The design presented in this article shows how to interface two temperature sensors to the USB port. It could have just as easily demonstrated how to interface two switches, two outputs (for driving relays, LED’s, etc.) or a mix of the two. Also, a larger micro like the 16F84A could have been used for more port pins.


Programming the 12F629 Flash-based micro is accomplished via a 5-pin header that consists of power and ground, clock, data, and a programming voltage of about 12.5 volts. For this project, I used the EPIC Plus Programmer (www.melabs.com). You will have to make your own programming cable using both 5-pin and 10-pin headers in order to make the connection to the programmer. Keep in mind that Sensor 2 must be disconnected from the board during firmware upload so that it does not interfere with the programming process.


Virtual Com Port Drivers
The Virtual Com Port (VCP) drivers make your USB-based product appear to your Windows application as though it is connected to an RS-232 port. Your application simply opens a com port and sends data as though it was going to the DB9 connector on the back of the PC. If your application opens a com port that is assigned to the VCP drivers (via the Device Manager window), then the data bytes sent are redirected to the USB scheduler and then out the USB port. Any data returned to the host via USB simply appears in the buffer that was created when your application opened the RS-232 port.


Some things you won’t have to worry about are USB related details like endpoints, token packets, data packets, handshake packets, ACK’s, NACK’s… the list goes on and on. The VCP drivers do a splendid job of hiding these details from the user. The desired baud rate, number of data bits, stop bits, and parity selection for the data sent from the FT232BM USB chip to the target electronics can be set by the host application. Setting these parameters in the host application has no effect on transmitted USB data packets.


The maximum data rate that can be expected using the FT232BM is somewhere in the neighborhood of 1-3 megabaud (depending on how your circuit is configured), and all standard baud rates are supported. Applications that require data rates approaching 8 megabits per second fall more under the purview of the FT245BM and DLL drivers.


Firmware
The complete microcontroller C source code listing for this project can be downloaded from www.dlpdesign.com/usb/temp.html. The main() function is shown in Figure 2. As you can see, in this implementation there are only two commands for communicating with the microcontroller. The first is a “ping” command for detecting the presence of the board and microcontroller. This command can be used by the host application to help locate the COM port to which the micro is connected. The second command calls a function that reads the temperature data from both of the temperature sensors, sends 18 bytes of temperature data back to the host, and calls another function [start_convert()] that starts the next temperature conversion. Note that the start_convert() function is called at power up so that temperature data is ready for read the first time the “R” command is issued.

Fig.2 Source code for main()

The code in main() will wait, continuously resetting the watchdog timer, until Port Pin GP3 is pulled low by the USB chip indicating the start of an incoming serial character. The getc() function is then called to receive the character. Error correction (crc, checksum, etc.) could be added if desired to make the interface more bulletproof.


The DS18B20 temperature sensors take up to 750 milliseconds to perform a full 12-bit temperature conversion and write the data to their internal scratch pad memory. For this reason, there is no reason for the host application to issue the “R” command more than about once per second. Additional firmware could be added to the micro to allow for 9-bit temperature conversions so that much faster temperature measurements (less than 95 milliseconds) can be performed in the DS18B20. Keep in mind that faster readings come at a price. As the speed goes up, the accuracy goes down. (Refer to the DS18B20 datasheet for details.)


Windows Software
The source code for simple Visual C++ and Visual Basic programs that demonstrate how to read the temperature data from the 12F629 micro can be downloaded for free from the dlpdesign.com website. The code will request the temperature data once per second, convert the 9 bytes of data returned from each sensor to a floating point value, and display those values. Figure 3 shows a screen shot of this program:

Fig.3 Visual C++ and Visual Basic Demonstration Program

Also available is a Windows application that will read the data and both chart the data graphically and log the data to the hard drive. This program can be purchased for a shareware level fee of $20 ($13 with another purchase). Figure 3 shows a screen shot of this software

Fig.4

Fig.5 DLP-TEMP1 

PCB Figure 6 shows the printed circuit board for this project and just how small a complete USB product can be made using the USB chips from FTDI. The bottom layer of this 2-layer board is mostly a ground plane to help keep the noise and EMI to a minimum. The board comes with one sensor. The sensor is not soldered to the board so that the user has the option of locating the sensor at a distance from the board using Category 5 cable. This design has been successfully tested with both sensors located 200 feet (Figure 5) away from the board using Category 5 cable.

Fig.6 Tested with 200 feet of Cat 5 cable

Two pairs of wires in the Cat 5 cable are required for the connection; one pair for power and ground, and the other pair for data and ground. If using both sensors, you can either connect them to the board using one cable for both sensors (since the cable has 4 pairs), or 2 cables if the sensors are to be placed in different locations.


Since this design incorporates a male Type A USB plug, it can be directly plugged into the PC’s USB port. If you want to bring the board up to your workbench while still communicating with the board, then a USB extension cable can be used.


Power Considerations
The 5 volts from the USB port is used to power both the circuitry on the PCB as well as the two temperature sensors. This does not mean to imply that the USB port can supply unlimited current to your external circuitry. The maximum current that can be drawn from the port is 500 milliamps. This assumes that the board has been configured as a high-powered device. This also assumes that the board is connected to a port on the PC or powered hub. If connected to a selfpowered hub, then the maximum power available for use is reduced to a total of just 100 milliamps. 


 When the board is first connected to the host PC, the maximum current that can be drawn is 100 milliamps. After enumeration is complete the board can draw the full 500 milliamps. To prevent drawing excessive current before enumeration, this design includes a MOSFET transistor to switch the power 8 going to the micro and sensors. The switch is controlled by the PWREN# signal from the FT232BM. 


Conclusion
While FTDI’s drivers and chips do relieve the developer of having to learn 95% of what can be learned about USB, I still recommend getting a good book on the topic like Jan Axelson’s USB Complete Second Edition (www.lvr.com) if for no other reason than to become familiar with the complexity of USB and to develop realistic expectations of USB’s capabilities. For instance, USB Specification 1.1 proclaims a data rate of 12 megabits per second. In reality, the actual data throughput for a full speed device in bulk transfer mode is closer to a maximum of 8 megabits per second once you add all of the overhead involved in making USB usable and reliable. 


 If your project calls for higher data throughput or if you would prefer working with a parallel interface and have the required number of micro port pins available, additional reading on using the FT245BM is available on-line at dlpdesign.com/pub.shtml. 


USB-based product development really is within reach for those of us (myself included) who don’t have the ability to develop device drivers. While I’m almost always intrigued by the challenge of learning something new, the ever-approaching deadline always seems to win out over my desire to take on a new grand venture. So if you want to learn how to write device drivers (a noble venture indeed, and one that might well increase your salary once mastered!), then pick up a book on the topic of WDM device drivers and start reading. If you want to get your new USB-based product to market on time, then have a look at FTDI’s chips. 

授权代理商:世强先进(深圳)科技股份有限公司
技术资料,数据手册,3D模型库,原理图,PCB封装文件,选型指南来源平台:世强硬创平台www.sekorm.com
现货商城,价格查询,交期查询,订货,现货采购,在线购买,样品申请渠道:世强硬创平台电子商城www.sekorm.com/supply/
概念,方案,设计,选型,BOM优化,FAE技术支持,样品,加工定制,测试,量产供应服务提供:世强硬创平台www.sekorm.com
集成电路,电子元件,电子材料,电气自动化,电机,仪器全品类供应:世强硬创平台www.sekorm.com
  • +1 赞 0
  • 收藏
  • 评论 0

本文由三年不鸣转载自FTDI CHIP Official Website,原文标题为:方便开发者使用的USB,本站所有转载文章系出于传递更多信息之目的,且明确注明来源,不希望被转载的媒体或个人可与我们联系,我们将立即进行删除处理。

评论

   |   

提交评论

全部评论(0

暂无评论

相关推荐

MULTI-PROTOCOL USB: An All-Serial Data Acquisition System – No Microcontroller Required!

In the arena of “easily-implemented USB“, the folks at FTDI have done it yet again by releasing their new, dual-channel FT2232C IC. This new chip offers two interfaces for connection to user electronics as compared to its predecessors (the FT232BM and FT245BM) that only have one. Instead of being fixed in hardware as only serial (USB-UART) or parallel (USB-FIFO), both channels of this new chip are configurable for either serial, parallel, or one of several other new interface modes of operation.

设计经验    发布时间 : 2024-08-30

Bit-bang USB--Perhaps The Easiest USB Interface Yet!

Considering the complexity of the USB interface, using a USB port to toggle an LED is alittle like using a sledgehammer to drive a small nail. But that is exactly what this articleis going to show you how to do.

设计经验    发布时间 : 2024-07-20

Introduction to Technical Parameters of USB Noise Reduction Microphone

Have you heard about the USB noise-cancelling microphone and its technical parameters? This article POROSVOC will introduce what is an OTP chip?

设计经验    发布时间 : 2022-02-17

特斯拉/苹果USB桥接芯片供应商FTDI Chip(飞特帝亚)授权世强硬创代理

FTDI Chip高速USB 2.0系列FT4232HA是业界首款USB 2.0高速转四通道UART或双通道MPSSE的车规级芯片。

签约新闻    发布时间 : 2024-05-24

南芯推出BC1.2 CDP和USB Type-C DFP模式的车载USB充电芯片SC81530Q

SOUTHCHIP南芯科技推出支持BC1.2 CDP模式和USB Type-C DFP模式的车载USB充电芯片SC81530Q,已通过AEC-Q100车规认证。该方案最高工作电压支持到36V,集成同步buck变换器和限流开关,峰值效率可高达94%以上,支持A口和C口充电,支持BC1.2 CDP和USB Type-C DFP的充电协议,可应用于汽车座舱、中控屏、车载有线充等领域。

产品    发布时间 : 2024-09-20

FTDI CHIP的USB桥接系列产品选型表

通用串行总线 (USB) 现在已成为可靠,低成本数字链路与系统连接的接口。 USB的使用已经扩展到PC之外,现在可以在各种区隔市场中找到,包括工业,医疗,消费,通信,网络等等。 FTDI芯片能够让设计人员快速实现USB设计,提供全面的解决方案包括硅片,开发工具,应用笔记和软件支持。 凭借着USB桥接器的专业技术为各种接口(如 UART, FIFO, I2C, SPI, PWM 和 GPIO) 提供了无缝集成,桥接器将信号和协议从所选的接口转换为USB。提供多样的USB解决方案, 最小至3x3mm的10的DFN引脚封装形式,或模块形式可以直接插入主板进行开发和生产, 再或者用于USB桥接至众多接口的线缆。

产品型号
品类
速率(Mbit/kBit)
接口
通道数量
USB Host
I/O 电压(V)
描述
封装
FT232HPQ
USB高速PD IC
12MBit/s (UART) up to 40MBit/s (Sync FIFO)
UART, FIFO, 1 x MPSSE, Fast serial, CPU FIFO, Bit Bang/GPIO, FT1248
1
No
3.3V
单通道高速USB Type-C转多用途UART/FIFO/JTAG/SPI/I2C,带单PD端口
QFN 56

选型表  -  FTDI CHIP 立即选型

LDR6023 USB Type-C PD Controller

型号- LDR6023S,LDR6023SS,LDR6023

数据手册  -  乐得瑞  - REV2.5  - 2019‐03‐26 PDF 英文 下载

C8051F340/1/2/3/4/5/6/7/8/9/A/B/C/D Full Speed USB Flash MCU Family

型号- C8051F34B-GQ,C8051F34B-GM,C8051F34D-GQ,C8051F34A,C8051F341-GQ,C8051F34C,C8051F34B,C8051F343-GQ,C8051F34D,C8051F346-GM,C8051F348-GQ,C8051F343-GM,C8051F349,C8051F34X,C8051F348,C8051F346-GQ,C8051F341,C8051F340,C8051F343,C8051F342,C8051F345,C8051F344,C8051F347,C8051F346,C8051F34C-GQ,C8051F34A-GQ,C8051F34A-GM,C8051F340-GQ,C8051F342-GQ,C8051F349-GM,C8051F344-GQ,C8051F347-GM,C8051F342-GM,C8051F349-GQ,C8051F347-GQ,C8051F345-GQ

数据手册  -  SILICON LABS  - Rev. 1.6  - 10/22 PDF 英文 下载

Silicon Labs(芯科科技) CP2105 单芯片USB转UART桥接器数据手册(英文)-CP2105

描述- Silicon Labs(芯科科技) CP2105 单芯片USB转UART桥接器数据手册(英文)-CP2105,CP2105,silabs CP2105,CP2105数据手册,CP2105 datasheet,CP2105规格书,CP2105手册,CP2105技术资料,CP2105资料,CP2105方案,CP2105供应,CP2105库存,CP2105价格,单芯片USB转UART桥接器,UART桥接器,MCU

型号- CP2105,CP210X,CP2105-F01-GMR,CP2105-F01-GM

数据手册  -  SILICON LABS  - Rev. 1.1  - 2013年11月01日 PDF 英文 下载

WUSB3801 USB Type-C Configuration Channel Flippable Adapter

型号- WUSB3801Q-12/TR,WUSB3801,WUSB3801QB

数据手册  -  WILLSEMI  - Rev. 1.1  - Jul, 2016 PDF 英文 下载

USB Solutions The USB Bridging Solution Specialist

型号- FT600Q,USB-RS485-WE-1800-BT,USB-RS422-WE-1800-BT,FT232H,FT234XD,USB-RS232-WE-1800-BT_0.0,TTL-232R-3V3-WE,FT230XQ,FT260Q,FT230XS,FT260S,FT232RQ,USB-RS485-WE-5000-BT,FT601,FT600,VNC2,FT200XD,US232R-10,C232HD-EDHSP-0,FT4232H-56Q,FT4232H,TTL-232R-5V,TTL-234X-5V-AJ,FT2232H-56Q,FT602Q,C232HD-DDHSP-0,FT60X,TTL-232R-3V3-2MM,USB-RS232-WE-5000-BT_0.0,FT2232H-56,FT2232H,USB-RS232-WE-1800-BT_3.3,TTL-234X-3V3,FT601Q,FT232RNQ,TTL-232R-3V3,USB-RS422-WE-5000-BT,USB-RS232-WE-5000-BT_5.0,US232R-500,TTL-232R-3V3-AJ,US232R-100,FT2232HL,VINCO,UMFT311EV,TTL-232RG-VSW5V-WE,FT232RNL,FT2232HP,UT232R-200,TTL-234X-3V3-AJ,FT245RQ,FT4222H,FT4233HP,TTL-232RG-VSW3V3-WE,UMFT4222H,TTL-232RG-VREG1V8-WE,FT120,FT602Q-B,CHIPI-X10,FT245RNL,FT233HP,TTL-232R-5V-AJ,TTL-232RG-VREG3V3-WE,TTL-232RG-VIP-WE,UT232R-500,FT245RNQ,FT245RL,FT221XS,FT240XQ,FT2233HP,FT221XQ,FT240XS,FT4232HP,FT201XS,TTL-234X-3V3-WVE,TTL-234X-3V3-2MM,TTL-232R-5V-WVE,C232HM-EDHSL-0,FT312D,FT4232HA,FT4232H-56,USB-RS232-WE-1800-BT_5.0,FT231XQ,TTL-234X-5V-WVE,FT4232HL,FT231XS,FT232RL,FT260,FT232HL,TTL-234X-5V,FT232HP,FT600 SERIES,USB-RS232-WE-5000-BT_3.3,FT311D,FT220XQ,C232HM-DDHSL-0,FT120T,FT201XQ,FT220XS

应用及方案  -  FTDI CHIP  - 2023/9/26 PDF 英文 下载

FT600Q-FT601Q IC Datasheet (USB 3.0 to FIFO Bridge)

型号- FT601Q,FT601Q-B-X,FT600Q-B-R,FT600Q,FT601,FT600,FT600Q-B-X

数据手册  -  FTDI CHIP  - Version 1.05  - 2017-11-03 PDF 英文 下载 查看更多版本

CP2102 SINGLE-CHIP USB TO UART B RIDGE

型号- CP2102-GM,CP2102EK,CP2102

数据手册  -  SILICON LABS  - Rev. 1.2  - 3/07 PDF 英文 下载 查看更多版本

FTDI Chip USB方案 USB 桥接解决方案专家

型号- FT311,FT600Q,USB-RS232-WE-5000-BT5.0,USB-RS485-WE-1800-BT,USB-RS422-WE-1800-BT,FT232H,FT234XD,UMFT602A-B,USB-RS232-WE-1800-BT_0.0,USB-RS232-WE-1800-BT 3.3,TTL-232R-3V3-WE,TLL-232R-5V,FT230XQ,FT260Q,FT230XS,FT260S,FT232RQ,USB-RS485-WE-5000-BT,TIL-232R-3V3,FT4222,FT601,FT600,UMFT12XEV,LTC4053,TLL-232RGVIP-WE,C232HD-DDHSP-O,VNC2,FT200XD,US232R-10,C232HM-EDHSL-O,C232HD-EDHSP-0,FT231X,FT4232H-56Q,V2DIP1-48,UMFTXXXXB*,FT4232H,TTL-232R-5V,D89,FT2232H-56Q,LC231X,FT602Q,C232HD-DDHSP-0,FT60X,TTL-232R-3V3-2MM,USB-RS232-WE-5000-BT_0.0,FT2232H-56,FT2232H,TIL-232R-3V3-VE,USB-RS232-WE-1800-BT_3.3,F T4232HL,UMFTXXXXA*,TTL-234X-3V3,FT601Q,FT232RNQ,T200XD,V2DIP1-32,UMFT260EV1A,TIL-234X-5V-AJ,TTL-232R-3V3,USB-RS422-WE-5000-BT,USB-RS232-WE-5000-BT_5.0,US232R-500,VNC2-48Q,TTL-232R-3V3-AJ,US232R-100,VNC2-48L,UM245R,VINCO,FT2232HL,FT600 系列,UMFT311EV,TTL-232RG-VSW5V-WE,FT232RNL,FT2232HP,TTL-234X-3V3-AJ,UT232R-200,FT245RQ,TTL-234X-3V3-WE,FT4222H,FT4233HP,USB-RS232-WE-5000-BT3.3,UM232H,TTL-232RG-VSW3V3-WE,UMFT4222H,TTL-232RG-VREG1V8-WE,TIL-232RG-VSW5V-WE,V2DIP2-32,UM232R,USB-RS232-WE-1800-BT5.0,UMFT600A,TIL-232R-5V-WE,FT602Q-B,CHIPI-X10,UB232R,FT245RNL,FT233HP,TTL-234-3V3,TTL-232R-5V-AJ,TTL-232RG-VREG3V3-WE,TTL-232RG-VIP-WE,US232R-200,UT232R-500,FT245RNQ,MM232R,FT245RL,FT221XS,FT240XQ,FT2233HP,TTL-234X-5V-WE,FT221XQ,FT240XS,UMFT120DC,FT4232HP,FT201XS,UMFT231XC,USB-RS232-WE-5000-BT0.0,EVAL232R,UMFT601X,TTL-234X-3V3-2MM,TTL-232R-5V-WE,UMFT602X-B,C232HM-EDHSL-0,FT312D,C232HD-EDHSP-O,FT4232HA,FT4232H-56,USB-RS232-WE-1800-BT_5.0,FT231XQ,UM232H-B,FT4232HL,FT231XS,FT232RL,FT260,FT232HL,UMFTXXXXE*,TTL-234X-5V,UMFT600X,FT232HP,LC234X,USB-RS232-WE-5000-BT_3.3,VNC2-32L,UMFTPD3A,FT311D,FT220XQ,C232HM-DDHSL-0,FT120T,FT201XQ,UMFT4222EV,FT220XS,V2DIP2-48,UMFT601A

商品及供应商介绍  -  FTDI CHIP  - 2023/9/26 PDF 中文 下载

展开更多

电子商城

查看更多

只看有货

品牌:FTDI CHIP

品类:USB I2C SLAVE IC

价格:¥18.5637

现货: 0

品牌:FTDI CHIP

品类:High Speed USB Bridge with Type-C

价格:¥33.6448

现货: 0

品牌:FTDI CHIP

品类:High Speed USB Bridge with Type-C

价格:¥34.6286

现货: 0

品牌:FTDI CHIP

品类:USB Android Host IC

价格:¥32.8578

现货: 0

品牌:FTDI CHIP

品类:USB Android Host IC

价格:¥32.8578

现货: 0

品牌:FTDI CHIP

品类:Quad High-Speed USB to MultiPurpose MPSSE IC

价格:¥229.5124

现货: 0

品牌:FTDI CHIP

品类:Embedded Dual USB Host Controller IC

价格:¥42.0609

现货: 0

品牌:FTDI CHIP

品类:Embedded Dual USB Host Controller IC

价格:¥42.0609

现货: 0

品牌:FTDI CHIP

品类:USB UART IC

价格:¥42.6462

现货: 0

品牌:FTDI CHIP

品类:Dual High Speed USB to Multipurpose FIFO IC

价格:¥209.5419

现货: 0

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

现货市场

查看更多

品牌:FTDI CHIP

品类:集成电路

价格:¥93.0244

现货:26

品牌:FTDI CHIP

品类:USB 3.0 to FIFO Bridge

价格:¥69.3000

现货:15

品牌:

品类:

价格:

现货:

品牌:

品类:

价格:

现货:

服务

查看更多

SMT贴片加工

可贴PCB板厚范围:0.6~2.0mm,也支持生产软硬接合板,拼板长宽:50*50mm~550*500mm,PCBA快速贴片支持01005CHIP元件。

最小起订量: 1片 提交需求>

信号完整性测试

深圳市启威测实验室,面向所有企业提供信号完整性测试服务,主要包括USB、HDMI 、DP、MIPI、PCIe 、SD/EMMC、DDR接口信号测试。测试手段有波形测试、眼图测试、抖动测试等。

提交需求>

世强和原厂的技术专家将在一个工作日内解答,帮助您快速完成研发及采购。
我要提问

954668/400-830-1766(工作日 9:00-18:00)

service@sekorm.com

研发客服
商务客服
服务热线

联系我们

954668/400-830-1766(工作日 9:00-18:00)

service@sekorm.com

投诉与建议

E-mail:claim@sekorm.com

商务合作

E-mail:contact@sekorm.com

收藏
收藏当前页面