RS-232, RS-422, RS-485, and Modbus: A Detailed Explanation of Industrial Communication Standards

These communication standards play different roles in industrial automation. Let me use a traffic system analogy to help you understand:

Basic Positioning of the Four Standards

1. RS-232: A One-to-One Small Road

Features:

  • The earliest serial communication standard (1969)
  • Point-to-point full-duplex communication (simultaneous two-way)
  • Single-ended signal transmission (susceptible to interference)
  • Typical transmission distance ≤ 15 meters
  • Maximum speed 20 kbps

Application Scenarios:

  • Connection between computers and modems
  • Device debugging interfaces
  • Short-distance simple device communication

Hardware Connection: Commonly used DB9 interface, requiring only 3 basic wires (TX/RX/GND)

2. RS-422: Dedicated Highway

(A significant upgrade over RS-232)Features:

  • Differential signal transmission (strong anti-interference)
  • Point-to-point/short-distance multipoint communication
  • Full-duplex communication
  • Transmission distance up to 1200 meters (at low speed)
  • Maximum speed 10 Mbps (short distance)

Technical Highlights:

  • Uses two pairs of twisted pairs (TX+/TX- and RX+/RX-)
  • Can drive 10 receiving nodes

Typical Applications:

  • Industrial cameras
  • CNC machine tool data transmission
  • High-speed long-distance point-to-point scenarios

3. RS-485: City Bus Network

(The most popular industrial bus standard)Features:

  • Differential signal transmission (same electrical standard as RS-422)
  • Half-duplex communication (one-way transmission at the same time)
  • Multipoint bus structure (up to 32/128 nodes)
  • Transmission distance 1200 meters (@100 kbps)
  • Maximum speed 10 Mbps (short distance)

Technical Advantages:

  • Two-wire system (A/B lines)
  • Bus termination resistance (120Ω) eliminates signal reflection

Common Applications:

  • Industrial field PLC networks
  • Building automation systems
  • Instrument networking

4. Modbus: Traffic Rules

Protocol Essence:

  • Application layer communication protocol (OSI Layer 7)
  • Defines data structure and interaction methods
  • Independent of the physical layer

Main Variants:

  • Modbus RTU (based on serial interface, binary encoding)
  • Modbus ASCII (based on serial interface, ASCII encoding)
  • Modbus TCP (based on Ethernet)

Detailed Relationships Among the Four

Using a city traffic system analogy:

  • RS-232 is a bicycle lane (simple but low capacity)
  • RS-422 is a highway (high-performance dedicated channel)
  • RS-485 is a bus lane (cost-effective multipoint network)
  • Modbus is the traffic signal rules (regulating how various vehicles pass)

Key Differences:

Feature RS-232 RS-422 RS-485 Modbus
Signal Type Single-ended Differential Differential Protocol
Maximum Node Count 1-to-1 1 drives 10 receives 32/128 nodes Theoretically unlimited
Communication Direction Full-duplex Full-duplex Half-duplex Depends on medium
Topology Point-to-point Point-to-multipoint Multipoint multi-master Master/slave/peer
Typical Distance 15m 1200m 1200m Depends on medium
Transmission Rate 20 kbps 10 Mbps 10 Mbps Depends on medium

Practical Networking Case Studies

Example of Smart Factory Communication Architecture:

  1. Device Layer: 20 temperature sensors connected via RS-485 bus

  • Using Modbus RTU protocol
  • Two-wire connection (A/B + termination resistance)
  • Control Layer: PLC and HMI use RS-422

    • Requires high-speed full-duplex communication
    • Four-wire connection (TX+/TX-/RX+/RX-)
  • Debugging Interface: Engineer’s laptop connected to PLC debugging port

    • Connected using RS-232
    • Direct DB9 serial connection
  • System Integration: Modbus TCP gateway

    • Converts field bus data to Ethernet
    • Connects to factory information network

    Selection Guidance Principles

    1. Select by Distance:

    • Simple connection within 15m → RS-232
    • Medium to long-distance point-to-point → RS-422
    • Long-distance multipoint network → RS-485
  • Select by Node Count:

    • Single device connection → RS-232/RS-422
    • Multiple device networking → RS-485
  • Select by Protocol Requirements:

    • If existing devices support Modbus → choose corresponding physical layer
    • Developing new protocols → select physical standards as needed
  • Consider Anti-Interference:

    • In industrial environments, prioritize RS-485/RS-422
    • In laboratory environments, RS-232 can be used

    Common Misconceptions Clarified

    1. RS-485 is not a protocol: Many users mistakenly believe that RS-485 comes with communication rules; in fact, it is just a physical layer standard

    2. Modbus is not equal to RS-485: Modbus can run on any physical layer, including RS-232/485/TCP, etc.

    3. Relationship between RS-422 and RS-485: Both use the same electrical standard, but RS-422 is designed for full-duplex point-to-point, while RS-485 is for half-duplex multipoint

    4. Termination Resistance Issue: RS-485 networks must have 120Ω resistors added at both ends of the bus, which is a common cause of networking failures

    These standards each have their advantages and are often used in combination in practical engineering to form a complete industrial communication system.

    Leave a Comment