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 | 792 次浏览: | 🔊 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.


  • SCHROFF MPS015 Series
  • SCHROFF MPS015 13100205 Power Supply
  • SCHROFF 3BSC690076R5 Module Review
  • SCHUMACHER ATCS-15 1464-0320 Review
  • SCHUMACHER MDIA-162 System Analysis
  • SCHUMACHER ATCS-15 Technical Guide
  • Schumacher 1442-0010H Industrial Battery Charger Module
  • Seagate ST3630A 3.5 Inch IDE Hard Drive
  • SEC PB5F-DYL Latching Relay Output Module
  • SEC PB5F-DYI Isolated High-Density Output Module
  • SEC PB5F-DY High-Density Digital Output Module
  • SEC PB5-DY 5-Channel Digital Output Module
  • SEC PB4-DYI Isolated Digital Output Module
  • SEC PB4-DY 4-Channel Digital Output Module
  • SECO B161S-E176 Control Card
  • SEF M21.1 Control Module
  • Seidel MV65WKS-CE310/22PB Driver
  • SEM MT30R4-37 Servo Motor
  • SEMIKRON SKD62/16 Rectifier Bridge
  • SENTRON LD63F600 Circuit Breaker
  • Sentry VREL-11 Voltage Relay
  • Servo MTS30M4-38 AC Servo Motor
  • Servo Module SEVO BOARO C20003/2.1 Motion Control Board
  • Servoland SVFH8-H3-DSP*ANI Servo Drive
  • Servotecnica SVT57BL03-60V Brushless Servo Motor
  • SES 2422 Frequency to Analog Converter
  • SES 2409 Thermocouple Signal Conditioner
  • SES 2411 Industrial Signal Conditioner
  • SEW MDV60A0110-5A3-4-00 11kW Drive
  • SEW MPB51A055-503-00 Power Unit
  • SEW 31C055-503-4-00 5.5kW Inverter
  • SEW R37DS56L Geared Motor Specs
  • SEW MDV 8222215.14.17 Power Board
  • SEW MKS51A005-503-50 MOVIKIT Controller
  • SEW MHD093C-058-PG0-AN Synchronous Servo Motor
  • SEW MDV60A0075-5A3-4-0T MOVITRAC Frequency Inverter
  • SEW MDS60A0150-503-4-00 MOVIAXIS Servo Drive
  • SEW MDF60A-0075-5A3-4-00 MOVIFIT Drive
  • SEW MDF60A-0022-5A3-4-00 MDX60A0075-5A3-4-00 Drive System
  • SEW MDF60A-0022-5A3-4-00 MOVIFIT Drive
  • SEW EF-014-503 Braking Resistor
  • SEW DFP11B 8227241.12 Interface
  • SEW DFP 21A PROFIBUS Interface Card
  • SEW 31C450-503-4-00 45kW Inverter
  • SEW 31C075-503-4-00 7.5kW Inverter
  • SEW 31C015-503-4-00 1.5kW Inverter
  • SEW 31C005-503-4-00 Drive Analysis
  • SHINKAWA VM-5G0-2 General Purpose Monitor
  • SHINKAWA VM-5C Shaft Eccentricity Monitor
  • SHINKAWA VM-5Z4 Power Supply Module
  • SHINKAWA VM-5P3 Phase Reference Module
  • SHINKAWA VM-5H3 8-Slot Monitoring Rack
  • SHINKAWA VM-5Y1-02 GEM Process Monitor
  • SHINKAWA VM-5K Dual Vibration Monitor
  • SHINKAWA MP-2W2 Differential Expansion Monitor
  • SHINBORY DENSHI HD-522 Technical Guide
  • SHINKAWA MP-2P1 Industrial Vibration Monitoring Module
  • SHINKAWA MP-2P4 Multi-Channel Vibration Monitoring Module
  • SHINKAWA MP-2S Vibration Monitoring Module
  • SHINKAWA MP-2T Magnetic Pickup
  • SIEBEL IPS21-24V-35AD ABB Module
  • SIEBEL&SCHOLL IPS21-35AD Power Supply
  • SIEGER 05701-A-0550 Control Unit
  • SIEGER 05704-A-0122 Control Card
  • Siemens Moore 16114-171 I/O Module
  • Sigmatek DNC115 Digital I/O Module
  • Silicon Graphics B014ANT180 Graphics Card
  • Silicon Graphics 030-0730-003 VGA Graphics Module
  • SIMCO FMX-003 Electrostatic Field Meter
  • SHINKAWA MP-2S Vibration Monitoring Module
  • SINANO SE04-10WA Servo Driver Info
  • SIS AI3281 Analog Input Module
  • SIS CM01 Communication Module
  • SIS MC01 Main Controller Module
  • SIS DO3201 Digital Output Module
  • SIS DI3201 Digital Input Module
  • SIS BI01 Bridge Input Module
  • SIS PM01 Power Monitor Module
  • SKIIP 39AC12T4V1 IGBT Power Module
  • SLIMPAK 10923H5A Isolated DC-DC Converter
  • SLIMPAK G468-0001 Isolated Signal Conditioner
  • SLIMPAK G408-0001 DC-DC Converter
  • SLO-SYN M063-LE-507E Hybrid Stepper Motor
  • SMC VQ1-LPF04+VQ1100N-5 Valve Assembly
  • SMC INR-244-203B Technical Overview
  • SMC INR-244-97B-B-X5 Cooling System Info
  • SMC MHY2-10D2 Air Gripper
  • SNAP CB:2F:DA 8/4MB Memory Module
  • Socapel SOCASIN ST1 25-310 Drive
  • Sonalert SC628AD Audible Alarm
  • Sony XCD-V50 CCD Camera Manual
  • SST SST-DN3-PCI-2 DeviceNet PCI Card
  • SST SST-PFB-CLX PROFIBUS ControlLogix Module
  • SST 5136-DN-PC DeviceNet PC Card
  • SST 5136-RE-VME Remote I/O VME Interface Card
  • SST SST-PFB3-VME-2 PROFIBUS VME Interface Card
  • SST 5136-DNP DeviceNet PCI Interface Card
  • STOBER SEA5001 Terminal and Interface Module
  • STOBER MDS5075A/L Servo Drive
  • Straub FLEX 1L Pipe Coupling
  • Stromberg OKYM7W22 Relay Module
  • STS PTM.MT/N/Ex 131299 Pressure Transmitter
  • SUGAHARA S-0000 REV.C Industrial Control Interface Module
  • SST 5136-DNP-PCI DNP3 Communication Interface PCI Card
  • STAHL ET-436-AT-R2-HB-TX-100GB-V Industrial Ethernet Device
  • STEC S83-1003-01 Control Module Industrial Automation Component
  • STEC SEC-4400 Environmental Control System Industrial Monitoring
  • STEGO KTO 011 Thermostat Temperature Controller for Enclosures
  • Suite T940X Controller with XAPMM Battery Module
  • Sumtak IRH320-1000-203 Rotary Encoder
  • Sun 5148-04 Industrial Power Supply
  • Sunx RS-520L Photoelectric Sensor
  • Superior SS20001 Stepper Motor Drive
  • Superior M063-LE09 Hybrid Stepper Motor
  • SUTRON TP35ET 219032 HMI Touch Panel Industrial Operator Interface Display
  • TR-500Q-P-F1 3503311-02 Switching Power Supply High Efficiency Industrial PSU
  • TAIAN 1A-CS1-A0-D1 Industrial Control Module High Stability Automation Unit
  • TAIYO AA-327A GRU-8D Pneumatic Cylinder High Efficiency Industrial Actuator
  • TAMAGAWA TS2640N321E64 Resolver Sensor High Precision Feedback Device
  • TEAM BL0308 PC0014 Industrial Storage Module
  • TEAM BCC-1 Bus Controller Card
  • Tayee AD17-SML LED Indicator Light
  • TDI SPS5785 High-Performance Power System
  • TDK-Lambda LZS-A1000-3 1000W Power Supply
  • Telemecanique LAD-N22C Auxiliary Contact Block
  • TEAM BL0170 PC0010-P Industrial Controller
  • TEAM BG0090 PC0006 Industrial Control Board
  • Techno KR-505M Stepper Motor Controller