Verificamos os links, mas não conseguimos
Segue o arquivo de log, e as imagens das configuraçoes
02/05/2016 16:05:13.884 (112C) DRIVER Driver name: Driver Modicon Modbus v3.1.29 (IOKitLib v2.0.54)
02/05/2016 16:05:13.885 (112C) DRIVER IOKitLib version 2.0.54 of Feb 22 2016 10:47:34
02/05/2016 16:05:13.885 (112C) DEBUG CModbusHost CREATED
02/05/2016 16:05:13.886 (112C) DRIVER Selected ModbusTCP protocol!
02/05/2016 16:05:13.890 (112C) DRIVER User Types file compiled successfully!
02/05/2016 16:05:13.890 (112C) DRIVER drvStartComm(0,0,0,40016)
02/05/2016 16:05:13.890 (112C) DRIVER Current configuration (76 parameters):
02/05/2016 16:05:13.891 (112C) DRIVER - IO.Ethernet.BackupIP = ‘’
02/05/2016 16:05:13.891 (112C) DRIVER - IO.Ethernet.BackupIP2 = ‘’
02/05/2016 16:05:13.891 (112C) DRIVER - IO.Ethernet.BackupIP3 = ‘’
02/05/2016 16:05:13.891 (112C) DRIVER - IO.Ethernet.ListenIP = ‘’
02/05/2016 16:05:13.891 (112C) DRIVER - IO.Ethernet.MainIP = ‘10.89.72.22’
02/05/2016 16:05:13.891 (112C) DRIVER - IO.Ethernet.MainPort = 502
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Ethernet.PingTimeoutMs = 4000
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Ethernet.PingTries = 1
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Ethernet.Transport = ‘TCP’
02/05/2016 16:05:13.892 (112C) DRIVER - IO.GiveUpTries = 1
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Log.Enable = 1
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Log.Filename = ‘C:\eeLogs\Modbus_%DATE%.log’
02/05/2016 16:05:13.892 (112C) DRIVER - IO.RAS.ATCommand = ‘’
02/05/2016 16:05:13.892 (112C) DRIVER - IO.RecoverEnable = 1
02/05/2016 16:05:13.892 (112C) DRIVER - IO.RecoverPeriodSec = 20
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Serial.Baudrate = 9600
02/05/2016 16:05:13.892 (112C) DRIVER - IO.Serial.DataBits = 8
02/05/2016 16:05:13.893 (112C) DRIVER - IO.Serial.Port = 1
02/05/2016 16:05:13.893 (112C) DRIVER - IO.TAPI.ModemID = 4294967295
02/05/2016 16:05:13.893 (112C) DRIVER - IO.TAPI.PhoneNumber = ‘’
02/05/2016 16:05:13.893 (112C) DRIVER - IO.TimeoutMs = 1000
02/05/2016 16:05:13.893 (112C) DRIVER - IO.Type = ‘Ethernet’
02/05/2016 16:05:13.893 (112C) DRIVER - ModiconModbus.ConfigFile = '[Functions]
Function: 1
Read: 3
Write: 16
Type: word
Size: 2
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
Function: 2
Read: 3
Write: 16
Type: dword
Size: 4
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
Function: 3
Read: 3
Write: 16
Type: int16
Size: 2
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
Function: 4
Read: 3
Write: 16
Type: int32
Size: 4
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
Function: 5
Read: 3
Write: 16
Type: float
Size: 4
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
Function: 6
Read: 1
Write: 15
Type: bit
Size: 0
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
Function: 7
Read: 2
Write: 0
Type: bit
Size: 0
FrameOrder: 0
ByteOrder: 0
WordOrder: 0
DWordOrder: 0
[End]
’
02/05/2016 16:05:13.893 (112C) DRIVER - ModiconModbus.DefaultSlaveAddress = 1
02/05/2016 16:05:13.893 (112C) DRIVER - ModiconModbus.EnableGenSOERegGrouping = 1
02/05/2016 16:05:13.893 (112C) DRIVER - ModiconModbus.MaxPDUSize = 253
02/05/2016 16:05:13.893 (112C) DRIVER - ModiconModbus.ModbusMode = 2
02/05/2016 16:05:13.893 (112C) DRIVER - ModiconModbus.Olderaddr = 1
02/05/2016 16:05:13.894 (112C) DRIVER - ModiconModbus.UserTypesConfigFile = '// USER DEFINED TYPES SAMPLE CONFIG FILE
// The samples below illustrate how to create user defined structs, using the driver built-in types (note the built-in
// types must be entered with the same keywords used in the Data combobox of the operations).
// The new user types can afterwards be used in the same way as the other built-in types in the Data combobox.
/* Sample types entirely commented by default
struct TYPE1 // TYPE 1 - declares struct with elements with no name, and no timestamp
{
int16;
word;
dword;
int32;
}
// TYPE2 declares named elements, and includes a timestamp of GenTime type. The named elements can then be
// loaded to the user application using E3 Tag Browser.
// NOTE: the timestamp value will not be returned on a block element, but rather returned on the timestamp property
// of the block type tag. The order in which the timestamp appears within the structure is related to the order
// in which this field appears within the data area of the received protocol frame (usually the first field).
struct TYPE2
{
timestamp = GenTime; // this time field will be returned in the block’s timestamp field
GenTime timeField; // this time field will be returned in the block’s first element
dword dwordField;
}
struct TYPE3 // this type has a timestamp of type UTC32 and some named elements
{
DefaultAddress = 0x101;
timestamp = UTC32;
float Va;
float Vb;
float Vc;
float Ia;
float Ib;
float Ic;
}
*/’
02/05/2016 16:05:13.894 (112C) DRIVER - ModiconModbus.WaitSilenceOnError = 1
02/05/2016 16:05:13.894 (112C) DRIVER - 46 parameters with value = 0 were omitted
02/05/2016 16:05:13.897 (10A8) IOKIT INITIALIZING…
02/05/2016 16:05:13.898 (10A8) SOCKET Winsock initialized: version=2.2, highVersion=2.2
02/05/2016 16:05:13.898 (10A8) IOKIT INITIALIZED!
02/05/2016 16:05:13.898 (1390) TAG Tag(1.1.0.0[16]).Validate = SUCCESS (type=10;flags=9)
02/05/2016 16:05:13.899 (1390) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:13.900 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:13.900 (10A8) IOKIT Request handler enabled
02/05/2016 16:05:13.900 (10A8) IOKIT CONNECTING…
02/05/2016 16:05:13.900 (10A8) SOCKET connecting socket to ‘10.89.72.22’ on port 502…
02/05/2016 16:05:13.926 (10A8) SOCKET socket connected to ‘10.89.72.22’ on port 502 (local port 49388)!
02/05/2016 16:05:13.926 (10A8) IOKIT CONNECTED!
02/05/2016 16:05:13.927 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:13.927 (112C) TAG <== (0.027) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:14.927 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:14.927 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:14.927 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:15.928 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:15.928 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:15.928 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:16.928 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:16.928 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:16.928 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:17.928 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:17.928 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:17.928 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:18.928 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:18.928 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:18.928 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:19.931 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:19.931 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:19.931 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:20.931 (112C) SUPERBLOCK Tag(1.1.0.0[16]).Normalize = ERROR (80070057)
02/05/2016 16:05:20.931 (112C) DRIVER ERROR: invalid register address = 0 (address cannot be zero when using ‘elements addressed from 1’)!
02/05/2016 16:05:20.931 (112C) TAG <== (0.000) Tag(1.1.0.0[16]).ReadBlock = ERROR (hr=80070057)
02/05/2016 16:05:21.886 (112C) DRIVER drvStopComm(0,0,0,40016)
02/05/2016 16:05:21.886 (112C) IOKIT Stopping physical layer thread…
02/05/2016 16:05:21.887 (10A8) SOCKET socket closed
02/05/2016 16:05:21.887 (10A8) IOKIT TERMINATING…
02/05/2016 16:05:21.888 (10A8) IOKIT TERMINATED! (0 bytes sent, 0 bytes received)
02/05/2016 16:05:21.888 (10A8) IOKIT Request handler disabled
02/05/2016 16:05:21.888 (112C) IOKIT Waiting for termination of physical layer thread…
02/05/2016 16:05:21.888 (112C) IOKIT Physical layer thread stopped!
02/05/2016 16:05:21.888 (112C) DEBUG CModbusHost DELETED