The EPICS testS7 IOC Application consists in the following sections inside the [testS7] root folder:
Records Database File
In this example IOC application, all the available S7-1200 PLC digital and analog IO are set in the application database records in the file [testS7]/tests7App/Db/dbS7.db.
The standard S7-1200 PLC contains 10 digital outputs ports, 14 digital inputs ports and 2 analog inputs ports.
The digital inputs and outputs can only have the values 1 or 0 and must be read by the IOC application using a binary in (bi) or written to using a binary out (bo) record.
A PLC digital input port can only be read and not written to, so only a bi record is set in the IOC application database.
A PLC digital output port can be both read and written to. This means that to read the status of the PLC digital output, the IOC application must use the bi record for that PLC port. And to set the status of that port, the IOC application must use the corresponding bo port.
The mnemonic to consider here is that the bi and bo records correspond to what is being read or written by the IOC application, and not the PLC.
In the case of the S7-1200 PLC, the port is for each record is defined by setting the value "@myPLC Q0.1" in the INP or OUT fields, for example. In this case the "myPLC" value is the alias given to the PLC in the [testS7]/
iocBoot/ioctests7/st.cmd file (s7nodaveConfigureIsoTcpPort("myPLC", "192.168.0.1", 0)), and the Q0.1 corresponds to the digital output group 0, bit 1.
The S7-1200 PLC have the following address aliases:
Digital Outputs (prefix Q):
Group 0 bit 0 -> Q0.0
...
Group 0 bit 7 -> Q0.7
Group 1 bit 0 -> Q1.0
Group 1 bit 1 -> Q1.1
Digital Inputs (prefix I):
Group 0 bit 0 -> I0.0
...
Group 0 bit 7 -> I0.7
Group 1 bit 0 -> I1.0
Group 1 bit 6 -> I1.5
Analog Inouts:
Analog Input 0 -> IW64
Analog Input 1 -> IW66
Poll Groups
All the input records in the database have a SCAN field. The IOC application will scan the value of each record at the interval defined in the SCAN field. For a SCAN field of "0.1 second" of a input record, the IOC application will query the PLC for that record's value once every 100 miliseconds.
However, EPICS treats each query independently, so by setting the SCAN field of every input record in this way, EPICS will query each value thorugh the local network and wait for the response before moving on to the next query, resulting in delayed responses.
The s7nodave library allows records to be assinged to polling groups. All the records in a pollgroup are queried in the same network packet, greatly reducing response lag.
In order to assign an input record to a poll group using the s7nodave library, one must set the SCAN field to "I/O Intr", and the INP field to "@myPLC(PG=[POLLGROUP_NAME]) [PLC_ADDR]". This can be seen in the example below for the PV S7:biI1_5poll.
record(bi, "S7:biI1_5poll")
{
field(SCAN, "I/O Intr")
field(DTYP, "s7nodave")
field(INP, "@myPLC(PG=1s) I1.5")
field(DESC, "S7 PLC I1.5 Binary Input POLLING")
}
Ommiting (PG=[POLLGROUP_NAME]) will assign the PV record to the "default" poll group.
Sequencer Program
The example sequencer program inside this testS7 is a simple state-machine that monitors the value of a PLC port and sets another port to high or low accordingly. This program sequencer can be seen below:
program snctests7
double v;
short light;
assign v to "S7:biQ1_0";
monitor v;
assign light to "S7:boQ0_7";
ss ss1 {
state init {
when (delay(1)) {
printf("snctests7: Startup delay over\n");
printf("snctests7: Going to low\n");
} state low
}
state low {
when (v >= 0.5) {
printf("snctests7: Changing to high %f\n",v);
light = TRUE;
pvPut(light);
} state high
}
state high {
when (v <= 0.5) {
printf("snctests7: Changing to low %f\n",v);
light = FALSE;
pvPut(light);
} state low
}
}
-------- IGNORE --------
Download EPICS Base R3.14.12 or higher: -
- Most recent: http://www.aps.anl.gov/epics/download/base/index.php
- Or: http://www.aps.anl.gov/epics/download/base/baseR3.14.12.4.tar.gz
- Compile EPICS
- Dependencies:
- apt-get install g++
- Follow the Getting Started of http://epics.nsls2.bnl.gov/debian/
-
apt-get install epics-dev build-essential
-
-
- cd /tmp/
-
wget -c http://www.aps.anl.gov/epics/downloa...14.12.4.tar.gz -O - | tar -zx
-
cp -r base-3.14.12.4/ /usr/lib/epics/
-
cd /usr/lib/epics/
-
export EPICS_HOST_ARCH=$(perl startup/EpicsHostArch.pl)
- make clean uninstall
- make
-
- Install Asyn driver
- mkdir /opt/epics
- mkdir /opt/epics/modules
- cd /opt/epics/modules
- wget -c http://www.aps.anl.gov/epics/downloa...syn4-24.tar.gz -O - | tar -zx
- cd asyn4-24
- ech
-