Thank you for purchasing automation equipment from Automationdirect.com. We want your new DirectLOGIC
automation equipment to operate safely. Anyone who installs or uses this equipment should read this publication (and
any other relevant publications) before installing or operating the equipment.
To minimize the risk of potential safety problems, you should follow all applicable local and national codes that regulate
the installation and operation of your equipment. These codes vary from area to area and usually change with time. It is
your responsibility to determine which codes should be followed, and to verify that the equipment, installation, and
operation is in compliance with the latest revision of these codes.
At a minimum, you should follow all applicable sections of the National Fire Code, National Electrical Code, and the
codes of the National Electrical Manufacturer’s Association (NEMA). There may be local regulatory or government
offices that can also help determine which codes and standards are necessary for safe installation and operation.
Equipment damage or serious injury to personnel can result from the failure to follow all applicable codes and
standards. We do not guarantee the products described in this publication are suitable for your particular application,
nor do we assume any responsibility for your product design, installation, or operation.
If you have any questions concerning the installation or operation of this equipment, or if you need additional
information, please call us at 770–844–4200.
This publication is based on information that was available at the time it was printed. At Automationdirect.com we
constantly strive to improve our products and services, so we reserve the right to make changes to the products and/or
publications at any time without notice and without any obligation. This publication may also discuss features that may
not be available in certain revisions of the product.
Trademarks
This publication may contain references to products produced and/or offered by other companies. The product and
company names may be trademarked and are the sole property of their respective owners. Automationdirect.com
disclaims any proprietary interest in the marks and names of others.
No part of this manual shall be copied, reproduced, or transmitted in any way without the prior, written consent of
Automationdirect.com Incorporated. Automationdirect.com retains the exclusive rights to all information
included in this document.
If you contact us in reference to this manual, be sure to include the revision number.
Title: Terminator I/O MODBUS Base Controller User Manual
Manual Number: T1K–MODBUS–M
EditionDateDescription of Changes
1st Edition08/01Original Issue
i
Introduction
In This Chapter. . . .
— Manual Overview
— Introduction to MODBUS
— Terminator I/O System
— T1K–MODBUS Base Controller
1
1
1–2
Introduction
Manual Overview
The Purpose of
this Manual
Introduction
Supplemental
Manuals
Who Should Read
this Manual
Technical Support
This manual describes the installation and
operation of the Terminator I/O MODBUS
Base Controller (T1K–MODBUS).
The following manuals are essential to the proper use of your Terminator I/O
MODBUS Base Controller.
•Terminator Installation and I/O Manual part number T1K–INST–M
This manual contains very important information, including a complete
I/O Module Memory Map. The Memory Map is crucial in designing and
implementing a Terminator I/O system.
•The PLC User Manual (if PLC is used as master).
•The MODBUS Master manual (if other than PLC is used as master).
If you have a working knowledge of MODBUS networks, and the PLC or PC which
you are using, this manual will help you configure and install your T1K–MODBUS
Base Controller.
We strive to make our manuals the best in the industry and rely on your feedback in
reaching our goal. If you cannot find the solution to your particular application, or, if
for any reason you need additional technical assistance, please call us at
770–844–4200.
Installation and
Safety Guidelines
Our technical support team is glad to work with you in answering your questions.
They are available weekdays from 9:00 a.m. to 6:00 p.m. Eastern Time. We also
encourage you to visit our website where you can find technical and nontechnical
information about our products and our company.
www.automationdirect.com
Introduction
1–3
Manual Layout
ChapterTitleWhat’s covered
1
2
MODBUS RTU Functions
3
and Addressing Modes
Using T1K–MODBUS
4
Appendices
AppendixTitleWhat’s covered
The contents of this user manual are as follows:
Introduction
T1K–MODBUS
Specifications
Setup Tool
Additional reference information for the T1K–MODBUS is available in the following
appendices.
introduces MODBUS and describes both the Terminator
I/O System and the T1K–MODBUS Base Controller
provides module specifications, dip switch settings, port
pin–outs and wiring information.
provides MODBUS RTU functions supported and use
with DirectLogic PLCs, or MODBUS 584/984 modes.
explains how to configure the MODBUS port using the
Setup Tool.
Introduction
A
Analog Output Module
B
Symbols Used
I/O Module
Hot Swap
Configuration
The “note pad” icon in the left–hand margin indicates a special note.
The “exclamation mark” icon in the left-hand margin indicates a warning or caution.
These are very important because the information may help you prevent serious
personal injury or equipment damage.
The “light bulb” icon in the left-hand margin indicates a tip or shortcut.
explains the T1K–MODBUS I/O module Hot Swap feature
and the Enable/Disable Outputs switch.
uses a memory map to explain how to configure an analog
output module.
Safety Guidelines
Installation and
1–4
Introduction to MODBUS
Introduction
Introduction
MODBUS RTU (Remote Terminal Unit) Protocol is a messaging structure used to
establish master–slave communications between intelligent devices. When a
MODBUS master sends a message to a MODBUS slave, the message contains the
address of the slave, the function, the data and a check sum. The slave’s response
message contains fields confirming the master’s request, any data requested and
an error–checking field.
A typical MODBUS RTU frame consists of the following fields:
ADDRESSFUNCTIONDATACHECKSUM
The address field of a message contains 8 bits. Valid slave addresses are in the
range of 0– 247 decimal. The individual slave devices are set in the range of 1 – 247
decimal (address 0 is the broadcast to all slaves address). The master specifies a
slave by placing the slave address in the address field of the message. When the
slave responds, it places its own address in the address field to identify to the master
which slave is responding.
Installation and
Safety Guidelines
The function code field of a message contains 8 bits. V alid function codes are in the
range of 1 – 255 decimal. The function code instructs the slave what kind of action to
take. Some examples are to read the status of a group of discrete inputs; to read the
data in a group of registers; to write to an output coil or a group of registers; or to read
the diagnostic status of a slave.
When a slave responds to the master , it uses the function code field to indicate either
a normal response or that some type of error has occurred. For a normal response,
the slave echoes the original function code. In an error condition, the slave echoes
the original function code with its MSB set to a logic 1.
The data field is constructed using sets of two hexadecimal digits in the range of 00
to FF. According to the network’s serial transmission mode, these digits can be made
of a pair of ASCII characters or from one RTU character.
The data field also contains additional information that the slave uses to execute the
action defined by the function code. This can include internal addresses, quantity of
items to be handled, etc.
The data field of a response from a slave to a master contains the data requested if
no error occurs. If an error occurs, the field contains an exception code that the
master uses to determine the next action to be taken. The data field can be
nonexistent in certain types of messages.
The checksum field is used for error checking. Standard MODBUS serial networks
use two types of error checking.
Parity checking (even or odd) totals the number of logical 1 bits in the data field and
sets the parity bit to a 0 or 1 representing an odd or even total of logical 1 bits. CyclicalRedundancyCheck (CRC) checks the entire message and is applied regardless of
any parity check method used. The CRC field consists of two bytes, creating a 16 bit
binary value. The CRC is calculated in the transmitting device and is recalculated
and compared by the receiving device.
Both the character check and the message frame check are generated in the master
device and applied to the message before transmission. The slave device checks
each character and the entire message frame during receipt.
Terminator I/O System
MODBUS
Terminator I/O is a modular system which combines the functions of terminal blocks
and I/O modules for distributed I/O. Each Terminator I/O system has the following
components: a Power Supply, a Base Controller, and one or more I/O Modules and
I/O bases.
1–5
Introduction
Introduction
Power Supply
Base
Controller
I/O Module
I/O Modules
Safety Guidelines
Installation and
I/O Base
1–6
Introduction
T1K–MODBUS Base Controller
The T1K–MODBUS Base Controller is a slave module that functions as a controller
for Terminator I/O on a MODBUS network.
Introduction
MODBUS Base
Controller Features
Note: It is recommended to use the T1K–MODBUS Base Controller in a “scan
based” (polled) control system rather than in an “event–driven” control system. As a
slave, the Base Controller does not have the ability to report an error condition to the
MODBUS network master . Thus, polling a slave on a regular basis will detect a slave
error condition promptly, whereas an event–driven control system will not detect a
slave error condition until the next event is addressed to a slave in error.
The Base Controller has the following features:
•Status LEDs
•MODBUS Port
•Serial Port (RJ12)
•Unit Address Switches
•Output Enable/Disable Switch
•DIP Switch (located on right side of unit)
Output
Enable/Disable
Switch
Installation and
Safety Guidelines
Status LEDs
RJ12
Serial Port
Unit Rotary
Address
Switches
MODBUS Port
T1K–MODBUS
Base Controller
Specifications
In This Chapter. . . .
— T1K–MODBUS Base Controller Specifications
— Setting the DIP Switches
— Setting the Rotary Address Switches
— MODBUS Port Pin–out and Wiring
1
2
— RJ12 Serial Port Pin–out and Wiring
2–2
T1K–MODBUS Base Controller Specifications
Specifications
T1K–MODBUS
T1K–MODBUS Specifications
General
Operating Temperature32° F to 131° F (0° C to 55° C)
Storage Temperature–4° F to 158° F (–20° C to 70° C)
Ambient Humidity30% – 95% relative humidity (non–condensing)
Voltage Withstand1500VAC, 1 minute (15–pin connector internal)
Insulation Resistance500VDC, 10MΩ
Vibration ResistanceMIL STD 810C, Method 514.2
Shock ResistanceMIL STD 810C, Method 516.2
Noise ImmunityNEMA (ICS3–304) Impulse noise 1µs, 1000V
FCC class A RFI (145MHz, 435MHz 10W, 10cm)
AtmosphereNo corrosive gases
Environmental Pollution Level is 2.
Size1.89”Wx3.15”Hx3.26”D (48Wx80Hx83D)mm
Weight6.0 oz. (170 g)
Installation and
Safety Guidelines
MODBUS Port Specifications
Connector15–pin female D–shell connector
Connection Port TypeRS232C, RS–422/485
ProtocolMODBUS RTU
Station Number1 to F7h (247) Rotary Switch Setting
Number of I/O PointsInputs: 1024; Outputs: 1024
B
aud Rate (bps)
Communication Data8 Bit (Fixed)
Start Bit1 Bit (Fixed)
Stop Bit1 Bit (Default), 2 Bit
Parity BitODD (Default) / EVEN / NONE;
Communication Timeout500ms, 1s (Default), 2.5s, 5s, 10s, 25s, 60s
RTS On / RTS Off Delay Time0 (Default) / 2 / 5 / 10 /50 /100 / 500 ms
Communication Status IndicatorsRUN, ERR, TX, RX
Module Status IndicatorsPWR, DIAG
upgrades.
Station Number1 (Fixed)
Baud Rate9600bps, 19200bps (Dip Switch 6 selectable)
Communication Data8 Bit (Fixed)
Start Bit1 Bit (Fixed)
Stop Bit1 Bit (Fixed)
Parity BitODD (Fixed)
Base Controller I/O Specifications
Number of I/O Points (max.)Discrete: Inputs: 1024, Outputs: 1024
Analog: Inputs 64 Channels, Outputs 64 Channels
Number of Slots1 to 31
Self–DiagnosticsWatchdog Timer, Memory Check
I/O Module Type SupportedDiscrete Input, Discrete Output
Analog Input, Analog Output
Hot SwapYes
Internal Power Consumption250mA @ 5VDC
Allowable External Power Dropto 0V for 10ms max.
2–3
Specificaions
T1K–MODBUS
tatus Indicators
The status indicator LEDs on the Base Controller’s front panel have specific
functions which can help in programming and troubleshooting.
IndicatorStatusDescription
PWR
(Green)
RX
TX
RUN
ERRONCommunication error
DIAGONI/O system error
ONPower good
ONData is being received by the Base Controller
OFFNo data is being received by the Base Controller
ONData is being transmitted by the Base Controller
OFFNo data is being transmitted by the Base Controller
ONStarting communication to Master Module
OFFLED will turn OFF 1 second after failing to
communicate with master module
Flashing at
1 sec intervals
OFFI/O sytem good
ERR LED will begin flashing after the master stops
communicating with the Base Controller. The
Communication Time–out period can be set using
the T1K–MODBUS Setup Tool.
Safety Guidelines
Installation and
2–4
DIP SW
T1K–MODBUS Specifications
Setting the DIP Switches
DIP Switch
Settings
Specifications
T1K–MODBUS
The T1K–MODBUS controller has an eight position DIP Switch which controls baud
rates, addressing modes, the state of the outputs in an error condition, etc. The DIP
Switch is located on the side of the unit, opposite the power supply.
Note: Be sure to look closely at the DIP Switch default settings below.
OFF ON
SW1
SW2
SW3
SW4
SW5
The DIP
Switch is on
this side.
Factory Default Settings Shown (all OFF)
SW6
SW7
SW8
MODBUS Port Baud Rate
Communication Setting Mode
Hold Outputs (on Comm. Error)
RJ12 Serial Port Baud Rate
MODBUS RTU Addressing Mode
CTS Control Enable/Disable
for RJ12 Serial Port
Installation and
Safety Guidelines
DIP Switches 1–3 select the MODBUS port baud rate.
The Communications Setting mode, DIP Switch 4, enables some of the MODBUS
port communication parameters to be user set using the T1K–MODBUS Set Up
Tool. The following tables describe the default and option modes.
SW 4 Communication Setting Mode
OFFDefault Mode
ONOption Mode
Default Mode:
The following table lists the MODBUS port default settings when DIP Switch 4 is in
the OFF position.
SW 4 OFFMODBUS Port / Default
Mode
ItemDefault Setting
Communication Data8 Bit
Start Bit1 Bit
Stop Bit1 Bit
Parity BitODD
Communication Timeout1s
RTS ON Delay Time0ms
RTS OFF Delay Time0ms
T1K–MODBUS
Specificaions
Option Mode:
The following items are user selectable using the T1K–MODBUS Set Up T ool* when
DIP Switch 4 is in the ON position.
SW 4 ONMODBUS Port / Option Mode
ItemDefault Setting
Communication Data8 Bit (Fixed)
Start Bit1 Bit (Fixed)
Stop Bit*1 Bit / 2 Bit
Parity Bit*ODD / EVEN / NONE
Communication Timeout*500ms, 1s, 2.5s, 5s, 10s, 25s, 60s
RTS ON Delay Time*0ms, 2ms, 5ms, 10ms, 20ms, 50ms, 100ms, 500ms
RTS OFF Delay Time*0ms, 2ms, 5ms, 10ms, 20ms, 50ms, 100ms, 500ms
Safety Guidelines
Installation and
2–6
Specifications
T1K–MODBUS
T1K–MODBUS Specifications
The Hold Outputs DIP Switch 5 determines the slave outputs’ response to a
communications failure. If DIP switch 5 is in the ON position, the outputs in that slave
unit will hold their last state when a communication error occurs. If OFF, the outputs
in that slave unit will turn off in response to a communications error.
SW 5 Hold Outputs
OFFTurn OFF
ONHold Last State
WARNING: Selecting “HOLD LAST STATE” means that outputs in that slave
will not be under program control in the event of a communications failure.
Consider the consequences to process operation carefully before selecting
this mode.
DIP Switch 6 selects the baud rate for the RJ12 serial port. All other serial port
communication parameters are fixed. The port defaults are listed in the
specifications tables in the beginning of this chapter.
Installation and
Safety Guidelines
SW 6 RJ12 Serial Port
Baud Rate
OFF9600 bps
ON19200 bps
DIP Switch 7 selects the T1K–MODBUS addressing mode. Select the OFF
position if the T1K–MODBUS is to be used with a MODBUS master that operates in
the 584/984 addressing mode. Select the ON position if the T1K–MODBUS is to be
used with a DirectLogic PLC CPU operating as the MODBUS master. The modes
are discussed in Chapter 3.
DIP Switch 8 either enables or disables the CTS pin on the RJ12 serial port. Place
the switch in the ON position if the connected serial device requires RTS/CTS
control. Otherwise place the switch in the OFF position if only 3–wire
communication (TX, RX, GND) is required.
SW 8 CTS for RJ12 Serial Port
OFFDisable
ONEnable
Setting the Rotary Address Switches
HEX Format
0 1 2 3 4 5 6 7 8 9A B C D E F
The T1K–MODBUS unit address is set by the two rotary switches on the front of the
unit. Addresses are in hexadecimal format with valid address from 00 to F7, which is
equivalent to 0 t o 247 decimal. The addresses do not have to be sequential, but each
station address must be unique.
The top rotary switch is used to set the most significant digit of the HEX address. The
lower switch is used to set the least significant digit in the HEX address.
2–7
T1K–MODBUS Specifications
Converting HEX
Addresses to
Decimal
.
X10
UNIT
X1
ADRS
(HEX)
.
Eventhough the T1K–MODBUS unit address is set in HEX, it’s not difficult to
calculate the equivalent decimal address used by the MODBUS protocol.
To calculate the equivalent HEX address:
1) Divide the decimal address desired by 16. This provides the X10 HEX digit.
2) The remainder will be a number less than 16, resulting in a HEX number between
0–F. The remainder provides the X1 HEX digit. Two examples are given below.
T1K–MODBUS
Specificaions
Safety Guidelines
Installation and
0 1 2 3 4 5 6 7 8 9
60 decimal
60 ÷ 16 = 3
24 decimal
24 ÷ 16 = 1
10 11 12 13 14 15
with remainder of 12 = C
with remainder of 8 = 8
Decimal format
So 60 decimal = 3C
So 24 decimal = 18
HEX
HEX
2–8
MODBUS Port Pin–out and Wiring
Specifications
T1K–MODBUS
RS–232C
Point-to-point
DTE Device
T1K–MODBUS Specifications
6
1
10
5
15-pin Female
D Connector
11
15
PC/PLC
MODBUS
Master
MODBUS Port Pin Descriptions
15V5 VDC
2TXD2Transmit Data (RS232C)
3RXD2Receive Data (RS232C)
4RTS2Ready to Send (RS–232C)
5CTS2Clear to Send (RS–232C)
6 RXD2– Receive Data – (RS–422)
70VLogic Ground
80VLogic Ground
9 TXD2+ Transmit Data + (RS–422)
10 TXD2 – Transmit Data – (RS–422)
11 RTS2 + Request to Send + (RS–422)
12 RTS2 – Request to Send – (RS–422)
13 RXD2 + Receive Data + (RS–422)
14 CTS2 + Clear to Send + (RS422)
15 CTS2 – Clear to Send – (RS–422)
The Base Controller’s MODBUS port can be configured using the T1K–MODBUS
Setup Tool via the RJ12 serial port. The “Using the T1K–MODBUS Setup Tool”
chapter later in this manual discusses using the Setup Tool. The RJ12 port is also
used to upgrade the firmware in the base controller.
2–9
T1K–MODBUS Specifications
Modular Connector
to connect PC to
RJ12 Serial Port
6
1
6-pin Female
3 TXD
2 RXD
5 GND
7 RTS
8 CTS
RJ12 Serial Port Pin Descriptions
10VPower (–) connection (GND)
25VPower (+) connection
3RXDReceive Data (RS232C)
4TXDTransmit Data (RS232C
5RTSRequest to Send
6CTSClear to Send
4 TXD
3 RXD
1 GND
DIP Switch 8 in the OFF
Position to Disable CTS
T1K–MODBUS
Specificaions
6
1
Safety Guidelines
Installation and
MODBUS RTU
Functions and
Addressing Modes
In This Chapter. . . .
— T1K–MODBUS RTU Function Codes
— Using T1K–MODBUS with DirectLogic PLC
— Using T1K–MODBUS with MODBUS 584/984
1
3
3–2
MODBUS RTU Functions and Addressing Modes
MODBUS RTU Function Codes
MODBUS Function
Codes Supported
and Addressing Modes
MODBUS RTU Functions
The following MODBUS RTU functions are supported by the T1K–MODBUS base
controller.
mode is 584/984, this function is used to access analog output registers)
04Read Input Registers (when addressing mode
is 584/984, this function is used to access
analog input registers)
05Force Single Output
06Preset Single Registers
07Read Exception Status
08Loop back / Maintenance
09 – 14–
15Force Multiple Outputs
16Preset Multiple Registers
17Report Device Type
18 – 64–
65not supported
66not supported
68–70not supported
72not supported
73 – 127–
Function
Installation and
Safety Guidelines
MODBUS RTU Functions and Addressing Modes
DirectLogic Addressing Mode
3–3
Using the
T1K–MODBUS with
a DirectLogic PLC
Modbus Master
The DirectLogic Addressing mode is set by placing Dip Switch 7 in the ON position. The
following memory locations are supported by the T1K–MODBUS base controller in the
DirectLogic Addressing Mode.
Note: ModScan32 is a Windows based application program that can be used as a
MODBUS master to access and change data points in a connected slave device
(T1K–MODBUS). The utility is ideally suited for quick and easy testing of MODBUS
network slave devices. Visit ww w.win–tech.com to download a free ModScan32 trial
demo and for more information on ModScan32.
Using the
T1K–MODBUS
with a 584 / 984
MODBUS Master
and Addressing Modes
MODBUS RTU Functions
The 584 / 984 Addressing mode is set by placing Dip Switch 7 in the OFF position. The
following decimal memory locations are supported by the T1K–MODBUS base controller in
the 584 / 984 Addressing Mode.
1 – 1024 Discrete Outputs
•
•10001 – 11024 Discrete Inputs
•30001 – 30128 Analog Input Registers
•30201 – 30264 Bit Input Registers
•40001 – 40128 Analog Output Registers
•40201 – 40264 Bit Output Registers
Modbus
Range (Decimal) PointsMemory Type
1 – 10241024Discrete Output
Analog Input30001 – 3012812864Analog Input Register
Input Register30129 – 38999––not supported
Installation and
Safety Guidelines
Bit Input Register 30201 – 3026464–Discrete Input Bit
Input Register39129 – 39999––not supported
Analog output40001 – 4012812864Analog Output
Hold Register40129 – 40200––not supported
Bit Output
Register
Hold Register40265 – 49000––not supported
Hold Register49001 – 49128128–Special Register
Hold Register49129 – 49999––not supported
Register
Register
40201 – 4026464Discrete Output Bit
Register
Using the
T1K–MODBUS
Setup Tool
In This Chapter . . . .
— Configuring the T1K–MODBUS Port
1
4
4–2
Using the T1K–MODBUS Set Up Tool
Configuring the T1K–MODBUS Port
T1K–MODBUS Setup Tool (included with this manual) can be used to configure some of the
MODBUS port communication parameters via the RJ12 serial port. The T1K–MODBUS DIPswitch 4 must be in the ON position in order to use the Setup Tool to configure the
MODBUS port parameters. The configurable parameters include the Stop Bit, Parity Bit, On
Delay Time, Off Delay Time and Communication Time–out. If the DIP switch is in the Off
position, the factory defaults will apply. The Tool allows the T1K–MODBUS Firmware version,
Rotary Address Switches and DIP switches to be read only.
Installing the
Setup Tool
The Setup Tool can run on Windows 95/98/2000/MEt or Windows NTt (but not
Windows 3.1xt). The Tool is included with this manual on three 3.5” diskettes. It is
also available for download from the AutomationDirect web site
(www.automationdirect.com). The installation process places the files in the
C:\Program Files\T1K–MODBUS Setup Tool directory (default).
Place disk 1 of 3 in Drive A or Drive B. Click on the Windows Start button and then
select Run. Type in the path and filename (ex. A:\setup), or click on the Browse
button to find the directory and filename (ex. if the Setup Tool was downloaded from
the web). A series of windows will step through the installation process for disks 1, 2
and 3.
Launching the
Setup Tool
Set Up Tool
Using the T1K–MODBUS
Use the Windows Start menu Programs>T1K–MODBUS Setup Tool>
T1K–MODBUS Setup Tool as shown below to launch the Setup Tool.
Using the T1K–MODBUS Set Up Tool
4–3
Selecting the PC
Comm Port
Configuring the
MODBUS Port
Select the PC port that will be used to connect to the T1K–MODBUS base controller’s RJ12
serial port.
The following window will be displayed when the Tool is communicating with the base
controller’s RJ12 serial port.
Using The T1K–MODBUSInstallation and
Set Up Tool
T1K–MODBUS
Firmware Version
READ ONLY
Rotary Address Switches
DIP Switch Settings
These MODBUS Port
Parameters can be
configured
Write the New Settings to
the base controller
Safety Guidelines
Appendix A
I/O Module
Hot Swap
In This Appendix. . . .
— T1K–MODBUS I/O Module Hot Swap Feature
1
A
A–2
T1K–MODBUS I/O Module Hot Swap Feature
Appendix AAppendix B
I/O Module Hot Swap
The “Hot Swap” feature allows Terminator I/O modules to be replaced with
Terminator I/O system power ON. Be careful not to touch the terminals with your
hands or any conductive material to avoid the risk of personal injury or equipment
damaged. Always remove power if it is equally convenient to do so.
I/O Module Hot Swap
Check External
24VDC Wiring
Before Hot
Swapping!
WARNING: Only authorized personnel fully familiar with all aspects of the
application should replace an I/O module with system power ON.
The following module types can be “Hot Swapped”.
Module
Power SupplyNo
Base ControllerNo
I/O Modules (discrete / analog)Yes
Before “Hot Swapping” an analog I/O module or a DC output module in a
Terminator I/O system, make sure that each of the analog I/O and DC output
module’s 24VDC and 0VDC base terminals are wired directly to the external
power supply individually (see diagram below). If the external 24VDC / 0VDC is
jumpered from base to base in a daisy chain fashion, and an analog I/O or DC output
module is removed from its base, the risk of disconnecting the external 24VDC to the
subsequent I/O modules exists.
Appendix E
Do not jumper
modules together
creating 24VDC
bus for Hot Swap.
Wire each analog I/O and DC
output module independently
to the external power supply.
Hot Swap:
I/O Module
Replacement
A–3
I/O Module Hot Swap
I/O Module Hot Swap
The following steps explain how to “Hot Swap” an I/O module.
Appendix A
1. Remove I/O module from base. (If necessary, refer to the Terminator I/O
Installation & I/O Manual for steps on removing an I/O module).
2. The T1K–MODBUS DIAG LED will turn ON.
3. Install a new I/O module with the exactly the samepart number.
4. Verify that the T1K–MODBUS Base Controller LEDs have returned to normal.
Outputs
Enable/Disable
Switch
A feature that may be used in a non–continuous process application is the Outputs
Enable/Disable switch. The switch is located on the front of the T1K–MODBUS base
controller. This feature may be used at a convenient time during the process
application to replace an I/O module.
When the switch is in the Disable position:
Sall outputs are Disabled (OFF)
Sthe Base Controller’s output status memory is cleared
Sthe Base Controller ignores any outputs command from the Master Module
Appendix B:
Analog Output
Module Configuration
In This Appendix. . . .
— Analog Output Module Control Byte
1
B
B–2
Size
Read/Write
Analog Output Module Control Byte
Appendix BAppendix B
Analog Output Module Configuration
The Terminator I/O analog output modules are configured using the ModuleControl Byte located in the most significant byte of the most significant word of
channel 1 of the module. The “I/O Memory Map and Analog Module Resolution”
chapter in the Terminator Installation and I/O Manual (T1K–INST–M) covers
memory mapping for the Terminator I/O modules.
Analog Output Module
Channel 1 Memory Map
of 8&16-Channel Analog Output Module
(T1F–08DA, T1F–016DA)
Decimal Bit0706050403020100
Octal Bit0706050403020100
Analog Value Channel 1Write Byte 1
Analog Value Channel 1Write Byte 2
not usedByte3
Module Control ByteWrite Byte 4
Module Control Byte of 8&16-Channel Analog Output Module
(T1F–08DA, T1F–16DA)
Decimal Bit3130292827262524
Octal Bit3736353433323130
Outputs Enable
Bit 24
Bit 25
Bit 26
Bit 27
Bit 28 – 31Reserved for system use–
0 = All outputs OFF
1 = All outputs Enabled
Unipolar / Bipolar
0 = Unipolar selected
1 = Bipolar selected
5V / 10V Range
0 = 5V range
1 = 10V range
0 – 20mA / 4–20mA Range
0 = 0 – 20mA range
1 = 4 – 20mA range
Write
Write
Write
Write
Appendix E
Loading...
+ hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.