Understanding MODBUS easily (MODBUS GENERAL DESCRIPTION)


Modbus is a data interface protocol designed by Modicon in 1979 for use with its OEM PLC’s. Due largely to its simplicity and robustness, and the fact that it was royalty free, it rapidly gained popularity and became a de facto industry standard. It is non-deterministic and of quite low integrity. As such it is generally used for non critical data transfer (e.g. vibration data, DCS interfaces, process meters etc.).

OPERATION

Modbus operates on a query-response cycle. A network has only one master, and a number of slaves. The maximum permitted number of slaves is 247, but this may be further limited by the transport layer (e.g. RS485 limit is 32 devices in total which equates to 1 master and 31 slaves). The slave devices are totally passive. In isolation, they will not do anything. They require the master to issue a request to the slave. Each slave must have a unique address on the network (1 to 247). The slave will only respond if the request is valid. Invalid requests will be completely ignored by the slave device and no response whatsoever will be returned. Examples of invalid requests are: incorrect CRC, incorrect slave address (slaves only respond when a request is addressed to them).

The master is the only device that can initiate communication transactions. It does this by issuing a request (usually referred to as a “Poll” or “Telegram”). The request is normally addressed to a single specific slave. Only the addressed slave is expected to return a response. There is also a “broadcast” facility which permits the master to address all slaves. In this case the slaves will not return a response. As such the broadcast facility can only be used to write (not read) data from the slave devices.

PROTOCOL VARIANTS

Modbus is available in a range of different variants. Only devices using the same variant can communicate together. These variants as discussed below.

Modbus RTU (Remote Terminal Unit)

This variant communicates over a serial interface, usually RS232, RS485 or RS422. It is by far the most popular variant. Data values are encoded in 16-bit registers, in a High- Byte (X256), Low-Byte (X1) format.

For example: Take the number 12345. This would be sent as High-Byte 48 and Low- Byte 57. Note (48 * 256) + 57 = 12345.

Only integer values can be transferred, and are limited to the range 0 to 65535 or -32768 to 32767 for signed and unsigned numbers respectively. If decimal values need to be transferred, this can be achieved by either scaling the numbers (e.g. multiplying by 100, thus 123.45 becomes 12345 for transmission), or splitting a floating point (real) value into 2 registers and recombining it at the receiving end. Transactions are subject to strict timing constraints which restrict it to use over interfaces that cannot suffer from time delays (e.g. direct physical connections). Data integrity is provided via a Cyclic Redundancy Check (CRC) error checksum.

Modbus  ASCII

This variant communicates over a serial interface, usually RS232, RS485 or RS422. It is not a very popular variant. Data values are encoded as one byte per each ASCII character code of the value.

For example: The value 12345 would be sent as ASCII codes 49, 50, 51, 52 & 53. The data values can be best described as being a character string. As such any data value can be transferred, including decimals by including the decimal point (ASCII code 46). Transactions are not subject to strict timing constraints; as such it can be used for transmission over mediums that may be subject to random intermittent delays (e.g. modems). Data integrity is provided via a Longitudinal Redundancy Check (LRC) error checksum.

Modbus TCP

This variant communicates over an Ethernet interface, using a TCP/IP connection. This variant has become more popular over recent years, and is rapidly approaching RTU’s popularity. Data is encoded in the same format as the RTU variant. In this variant, the master is referred to as a client and the slave referred to as a server. Data integrity is provided by a checksum in the TCP layer.

 

Modbus has 4 separate data types. Each data type is accessed via fixed address ranges. These address ranges were actual memory addresses in the original Modicon PLC’s. They are still used for historical reasons, but they bear no resemblance to actual memory addresses of the Siemens PLC’s. Data types can hold digital (Boolean) or analogue (16-bit registers) and can allow read/write or read only access.

Most devices define their data via these addresses. However some define their data via an offset. The address can be calculated by adding the data type base address to the offset. For example an offset of 10 equates to address of 00011 for coils, 10011 for discrete inputs, 30011 for input registers and 40011 for holding registers. Extended holding registers are a later addition to the Modbus protocol and may not be supported by all Modbus devices.

When entering the data address into the Modbus driver software, you must enter the offset value, not the address value. The offset value is calculated by subtracting the Modbus data type base address from the Modbus address.

For example: Take holding register address 40203. The offset value = 40203 – 40001 = 202.

FUNCTION CODES

the Modbus function codes and addresses.

Modbus uses codes to define what data type to access and what action to perform on that data type. These are known as function codes and are sent as part of the request (poll). The original Modicon PLC’s had a large number of function codes. However some were only relevant to Modicon PLC’s, and modern Modbus implementations only use a selection of the most relevant and useful function codes.

Summary

Have any Question or Comment?

Leave a Reply

Your email address will not be published. Required fields are marked *

Find Us

Address
123 Main Street
New York, NY 10001

Hours
Monday—Friday: 9:00AM–5:00PM
Saturday & Sunday: 11:00AM–3:00PM

About This Site

This may be a good place to introduce yourself and your site or include some credits.

Find Us

Address
123 Main Street
New York, NY 10001

Hours
Monday—Friday: 9:00AM–5:00PM
Saturday & Sunday: 11:00AM–3:00PM

About This Site

This may be a good place to introduce yourself and your site or include some credits.