FP_ETHERNETIP_GET_STATE_TABLE_ERROR

Find all nodes with cyclic communication errors

This FP instruction reads the node number table to find all nodes with cyclic communication errors and stores the values in the output variable of the type FP_ETHERNETIP_STATE_TABLE_DUT.

Parameters

Output

d_dutStateTable (FP_ETHERNETIP_STATE_TABLE_DUT)

Destination to which the data is written

Error flags

sys_bIsOperationErrorHold (turns to TRUE and remains TRUE)
  • if the read area is outside the permissible range

  • if the instruction is executed in an interrupt program

sys_bIsOperationErrorNonHold (turns to TRUE for one scan)
  • if the read area is outside the permissible range

  • if the instruction is executed in an interrupt program

Example

POU header

All input and output variables used for programming this function have been declared in the POU header. The same POU header is used for all programming languages.

	VAR
		bEnable: BOOL:=FALSE;
		dutNodes_ErrorNodeTable: FP_ETHERNETIP_STATE_TABLE_DUT;
	END_VAR

POU body

When the variable bEnable is set to TRUE, the function is executed.

LD body

BODY
    WORKSPACE
        NETWORK_LIST_TYPE := NWTYPELD ;
        ACTIVE_NETWORK := 0 ;
    END_WORKSPACE
    NET_WORK
        NETWORK_TYPE := NWTYPELD ;
        NETWORK_LABEL :=  ;
        NETWORK_TITLE :=  ;
        NETWORK_HEIGHT := 5 ;
        NETWORK_BODY
B(B_VAROUT,,dutNodes_ErrorNodeTable,29,2,31,4,);
B(B_CONTACT,,bEnable,4,1,6,3,);
B(B_F,FP_ETHERNETIP_GET_STATE_TABLE_ERROR!,,8,0,29,4,,?DEN?AENO?Cd_dutStateTable);
L(1,2,4,2);
L(6,2,8,2);
L(1,0,1,5);
        END_NETWORK_BODY
    END_NET_WORK
END_BODY

ST body

IF (bEnable) then
    FP_ETHERNETIP_GET_STATE_TABLE_ERROR(d_dutStateTable => dutNodes_ErrorNodeTable);
END_IF;

Modified on: 2022-03-02Feedback on this pagePanasonic hotline