ENGLISH 简体中文 日本語 한국어  


애플리케이션 노트  2141

Determining Clock Accuracy Requirements for UART Communications

Abstract: This application note discusses the timing requirements for the commonly used serial asynchronous communications protocol implemented in UARTs, and shows how to determine the tolerance for the UART clock source at both ends of an asynchronous link.

Background

The RS-232 specification dates back to 1962, when it was first released by the EIA (Electronic Industries Association). The specification has changed over time, incorporating higher data rates and closing the compatibility gaps between TIA (Telecommunication Industry Association) and international (ITU, ISO) standards. The current version of the RS-232 specification is EIA/TIA-232-F, dated October 1997.

The protocol benefited from the availability of MSI ICs from the late 1970s which had the complexity to handle the standard at reasonable cost. These ICs are generically called UARTs (Universal Asynchronous Receive Transmit). Many LSI ICs (including microcontrollers) now include the functionality.

As is often the case, the availability of UARTs drove the industry to use the RS-232 serial protocol in non-RS-232 ways. Common examples are RS-485 transmissions, opto-isolated transmissions, and transmissions using a single-ended physical layer (i.e. 0 - 3.3V instead of ±5V or ±10V). This note covers the general timing aspects of the serial interface, not application nuances of handshaking or the physical layer, and so is applicable to all generalized UART applications.

UART Timing

A typical UART frame is shown in Figure 1. It comprises a Start bit, 8 data bits, and a Stop bit. Other variants are also possible in RS-232 applications - the data packet could be 5, 6, or 7 bits long, there could be 2 Stop bits, and a Parity bit could be inserted between the data packet and the Stop bit for rudimentary error detection. Figure 1 shows the signaling as seen at a UART's TXD (Transmit Data) or RXD (Receive Data) pins. RS-232 bus drivers invert as well as level shift, so a logic 1 is a negative voltage on the bus, and a logic 0 is a positive voltage.

Figure 1. A typical UART data frame.
Figure 1. A typical UART data frame.

When two UARTs communicate, it is a given that both transmitter and receiver know the signaling speed. The receiver doesn't know when a packet will be sent, with respect to the receiver clock, hence the protocol is termed asynchronous. The receiver circuitry is correspondingly more complex than that of the transmitter. While the transmitter simply has to shuffle out a frame of data at a defined bit rate, the receiver has to recognize the start of the frame to synchronize itself, and therefore determine the best data sampling point for the bitstream.

Figure 2 shows a common method used by UART receivers to synchronize to a received frame. The receive UART uses a clock which is 16 times the data rate. A new frame is recognized by the falling edge at the beginning of the active-low Start bit, when the signal changes from the active-high Stop bit or bus idle condition. The receive UART resets its counters on this falling edge, and expects mid Start bit to occur after 8 clock cycles, and the mid point of each subsequent bit to appear every 16 clock cycles thereafter. The Start bit is typically sampled at the mid bit time to check that the level is still low, to ensure that the detected falling edge was a Start bit not a noise spike. Another common improvement is to sample each bit not simply once at the mid bit position (clock count 8 out of 16), but three times (clock counts 7, 8, and 9 out of 16).

Figure 2. UART receive frame synchronization and data sampling points.
Figure 2. UART receive frame synchronization and data sampling points.

Timing Accuracy

So the question is: how accurate does the receive UART clock have to be to be sure of receiving data correctly? (Actually, a better question is to ask how far different the transmit and receive UART clocks can be, since the absolute clock rate is unimportant for the purposes of accurate reception. More on this later.) To answer this, the first point to understand is that because the UART receiver synchronizes itself to the start of each and every frame, we only care about accurate data sampling during one frame. There isn't any buildup of error beyond a frame's Stop bit, which simplifies analysis because we only have to consider one frame as the worst case.

When do we get a timing error due to transmit-receive clock mismatch? Well, we are attempting to sample each bit at the mid point (Figure 2). If we sample a bit ½ a bit period too early or too late, we will sample at the bit transition and have problems (Figure 3).

Figure 3. UART receive sampling range.
Figure 3. UART receive sampling range.

In reality, we can't (reliably) sample close to the bit transition point. The dominant reason for this is the finite (and typically slow) transmission rise and fall times, made even slower if overly capacitive cabling is used. A long bus incurs high attenuation, reducing noise margin, making it more important to sample when the bit level has settled. It is difficult to assess a worst case acceptable sampling range across a bit's period in a quantitive manner. EIA/TIA-232-F does specify a 4% of bit period maximum slew time for a transmission, but this is difficult to achieve for long runs at 192k/bits-1. But let us define two data path scenarios for the purpose of this note. Consider a 'nasty' scenario which can only be sampled reliably within the middle 50% of the bit time (Figure 4). This could equate to a long, capacitive RS-232 run. The 'normal' scenario can be sampled within the middle 75% of the bit time (Figure 5), equating to a relatively benign bus (such as a metre or two run with buffered CMOS logic levels or an RS-485 differential pair) within an equipment chassis.

Figure 4. UART 'nasty link' receive 50% sampling range.
Figure 4. UART 'nasty link' receive 50% sampling range.

Figure 5. UART 'normal link' receive 75% sampling range.
Figure 5. UART 'normal link' receive 75% sampling range.

For Figures 4 and 5 we can determine that the error budget is ±25% and ±37.5% from the optimal bit-centre sampling point for the nasty and normal scenarios respectively. This error is equivalent to ±4 or ±6 periods of the x16 UART receive clock. Another error to include in this budget is the synchronization error when the falling edge of the Start bit is detected. The UART will most likely be designed to start on the next rising edge of its 16x clock after Start bit detection. Since the 16x clock and the received data stream are asynchronous, the falling edge of the Start bit could occur just after a 16x clock rising edge, or just before one but not with enough setup time to use it. This means that the UART has a ±1 bit error built in at the synchronization point. So our error budget reduces from ±4 or ±6 clock periods to ±3 or ±5 periods.

We will presume that short-term clock errors (essentially, jitter) are very small, and therefore we are only considering mid-term and long-term errors. These errors boil down to mismatch in the transmit UART and receive UART timing that is consistent during a frame. Since the timing is synchronized at the falling edge of the Start bit, the worst case timing error will be at the last data sampling point, which is the Stop bit. The optimum sampling point for the Stop bit is are its bit-centre, which is (16 x 9.5) = 152 UART receive clocks after the original falling edge of the Start bit.

Now we can calculate our allowable error as a percentage. For the normal scenario, the clock mismatch error can be ±5/152 = ±3.3%, and for the nasty scenario it can be ±3/152 = ±2%. As hinted earlier, although the problem will materialize at the receive end of the link, clock mismatch is actually a tolerance issue shared between the transmit and receive UARTs. So presuming that both UARTs are attempting to communicate at exactly the same bit rate (baud), then the allowable error can be shared, in any proportion, between the two UARTs.

Making use of the allowable error budget is helped in systems where both ends of the link are being designed at the same time, partly because the tolerance of both ends will be known, and partly because tradeoffs and cost saving can be made. In general a standard, low cost, ceramic resonator with ±0.5% accuracy and a further ±0.5% drift over temperature and life can be used for the clock source at both ends of the link. This meets the 2% nasty scenario discussed earlier. If the system uses a master controller (typically a microcontroller or a PC) which uses a standard 100ppm crystal oscillator for the UART clock source, then the link error just about halves. Be careful with microcontrollers that synthesize baud frequencies for their internal UARTs. Depending on the choice of microcontroller clock, the baud rates may not be exact. If the error can be determined, it can be easily included in the link error budget.

1. It may appear odd that the Stop bit is sampled, but it is. If the Stop bit is detected as a low level instead of the expected high level, UARTs typically report a Frame Error.


의견을 보내주세요!
위 내용이 도움이 되셨나요?
여러분의 의견을 기다립니다 — Maxim은 보내주신 정정이나 제안사항을 반영하고 있습니다. 이 페이지를 평가하고 의견을 보내주십시오.


자동 업데이트
관심있는 분야의 애플리케이션 노트가 나올 때 자동으로 업데이트 받고 싶으세요? 그렇다면 EE-Mail™을 신청하십시오.



추가 정보  APP 2141: Aug 07, 2003
MAX200 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX201 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX202 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX202E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX203 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX203E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX204 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX205 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX205E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX206 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX206E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX207 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX207E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX208 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX208E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX209 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX211 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX211E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX212 +3V로 구동, 저전력, 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 128kB)
무료 샘플
MAX213 +5V, 0.1µF 외부 커패시터를 사용하는 RS-232 트랜시버 전체 데이터 시트
(PDF, 552kB)
무료 샘플
MAX213E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX214 프로그래밍 가능한 DTE/DCE, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 144kB)
무료 샘플
MAX216 저전력, AppleTalk™ 인터페이스 트랜시버 전체 데이터 시트
(PDF, 2.3MB)
무료 샘플
MAX218 1.8V ~ 4.25V, 진정한 RS-232 듀얼 트랜시버 전체 데이터 시트
(PDF, 93kB)
무료 샘플
MAX220 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX221 +5V, 1µA, AutoShutdown 기능이 있는 단일 RS-232 트랜시버 전체 데이터 시트
(PDF, 120kB)
무료 샘플
MAX221E ±15kV ESD 보호, +5V, 1µA, AutoShutdown 기능이 있는 단일 RS-232 트랜시버 전체 데이터 시트
(PDF, 192kB)
무료 샘플
MAX222 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX223 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX225 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX230 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX231 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX232 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX232A +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX232E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX233 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX233A +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX234 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX235 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX236 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX237 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX238 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX239 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX240 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX241 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX241E ±15kV ESD 보호, +5V RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX242 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX243 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX244 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX245 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX246 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX247 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
MAX248 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX249 +5V 전원 공급, 멀티채널 RS-232 드라이버/수신기 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX3100 16핀 QSOP 패키지로 제공되는 SPI/MICROWIRE 호환 UART 전체 데이터 시트
(PDF, 360kB)
무료 샘플
MAX3110E SPI™/MICROWIRE™ 호환 UART 및 커패시터가 내장된 ±15kV ESD 보호 RS-232 트랜시버 전체 데이터 시트
(PDF, 424kB)
무료 샘플
MAX3111E SPI™/MICROWIRE™ 호환 UART 및 커패시터가 내장된 ±15kV ESD 보호 RS-232 트랜시버 전체 데이터 시트
(PDF, 424kB)
무료 샘플
MAX3140 진정한 페일 세이프 RS-485/RS-422 트랜시버가 내장된 SPI/MICROWIRE 호환 UART 전체 데이터 시트
(PDF, 480kB)
무료 샘플
MAX3188 SOT23-6 패키지로 제공되는 1Mbps, 1µA RS-232 송신기 전체 데이터 시트
(PDF, 168kB)
무료 샘플
MAX3188E ±15kV ESD 보호, 1Mbps, SOT23-6 패키지로 제공되는 1µA RS-232 송신기 전체 데이터 시트
(PDF, 216kB)
무료 샘플
MAX3189 SOT23-6 패키지로 제공되는 1Mbps, 1µA RS-232 송신기 전체 데이터 시트
(PDF, 168kB)
무료 샘플
MAX3189E ±15kV ESD 보호, 1Mbps, SOT23-6 패키지로 제공되는 1µA RS-232 송신기 전체 데이터 시트
(PDF, 216kB)
무료 샘플
MAX3190 ±15kV ESD 보호, 460kbps, SOT23-6 패키지로 제공되는 RS-232 송신기 전체 데이터 시트
(PDF, 160kB)
무료 샘플
MAX3190E ±15kV ESD 보호, 460kbps, SOT23-6 패키지로 제공되는 RS-232 송신기 전체 데이터 시트
(PDF, 160kB)
무료 샘플
MAX3202E 고속 데이터 인터페이스용 저용량, 2/3/4/6채널, ±15kV ESD 보호 어레이 전체 데이터 시트
(PDF, 596kB)
무료 샘플
MAX3203E 고속 데이터 인터페이스용 저용량, 2/3/4/6채널, ±15kV ESD 보호 어레이 전체 데이터 시트
(PDF, 596kB)
무료 샘플
MAX3204E 고속 데이터 인터페이스용 저용량, 2/3/4/6채널, ±15kV ESD 보호 어레이 전체 데이터 시트
(PDF, 596kB)
무료 샘플
MAX3206E 고속 데이터 인터페이스용 저용량, 2/3/4/6채널, ±15kV ESD 보호 어레이 전체 데이터 시트
(PDF, 596kB)
무료 샘플
MAX3209E ±15kV ESD 보호, 12V, 마더보드/데스크톱을 위한 저전력 대기기능이 있는 듀얼 RS-232 직렬 포트 전체 데이터 시트
(PDF, 272kB)
무료 샘플
MAX3212 +2.7V ~ +3.6V 전원, 1µA 소비전류, 3 드라이버/5 수신기, 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 136kB)
무료 샘플
MAX3218 1µA, 1.8V ~ 4.25V AutoShutdown™ 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 136kB)
무료 샘플
MAX3221 1µA 전원 전류, AutoShutdown 기능을 가진 진정한 +3V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 464kB)
무료 샘플
MAX3221E ±15kV ESD 보호, 1µA, 3.0V ~ 5.5V, AutoShutdown 기능을 가진 250kbps RS-232 트랜시버 전체 데이터 시트
(PDF, 316kB)
무료 샘플
MAX3222 3.0V ~ 5.5V, 저전력, 최대 1Mbps, 4개의 0.1µF 외부 커패시터를 사용하는 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 760kB)
무료 샘플
MAX3222E ±15kV ESD 보호, 최저 10nA, 3.0V ~ 5.5V, 최고 1Mbps의 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 500kB)
무료 샘플
MAX3223 1µA 전원 전류, AutoShutdown 기능을 가진 진정한 +3V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 464kB)
무료 샘플
MAX3223E ±15kV ESD 보호, 1µA, 3.0V ~ 5.5V, AutoShutdown 기능을 가진 250kbps RS-232 트랜시버 전체 데이터 시트
(PDF, 316kB)
무료 샘플
MAX3224 1µA 전원 전류, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 460kB)
무료 샘플
MAX3224E ±15kV ESD 보호, 1µA, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX3225 1µA 전원 전류, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 460kB)
무료 샘플
MAX3225E ±15kV ESD 보호, 1µA, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX3226 1µA 전원 전류, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 460kB)
무료 샘플
MAX3226E ±15kV ESD 보호, 1µA, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX3227 1µA 전원 전류, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 460kB)
무료 샘플
MAX3227E ±15kV ESD 보호, 1µA, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX3228 UCSP 패키지로 제공되는 +2.5V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 812kB)
무료 샘플
MAX3228E UCSP 패키지로 제공되는 ±15kV ESD 보호 +2.5V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 232kB)
무료 샘플
MAX3229 UCSP 패키지로 제공되는 +2.5V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 812kB)
무료 샘플
MAX3229E UCSP 패키지로 제공되는 ±15kV ESD 보호 +2.5V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 232kB)
무료 샘플
MAX3232 3.0V ~ 5.5V, 저전력, 최대 1Mbps, 4개의 0.1µF 외부 커패시터를 사용하는 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 760kB)
무료 샘플
MAX3232E ±15kV ESD 보호, 최저 10nA, 3.0V ~ 5.5V, 최고 1Mbps의 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 500kB)
무료 샘플
MAX3233E ±15kV ESD 보호, 1µA, 250kbps, 3.3V/5V, 내부 커패시터가 내장된 듀얼 RS-232 트랜시버 전체 데이터 시트
(PDF, 184kB)
무료 샘플
MAX3235E ±15kV ESD 보호, 1µA, 250kbps, 3.3V/5V, 내부 커패시터가 내장된 듀얼 RS-232 트랜시버 전체 데이터 시트
(PDF, 184kB)
무료 샘플
MAX3237 3.0V ~ 5.5V, 저전력, 최대 1Mbps, 4개의 0.1µF 외부 커패시터를 사용하는 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 760kB)
무료 샘플
MAX3237E ±15kV ESD 보호, 최저 10nA, 3.0V ~ 5.5V, 최고 1Mbps의 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 500kB)
무료 샘플
MAX3238 +3.0V ~ +5.5V, 1µA, 최고 250kbps, AutoShutdown Plus 기능을 가진 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 200kB)
무료 샘플
MAX3238E +3.0V ~ +5.5V, 10nA, ±15kV ESD 보호 I/O 및 로직 핀을 갖춘 250kbps RS-232 트랜시버 전체 데이터 시트
(PDF, 248kB)
무료 샘플
MAX3241 3.0V ~ 5.5V, 저전력, 최대 1Mbps, 4개의 0.1µF 외부 커패시터를 사용하는 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 760kB)
무료 샘플
MAX3241E ±15kV ESD 보호, 최저 10nA, 3.0V ~ 5.5V, 최고 1Mbps의 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 500kB)
무료 샘플
MAX3243 1µA 전원 전류, AutoShutdown 기능을 가진 진정한 +3V ~ +5.5V RS-232 트랜시버 전체 데이터 시트
(PDF, 464kB)
무료 샘플
MAX3243E ±15kV ESD 보호, 1µA, 3.0V ~ 5.5V, AutoShutdown 기능을 가진 250kbps RS-232 트랜시버 전체 데이터 시트
(PDF, 316kB)
무료 샘플
MAX3244 1µA 전원 전류, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 460kB)
무료 샘플
MAX3244E ±15kV ESD 보호, 1µA, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX3245 1µA 전원 전류, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 460kB)
무료 샘플
MAX3245E ±15kV ESD 보호, 1µA, 1Mbps, 3.0V ~ 5.5V, AutoShutdown Plus 기능을 가진 RS-232 트랜시버 전체 데이터 시트
(PDF, 1.2MB)
무료 샘플
MAX3246E ±15kV ESD 보호, 최저 10nA, 3.0V ~ 5.5V, 최고 1Mbps의 진정한 RS-232 트랜시버 전체 데이터 시트
(PDF, 500kB)
무료 샘플
MAX3248E +3.0V ~ +5.5V, 10nA, ±15kV ESD 보호 I/O 및 로직 핀을 갖춘 250kbps RS-232 트랜시버 전체 데이터 시트
(PDF, 248kB)
무료 샘플
 

다운로드, PDF 형식다운로드, PDF 형식 (171kB)
 AN2141, AN 2141, APP2141, Appnote2141, Appnote 2141



         


      개인정보보호 정책    법적 고지

      Copyright © 2008 by Maxim Integrated Products, Dallas Semiconductor