Set the Mask for Limit Signal

Example) Set mask for the limit signal of axis number 1.
  ・Set the deceleration stop limit to invalid (mask)

■ C

long Ret;
short Id;

// Disable the deceleration stop limit.
Ret = SmcWSetLimitMask( Id, 1, 1, 1 );
 

■ Visual Basic

Dim Ret   As Integer
Dim Id   As Short

' Disable the deceleration stop limit.
Ret = SmcWSetLimitMask( Id, 1, 1, 1 )
 

■ C#

int Ret;
short Id;

// Disable the deceleration stop limit.
Ret = Smc.WSetLimitMask( Id, 1, 1, 1 );
 

■ Python

Ret = ctypes.c_long()
Id = ctypes.c_short()

# Disable the deceleration stop limit.
Ret.value = csmc.SmcWSetLimitMask( Id, 1, 1, 1 )