RMP Motion Controller
10.7.0
APIs
, concepts, guides, and more
Community
Support
Contact
◆
HardwarePosLimitActionSet()
void HardwarePosLimitActionSet
(
RSIAction
action
)
Description:
HardwarePosLimitActionSet sets the action that will occur when the Hardware Positive Limit Event triggers.
Parameters
action
Action taken on Positive Limit trigger. A
RSIAction
value.
Note:
Available Actions are
Abort()
,
EStop()
,
Stop()
, None,
EStopAbort()
, and
EStopModify()
Part of the
Limits and Action Configuration
method group.
Sample Code:
Axis: Configuration
bool
ACTIVE_HIGH =
true
;
bool
ACTIVE_LOW =
false
;
double
HW_POS_DURATION_TIME = 0.01;
// Positive limit duration (in seconds)
double
HW_NEG_DURATION_TIME = 0.01;
// Negative limit duration (in seconds)
// set pos & neg limits
axis.
HardwarePosLimitActionSet
(
RSIAction
.RSIActionE_STOP);
axis.
HardwarePosLimitTriggerStateSet
(ACTIVE_HIGH);
axis.
HardwarePosLimitDurationSet
(HW_POS_DURATION_TIME);
axis.
HardwareNegLimitActionSet
(
RSIAction
.RSIActionE_STOP);
axis.
HardwareNegLimitTriggerStateSet
(ACTIVE_LOW);
axis.
HardwareNegLimitDurationSet
(HW_NEG_DURATION_TIME);
// get pos & neg limits
RSIAction
hPosLimAct = axis.
HardwarePosLimitActionGet
();
bool
hPosLimTrigState = axis.
HardwarePosLimitTriggerStateGet
();
double
hPosLimDur = axis.
HardwarePosLimitDurationGet
();
RSIAction
hNegLimAct = axis.
HardwareNegLimitActionGet
();
bool
hNegLimTrigState = axis.
HardwareNegLimitTriggerStateGet
();
double
hNegLimDur = axis.
HardwareNegLimitDurationGet
();
RapidSetup:
Go to axis screen->Limits & Actions. In image below, HardwarePosLimitActionSet sets the action type shown in the Positive (+) Hardware box. It is currently set to E_STOP.
See also
HardwarePosLimitActionGet
Examples
AxisConfiguration.cpp
,
HardwareLimits.cpp
,
PhantomAxis.cpp
,
SampleAppsHelper.h
,
axis-config-hardware-limits.cs
, and
axis-config-phantom-axis.cs
.
RSI
RapidCode
Axis
Generated by
1.10.0