Skip to content

Commit 10b8c1f

Browse files
committed
update EtherNet/IP firmware
1 parent c5888e7 commit 10b8c1f

6 files changed

+6
-5
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
1111
org.label-schema.vcs-ref=$VCS_REF
1212

1313
#version
14-
ENV HILSCHERNETPI_NETX_PROGRAMMING_EXAMPLES_VERSION 1.1.0
14+
ENV HILSCHERNETPI_NETX_PROGRAMMING_EXAMPLES_VERSION 1.1.1
1515

1616
#labeling
1717
LABEL maintainer="netpi@hilscher.com" \

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Basic include files needed for the compilation process will be installed into fo
133133
To install a firmware package move to the folder `firmwares` and call
134134

135135
* `dpkg -i netx-docker-pi-pns-3.14.0.5.deb` for PROFINET IO device firmware or
136-
* `dpkg -i netx-docker-pi-eis-2.12.5.0.deb` for EtherNet/IP adapter firmware or
136+
* `dpkg -i netx-docker-pi-eis-2.14.0.2.deb` for EtherNet/IP adapter firmware or
137137
* `dpkg -i netx-docker-pi-ecs-4.7.0.2.deb` for EtherCAT slave firmware or
138138
* `dpkg -i netx-docker-pi-pls-3.3.0.0.deb` for POWERLINK slave firmware or
139139
* `dpkg -i netx-docker-pi-omb-2.6.0.6.deb` for Modbus/TCP server firmware
@@ -211,7 +211,7 @@ A netX firmware has a common part that is behaving the same for all firmwares an
211211
The protocol specific dependencies are described in the manuals
212212

213213
* `PROFINET IO-Device V3.14 Protocol API 19 EN.pdf` for PROFINET IO device
214-
* `EtherNetIP_Adapter_Protocol_API_19_EN.pdf` for EtherNet/IP adapter
214+
* `EtherNetIP_Adapter_Protocol_API_20_EN.pdf` for EtherNet/IP adapter
215215
* `EtherCAT Slave V4 Protocol API 09 EN.pdf` for EtherCAT slave
216216
* `POWERLINK Slave V4 Protocol API 09 EN.pdf` for POWERLINK slave
217217
* `OpenModbusTCP Protocol API 10 EN.pdf` for Modbus TCP server

examples/sources/EIS_simpleConfig.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
2828
Version Date Author Description
2929
----------------------------------------------------------------------------------
30+
12 28.05.2020 AB - changed to latest firmware
3031
11 28.05.2020 AB - changed to latest driver
3132
10 08.04.2019 PST - example simplified
3233
9 22.06.2018 AB - add function prototypes to prevent compiler warnings
@@ -514,8 +515,8 @@ int main(int argc, char* argv[])
514515
while( (lRet = stat("/opt/cifx/deviceconfig/FW/channel0/R160H000.nxf",&buffer)) != 0) {
515516
printf("\nThe EtherNet/IP adapter firmware has not been found installed.\n");
516517
printf("Installing the firmware now.\n");
517-
if( system("dpkg -i ./firmwares/netx-docker-pi-eis-2.12.5.0.deb") == -1) {
518-
printf("Installing the firmware failed. Check if firmware 'netx-docker-pi-eis-2.12.5.0.deb' package is located in folder './firmwares'(relative path to demo app).\n");
518+
if( system("dpkg -i ./firmwares/netx-docker-pi-eis-2.14.0.2.deb") == -1) {
519+
printf("Installing the firmware failed. Check if firmware 'netx-docker-pi-eis-2.14.0.2.deb' package is located in folder './firmwares'(relative path to demo app).\n");
519520
return 0;
520521
}
521522
}
-282 KB
Binary file not shown.
283 KB
Binary file not shown.

0 commit comments

Comments
 (0)