Difference between revisions of "RS485"
m (→Interface Connector) |
m (→Description) |
||
Line 1: | Line 1: | ||
== Description == | == Description == | ||
RS485 is a differential communication protocol. It is primarily used in industrial applications. It's key benefits are it's effectiveness in long distances (4000ft), immunity to noise and high number of devices a network can support (32-256 devices). | RS485 is a differential communication protocol. It is primarily used in industrial applications. It's key benefits are it's effectiveness in long distances (4000ft), immunity to noise and high number of devices a network can support (32-256 devices). | ||
+ | |||
+ | In a typical network, the master provides the biasing and initiates communication to the peripheral devices. | ||
== Voltages == | == Voltages == |
Latest revision as of 10:09, 24 April 2012
Contents
Description
RS485 is a differential communication protocol. It is primarily used in industrial applications. It's key benefits are it's effectiveness in long distances (4000ft), immunity to noise and high number of devices a network can support (32-256 devices).
In a typical network, the master provides the biasing and initiates communication to the peripheral devices.
Voltages
RS232 specification says that the voltages may be -7V - +12V.
A 1 is represented as Positive Voltages (B-A > +200 mV)
A 0 is represented as Negative voltages (B-A < -200 mV)
Interface Connector
There is no standard connector for this interface.
Typically you need three connections. A (inverting), B (non inverting), and a ground reference.
B is positive in reference to A when in idle state.
Baud Rate
Baud: the symbols per second or pulses per second.
Baud Rate = 1/(Bit Width)
Bit Width = 1/(Baud Rate)
-in seconds
100kbit/s - 10Mbit/s
Testing: Rise/Fall Time
Rise time: characterized as the time required for the voltage to step from the voltage low signal to a voltage high signal. Typically this is 10% and 90% of the voltage high signal.
Fall time: characterized as the time required for the voltage to step from the voltage high signal to the voltage low signal. Typically this is 90% and 10% of the voltage high signal.
In RS232 communication the RS232 receivers will have an acquisition at the middle of each bit. A fast rise time will mean that there is more margin in each bit for a correct acquisition. A slow rise or fall time will could mean that the bit is sampled during the rise transition which may be below the voltage input high voltage. Resulting in a false reading.
Testing: VIH/VIL
Voltage Input Low (VIL): The voltage threshold where the voltage input is considered low
Voltage Input High (VIH): The voltage threshold where the voltage input is considered high
Testing: Max Baud Rate
Testing every baud rate on every interface will take a lot of time. In some cases all you want to test is the Max Baud rate since it is the one that will be most affected due to shorter bits.
Testing: Baud Rate Accuracy
I use this reference to help understand baud rate accuracy. Generally speaking you want better than +/-2.5% accuracy for your transceivers or receivers.
Due to the crystal or oscillator used certain baud rates cannot even be achieved.
Generally the best way to measure this is to take a scope trace of a UART frame. A UART Frame is characterized as a Start Bit, Data and a Stop Bit. In a 8 bit frame this could look like this.
START BIT | D0 | D1 | D2 | D3 | D4 | D5 | D6 | D7 | END BIT |
In this frame there are 10 data bits (including the start and end bit). If we measured the time from the start bit leading edge to the stop bit trailing edge we could see 1041.7us. Since that is a measurement of 10 bits we divide by ten and each bit is 104.17us. 1/(0.00010417s) = 9599.69 Baud which is 99.9968% accurate to 9600 baud.