Welcome to the Industrial Automation website!

NameDescriptionContent
HONG  KANG
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

Based on the S7-300/400 Ethernet module CP343-1 &CP443-1 Modbus TCP used in STEP7 Door (V6.0)

来源: | 作者:佚名 | 发布时间 :2023-11-21 | 836 次浏览: | 🔊 Click to read aloud ❚❚ | Share:

1 Overview of Modbus TCP communication

MODBUS TCP is a simple, vendor-neutral derivative of the MODBUS family of communication protocols for managing and controlling automation devices, and it obviously covers the purpose of MODBUS messages in the "Intranet" and "Internet" environments that use TCP/IP. The most common use of the protocol is for services such as PLCS and gateways connecting to other simple domain buses or I/O modules.

MODBUS TCP enables MODBUS_RTU to run on Ethernet. MODBUS TCP uses TCP/IP and Ethernet to transmit MODBUS packets between sites. MODBUS TCP combines Ethernet physical networking with the networking standard TCP/IP and data representation with MODBUS as the application protocol standard. MODBUS TCP communication packets are encapsulated in Ethernet TCP/IP packets. Unlike the traditional serial port mode, MODBUS TCP inserts a standard MODBUS message into the TCP message without the data checksum address.

1.1 Ethernet reference model for communication

The Modbus TCP transmission process uses Layer 5 of the TCP/IP Ethernet reference model:

Layer 1: The physical layer provides the physical interface of the device and is compatible with the commercially available media/network adapter.

The second layer: the data link layer, formats the signal to the source/destination hardware address data frame.

Layer 3: The network layer implements packets with 32-bit IP addresses.

The fourth layer: the transport layer, to achieve reliable connection, transmission, error checking, retransmission, port service, transmission scheduling.

Layer 5: Application layer, Modbus protocol packets.

1.2 Modbus TCP Data frame

Modbus data is transmitted over TCP/IP Ethernet and supports Ethernet II and 802.3 frame formats. The Modbus TCP data frame consists of three parts: packet header, function code and data. The Modbus Application Protocol (MBAP) packet header is divided into four domains. Total 7 bytes.

1.3 Port Number for Modbus TCP

(1) When PLC is used as Modbus server, Port 502 communication port is used according to default protocol, and any communication port is set in the Modus client program.

(2) When PLC is used as Modbus client, it is not necessary to set the local port number; If you want to specify a client port number, you are advised to start with 2000 to avoid conflicts with other communication protocols.

2 Overview of Modbus TCP communication on the S7-300/400 Ethernet module

This document applies to SIMATIC S7-300, S7-400 CPU with Ethernet module CP343-1 or CP443-1 software products. The instructions allow communication between S7-300, S7-400 systems with Ethernet modules CP343-1 or CP443-1 and devices that support the Modbus TCP protocol.

Data transmission is carried out according to the client-server principle. SIMATIC S7 can be used as a client or server during transfer.

2.1 Software and Hardware

When Modbus TCP commands are used in STEP7 software, the Modbus TCP CP instruction library needs to be installed before SIMATIC S7-300, S7-400 CPU with Ethernet module CP343-1 or CP443-1 can communicate with the communication partners that support Modbus TCP. As shown in Figure 2-1:

2.2 Modbus TCP CP V6.0 Software Option Package

When the software package is installed and integrated into Step7, you can find the block library, routines, and English manual in the corresponding directory of the Step7 installation file, as shown in the following figure. In the actual debugging process of the project, since the functions of the example program are relatively perfect, you can directly use the example program and modify the corresponding parameters according to the actual situation of the project. Can save a lot of parameter setting time.

3 Configure the Ethernet module as the Modbus TCP Server to communicate with the communication partner

The following uses the S7-300 single-site system and Modscan32 software as an example to describe how to configure the S7-300 single-site system as the Modbus TCP Server through the Ethernet module CP343-1 to communicate with Modscan32 as a Client.

3.1 Configuring Hardware

Create a new project (project name: MB_TCP_CP_V60) in STEP7.

3.2 Adding a TCP Connection

On the Hardware Configuration page, click "Configure Network" under Options to enter the network configuration page.

Next, select CPU, and in the table below, right-click and select "Insert New Connection" to add the TCP connection.

The communication partner is Unspecified and the connection type is TCP connection.

Select the local connection resource number (default ID=1) and PLC as the server. Note that "Active connection establishment" is not checked.

Click the "Addresses" page and set the local port number to 502.

3.3 Routine Description

Open the routine and copy all program Blocks (do not copy System data) from site SIMATIC 300 (Server) to the blocks of site SIMATIC 300 (1) of new project MB_TCP_CP_V60.

(1) Open OB1 and view the command "MODBUSCP"

The Modbus TCP command is invoked in the OB1 organizational block of the project,

The following are some pin descriptions (for other pin information, please see the instruction library manual) :

id: indicates the ID of the configured connection in Configure Network. The connection ID is the unique identification of the connection between the CPU and the connection partner through the CP. Enter the number for the connection configuration here. This parameter ranges from 1 to 64.

db_param: parameter data block that contains modbus data parameters for the modbus block instance. The CPU determines the value range of this parameter. DB number 0 is reserved for the system and cannot be used. Enter the DB number "DBxy" in plain text format. If multiple connections are to be implemented, the parameter data block can contain the parameters required for all connections in order.

REG_KEY_DB: Registration key used for authorization.

MONITOR: Monitoring time MONITOR is used to monitor incoming data from connection partners. The time format T# is used to specify the monitoring time. It is recommended that the monitoring time be about 1.5s.

In "S7 as server" mode, the input of the second part of the frame is monitored by MONITOR time. If the monitoring time is exceeded, an error is reported. This time is calculated from the receipt of the MODBUS/TCP specific packet header and ends when the request is fully received.

Init: initializes the Modbus block when there is a rising edge in the parameter. Initialization can only be performed if no jobs are currently running. This condition must be ensured in the program by ENQ_ENR = FALSE and BUSY = FALSE.

(2) Parameter data block DB2

Parameter data block DB2 (name MODBUS_PARAM_CP). This parameter DB block is used to set the modbus data area.

Notice To modify Data in the DB block, switch the DB block to Data view and modify the DB block in the Actual value column.

In this example, you need to change DB2 ID2_ID to 16#1 according to the connection Settings in Figure 3-7. To facilitate the mapping of subsequent communication test addresses, change the start and end addresses of the modbus register to 16#0 and 16#1F3 respectively.

3.4 Communication Test

Download the project to the CPU, open the Modsan32 application, the following to the hold register as an example to introduce the communication test process.

First, select connect under the Connection menu for ModScan32 and set the IP address and port number for ModScan32 to access the PLC as the server side.

Finally, set the start address and length of Modbus to be accessed in Modscan32 software (in this test, Modscan32 uses data type 3 and the start address of the access hold register is 10 words of 40001), establish a communication connection with PLC, and carry out data reading.

You can view the communication status in the network configuration window.

Some considerations for using the function block "MODBUSCP" :

1) The S7-300CPU supports communication with multiple Modbus clients through the function block "MODBUSCP" of the Ethernet module CP343-1. The number supported depends on the number of TCP connections supported by the CP343-1. The function block "MODBUSCP" must be invoked once for each client connection. Parameters such as background data block, ID, and port number must be unique.

2) The S7-300CPU can be used as the Server and Client of Modbus TCP through the Ethernet module CP343-1.

3) The S7-300CPU supports multiple protocols through the Ethernet module CP343-1, which can run PROFINET, TCP/IP, S7 and other protocols in addition to Modbus TCP.

4 Configure the Ethernet module as the Modbus TCP Client to establish communication with the communication partner

The following uses the S7-300 single-site system and ModSim32 software as an example to describe how to configure the S7-300 single-site system as the Modbus TCP Client through the Ethernet module CP343-1 to communicate with Modsim32 as the Server.


  • Omron ZFX-C25-CD Vision Controller PNP 2-Camera
  • Omron ZFV-NX1 Smart Vision Sensor CCD Camera
  • GE Multilin F60 Feeder Management Relay UR Series
  • Omron C500-NC222-E Positioning Module 2 Axis
  • Omron C200PC-ISA01-E SYSMAC Board PLC ISA
  • Saia PCD2.W610 Analog Output Module 4 Channels
  • Kollmorgen SERVOSTAR 606 N1 Servo Drive Danaher Motion
  • Biviator RW 3089 CPU Module Industrial Controller
  • Santerno Sinus IFDEV 400T-7.5 AC Drive 8.4kW 380V
  • Omron C60H-C1DR-DE-V1 Programmable Logic Controller
  • SOCOMEC SIRCO 0T510058 1250A Switch
  • REER ARGOLUX ASR 1218 ASE 1218 Safety PLC
  • GE TLINE TCP11G-04-0345 Operator Panel
  • OMRON CJ1G-CPU43H V2.0 PLC CPU
  • OMRON FQ-MS125-ECT Vision System
  • OMRON FND-X06H Position Driver
  • OMRON CPM2C-S110C-DRT Compact PLC
  • YASKAWA SGMAH-02AAA61D-OY 200W Servo Motor
  • OMRON CJ1G-CPU43H V3.0 PLC CPU
  • Schneider PM89M0024 PLC I/O Module 4-20mA
  • Omron H8PR-16P-300 Rotary Positioner
  • Saia PCD2 AP103 PLC Module AP103 V3.5
  • Parker HPD5/K005 Servo Driver
  • Omron ES1-LWT Infrared Temperature Sensor
  • Yaskawa CIMR-V7AZ21P5 VFD 220V 1.5kW
  • Yaskawa CIMR-P5C43P7 Inverter 400V 3.7kW
  • Omron 3F88L-160 Programmable Cam Positioner
  • Yaskawa SGDH-02AE-OY Servo Driver 200V
  • ABB SACE SH800 800A 660V Switch Disconnector
  • Samsung CSDJ-10BX2 AC Servo Drive 1KW 220V
  • OMRON CQM1-DA021 DA022 IPS02 Analog Output PLC
  • OMRON CS1W-EIP21 EtherNet/IP Unit
  • SIEMENS S5 395 6ES5376-0AA11 CPU Module
  • GE Multilin 269-10C-HI Motor Management Relay
  • SIEMENS 3VT9500-3MQ00 Motor Operator
  • OMRON FQ2-S25100F Smart Camera
  • TOSHIBA VFPS1 4220PL WP 22kW Inverter
  • KEB COMBIVERT F4 13.F4.4C1D-4025 5.5kW Inverter
  • VISOLUX SLVA-4Kplus-2528 Photoelectric Sensor
  • PRO-FACE GP370-LG21-24VP HMI Touch Screen
  • YASKAWA SGMPH-04AAA61D-OY 200V 400W Servo Motor
  • YASKAWA SGMPH-08A1A41 750W Servo Motor with Gearbox
  • OMRON C60K-CDR-D K-Type CPU PLC
  • OMRON CS1W-AD081-V1 Analog Input Module
  • OMRON CP1H-X40DT-D Compact PLC
  • OMRON 3G3SV-BB007-E 0.75kW Inverter
  • YASKAWA SGDH-10DE-OY 1kW Servo Pack
  • OMRON C60H-C5DR-DE-V1 SYSMAC CPU PLC
  • OMRON C60H-C5DR-DE-V1 SYSMAC CPU PLC
  • OMRON 3G3MV-P10CDT3-E RS422/485 Inverter PLC Board
  • OMRON C200PC-ISA02-DRM-E SYSMAC Board PLC with Floppy & Operator Panel
  • OMRON 3G3SV-BB007-E 0.75kW Inverter
  • OMRON CP1H-X40DT-D Compact PLC
  • OMRON CS1W-AD081-V1 Analog Input Module
  • OMRON C60K-CDR-C K-Type CPU PLC
  • YASKAWA SGMPH-08A1A41 750W Servo Motor with Gearbox
  • YASKAWA SGMPH-04AAA61D-OY 200V 400W Servo Motor
  • OMRON CJ1W-DA041 Analog Output Module
  • OMRON C60H-C5DR-DE-V1 SYSMAC CPU PLC
  • OMRON 3G3MV-P10CDT3-E RS422/485 Inverter PLC Board
  • OMRON C200PC-ISA02-DRM-E SYSMAC Board PLC
  • Omron CQM1H-MAB42 Analog I/O Board
  • Omron C200PC-ISA02-DRM-E SYSMAC Board
  • Oriental Motor ARD-C CM10-1 Stepping Driver
  • EVA 915.85.003 Embedded CPU Module
  • Omron C60H-C1DR-DE-V1 PLC CPU
  • TE.CO TFX 4G10 Industrial Power Cable
  • Siemens 6SL3120-2TE15-0AA4 Motor Module
  • Emerson SolaHD SDN10-24-100P Power Supply
  • PARKER HPD2S5N/K005 Servo Drive
  • Danfoss VLT 3008 Variable Speed Drive
  • Saia Burgess Controls PCD4.H31 PLC CPU
  • OMRON C200HW-PRT21 Profibus DP Slave Unit
  • OMRON TJ1-ML04 Trajexia Motion Controller
  • Schneider Electric Pre-Wired PLC Control Box
  • Allen Bradley 1336-L8E AC Drive
  • Siemens 6ES7123-1GB60-0AB0 PLC Module
  • Automation Direct D3-08B-1 PLC Chassis 8 Slot
  • OMRON 3G3XV-A2007 VFD 0.75kW 220V
  • STOBER F102SG0230MO20 Gear Drive Technology
  • Saia PCD4.H32 PCD4 Series PLC
  • Omron NSJ12-TS01B-G5D NSJ Terminal
  • Biticino MA250 T7314A Megatiker Circuit Breaker
  • Omron ZX-LDA41 ZX-LD300L Laser Sensor
  • Siemens 6ES7511-1AK02-0AB0 CPU 1511-1 PN
  • Saia Burgess Controls SBC PCD PLC Module
  • Siemens 6ES5 244-3AA21 S5 Temperature Module
  • Omron NSJ5-SQ01-DRM NSJ Controller
  • Omron NT15S-SF121B-E Programmable Terminal
  • Yaskawa CIMR-F7Z4045 45kW VFD AC Drive
  • AB 1494U-D100 Smart Motor Controller
  • Omron NA5-7W001B-V1 Touch Screen HMI
  • Fanuc A16B-1000-0400/01A CNC Control Board
  • Omron CV2000-CPU01-EV1 PLC CPU Unit
  • Eaton XV-102-B4-35TQRF-10-PLC Touch Panel
  • Siemens 6FX1121-3BB01 SINUMERIK Board
  • SCE M68-2000 2 Axis CNC Servo Controller
  • Omron R88M-K20030T-BS2 AC Servo Motor
  • Omron G3NH-4150B Solid State Relay
  • BITICINO MA250 T7313A Megatiker PLC Disconnector
  • IFM 2MSTR AS-i PROFIBUS DP Gateway
  • Danfoss VLT 3022 175H1238 Variable Speed Drive
  • PASABAN MTC-3052 FAST I/O Module
  • Allen Bradley 1746-A7 SLC 500 Chassis
  • Mitsubishi NF1600-SEW MCCB
  • Schneider LTMR100EBD Motor Management Controller
  • Yokogawa AIP121-S3 Analog Input Module
  • Siemens 6ES7135-4LB02-0AB0 ET200S AO Module
  • Motor Power SKA DDR 148-240 Torque Motor
  • OMRON CS1H-CPU63-EV1 PLC CPU Unit
  • ABB UFC921A101 Main Control Board
  • ABB UFC921A Main Control Unit
  • ABB UFC911B108 Drive Main Control Unit
  • ABB UFC911B106 Drive Main Control Unit
  • ABB UFC911B101 Drive Main Control Unit
  • ABB UFC765AE102 Drive Control Interface Board
  • ABB UFC762AE101 I/O and Communication Extension Board
  • ABB UFC760BE41 I/O and Communication Extension Board
  • ABB UFC760BE145 I/O and Communication Extension Module
  • ABB UFC721BE101 Fieldbus Communication Adapter Module
  • ABB UFC721AE101 3BHB002916R0101 Network Interface
  • ABB UFC718AE101 HIEE300936R0101 Communication Module
  • ABB UDC920BE01 3BHE034863R0001 Communication Module
  • GE IS420UCSCH1A-F-VO.1-A Controller Module
  • GE UCSC H1 IS420UCSCH1A Controller Station Card
  • ABB UCD240A101 3BHE022287R0101 Process Controller
  • ABB UCD224A103 Process I/O Module
  • ABB UCD224A102 Analog Input Module