통신 기초

시리얼 통신 비교-소개 및 용어 1

Hangary.railway 2024. 11. 1. 09:02

Texas Instrument에서 다운로드 받은 Electronic Design Library 중

"What's the differences: Serial Communications" 내용 번역 정리 업로드 자료임

 

1.    Introduction

COMMUNICATION is an inherent part of computers and a range of protocols and methodologies have been employed to facilitate this communication. Low speed serial interfaces may not be as neat as high performance PCI Express but numerous serial ports tend to be a requirement for many embedded microcontrollers to interface with digital sensors and control systems.

통신은 컴퓨터의 고유한 부분이고, 이 통신을 용이하게 하기 위해 다양한 프로토콜과 방법론이 채택되었습니다. 저속 직렬 인터페이스는 고성능 PCI Express만큼 깔끔하지 않을 수 있지만, 많은 임베디드 마이크로컨트롤러가 디지털 센서 및 제어 시스템과 인터페이스하려면 수많은 직렬 포트가 필요한 경향이 있습니다.

2.    What’s The Difference Between Bit Rate and Baud Rate?

Most data communications over networks occurs via serial-data transmission. Data bits transmit one at a time over some communications channel, such as an RS-232 cable or a wireless path. Figure 1 typifies the digital-bit pattern from a computer or some other digital circuit. This data signal is often called the baseband signal. The data switches between two voltage levels, such as +3 V for a binary 1 and +0.2V for a binary 0. Other binary levels are also used. In the non-return-to-zero (NRZ) format (Fig. 1), the signal never goes to zero as like that of return-to-zero (RZ) formatted signals.

네트워크를 통한 대부분의 데이터 통신은 직렬 데이터 전송을 통해 이루어집니다. 데이터 비트는 RS-232 케이블이나 무선 경로와 같은 일부 통신 채널을 통해 한 번에 하나씩 전송됩니다. 그림 1은 컴퓨터나 다른 디지털 회로의 디지털 비트 패턴을 대표합니다. 이 데이터 신호는 종종 기저대역 신호라고 합니다. 데이터는 2진수 1의 경우 +3V, 2진수 0의 경우 +0.2V와 같이 두 전압 레벨 사이를 전환합니다. 다른 2진 레벨도 사용됩니다. NRZ(non-return-to-zero) 형식(그림 1)에서 신호는 RZ(return-to-zero) 형식의 신호처럼 0으로 가지 않습니다.

BIT RATE

The speed of the data is expressed in bits per second (bits/s or bps). The data rate R is a function of the duration of the bit or bit time (TB) (Fig. 1, again):

R = 1/TB

Rate is also called channel capacity C. If the bit time is 10 ns, the data rate equals:

R = 1/10 x 10–9 = 100 million bits/s

This is usually expressed as 100 Mbits/s.

데이터 속도는 초당 비트(bits/s 또는 bps)로 표현됩니다. 데이터 전송 속도 R은 비트 지속 시간 또는 비트 시간(TB)의 함수입니다(그림 1 참조):

R = 1/TB

속도는 채널 용량 C라고도 합니다. 비트 시간이 10ns인 경우 데이터 전송 속도는 다음과 같습니다.

R = 1/10 x 10–9 = 100 million bits/s

이는 일반적으로 100Mbits/s로 표현됩니다.

 

<그림1> Non-return to Zero(NRZ) Format

'통신 기초' 카테고리의 다른 글

NRZ, NRZI 와 맨체스터 코딩  (0) 2024.11.06
NRZ와 PAM의 차이  (2) 2024.11.05
다중레벨 변조와 보오레이트  (0) 2024.11.05
RS-232와 RS-485 통신의 차이  (8) 2024.11.04
시리얼 통신 비교-소개 및 용어 2  (0) 2024.11.04