DTSetNTPSync

 Function BlockClosed A function block groups an algorithm and a set of private data. It has inputs and outputs. - Set the NTPClosed "Network Time Protocol" A networking protocol for clock synchronization between computer systems. The PCMM2G can be configured to synchronize with public NTP time servers over the internet or a local NTP time server for networks that are not connected to the internet. synchronization enable state.

This function block is specific for PCMM2G only.

Inputs

Input

Data Type

Range

Unit

Default

Description

Execute

BOOL

TRUE, FALSE

N/A

No default

If TRUE, request to set the synchronization enable state.

SynchEn

BOOL

TRUE, FALSE

N/A

No default

  • TRUE = enable NTP synchronization.
  • FALSE = disable NTP synchronization.

Outputs

Output

Data Type

Range

Unit

Description

Done

BOOL

TRUE, FALSE

N/A

If TRUE, the command completed successfully.

Error

BOOL

TRUE, FALSE

N/A

If TRUE, an error has occurred.

ErrorID

DINT

No range

N/A

Indicates the error if the Error output is set to TRUE.

Error Codes

  • 23 = Internal error. See controller log for details.
  • 15000 = Controller type does not support this function block.

Remarks

None

FBD Language

FFLD Language

IL Language

Not available.

ST Language

// enable NTP server synchronization
Inst_DTSetNTPSync( bSetNTPSync, bNTPSyncEnable );
if Inst_DTSetNTPSync.Done then
   bSetNTPSync := false;

   bError := Inst_DTSetNTPSync.Error;
   ErrorID := Inst_DTSetNTPSync.ErrorID;
end_if;

See Also