APIs, concepts, guides, and more
MultiaxisMotion.cpp
1
27#include "rsi.h" // Import our RapidCode Library.
28#include "SampleAppsHelper.h" // Import our SampleApp helper functions.
29#include <conio.h>
30#include "SampleApps.h"
31
32using namespace RSI::RapidCode; // Import the RapidCode namespace
33
34/*This function will print all the results to the screen*/
36void PrintResult(Axis* axisX, Axis* axisY)
37{
38 printf("Motion Done \n AxisX position-> Commanded: %f \tActual: %f\n",
39 axisX->CommandPositionGet(),
40 axisX->ActualPositionGet());
41
42 printf(" AxisY position-> Commanded: %f \tActual: %f\n",
43 axisY->CommandPositionGet(),
44 axisY->ActualPositionGet());
45}
46
48int MultiaxisMotion::Run()
49{
51 /* CONSTANTS */
52 // *NOTICE* The following constants must be configured before attempting to run with hardware.
53
54 // Axis configuration parameters
55 const int AXIS_COUNT = 2;
56 const int AXIS_X = 0;
57 const int AXIS_Y = 1;
58
59 const int MOTION_COUNT = 1;
60
61 const double USER_UNITS = 1048576;
62
63 // Motion parameters
64 const double START_POSITION[AXIS_COUNT] = { 0, 0 };
65 const double END_POSITION[AXIS_COUNT] = { 1, 2 };
66 const double VELOCITY[AXIS_COUNT] = { 1, 2 };
67 const double ACCELERATION[AXIS_COUNT] = { 10, 20 };
68 const double DECELERATION[AXIS_COUNT] = { 10, 20 };
69 const double JERK_PERCENTAGE[AXIS_COUNT] = { 0, 0 };
70
71 // To run with hardware, set the USE_HARDWARE flag to true AFTER you have configured the parameters above and taken proper safety precautions.
72 USE_HARDWARE = false;
73
74 /* SAMPLE APP BODY */
75
76 // Create and initialize RsiController class
79
80 // Setup the controller for the appropriate hardware configuration.
81 if (USE_HARDWARE)
82 {
84 }
85 else
86 {
87 SampleAppsHelper::SetupControllerForPhantoms(controller, AXIS_COUNT, { AXIS_X, AXIS_Y });
88 }
89
90 try
91 {
92 // enable one MotionSupervisor for the MultiAxis
93 controller->MotionCountSet(controller->AxisCountGet() + 1);
94
95 // Get Axis X and Y respectively.
96 Axis* axisX = controller->AxisGet(AXIS_X);
98 axisX->UserUnitsSet(USER_UNITS);
99 axisX->PositionSet(0);
101
102 Axis* axisY = controller->AxisGet(AXIS_Y);
104 axisY->UserUnitsSet(USER_UNITS);
105 axisY->PositionSet(0);
107
108 // Initialize a MultiAxis, using the last MotionSupervisor.
109 MultiAxis* multiAxisXY = controller->MultiAxisGet(controller->MotionCountGet() - 1);
111 multiAxisXY->AxisAdd(axisX);
112 multiAxisXY->AxisAdd(axisY);
113
114 // make sure all axes are enabled and ready
115 multiAxisXY->Abort();
116 multiAxisXY->ClearFaults();
117 multiAxisXY->AmpEnableSet(true);
118
119 // Set SYNC_START motion attribute mask.
121 printf("\nMotionStart...");
122
123 // Commanding motion using Syncpptart to start motion for both the axis at the same time.
124 multiAxisXY->MoveSCurve(END_POSITION, VELOCITY, ACCELERATION, DECELERATION, JERK_PERCENTAGE);
125 multiAxisXY->MotionDoneWait();
126
127 // Calling function created on top.
128 PrintResult(axisX, axisY);
129
130 // Set SYNC_END motion attribute mask
132 printf("\nMotionStart...");
133
134 // Commanding motion using SyncEnd to end motion for both the axis at the same time.
135 multiAxisXY->MoveSCurve(START_POSITION, VELOCITY, ACCELERATION, DECELERATION, JERK_PERCENTAGE);
136 multiAxisXY->MotionDoneWait();
137
138 // Calling function created on top
139 PrintResult(axisX, axisY);
140
141 printf("\nTrapezoidal Motion Done\n");
142
143 // Disable the all the axes
144 multiAxisXY->AmpEnableSet(false);
145 }
146 catch (RsiError const& err)
147 {
148 printf("\n%s\n", err.text);
149 return -1;
150 }
151 controller->Delete();
152 return 0;
154}
double CommandPositionGet()
Get the current command position.
void UserUnitsSet(double countsPerUserUnit)
Sets the number of counts per User Unit.
void ErrorLimitActionSet(RSIAction action)
Set the action that will occur when the Error Limit Event triggers.
void PositionSet(double position)
Set the Command and Actual positions.
double ActualPositionGet()
Get the current actual position.
Represents a single axis of motion control. This class provides an interface for commanding motion,...
Definition rsi.h:5518
Axis * AxisGet(int32_t axisNumber)
AxisGet returns a pointer to an Axis object and initializes its internals.
void MotionCountSet(int32_t motionCount)
Set the number of processed Motion Supervisors in the controller.
static MotionController * CreateFromSoftware()
Initialize and start the RMP EtherCAT controller.
void Delete(void)
Delete the MotionController and all its objects.
MultiAxis * MultiAxisGet(int32_t motionSupervisorNumber)
MultiAxisGet returns a pointer to a MultiAxis object and initializes its internals.
int32_t AxisCountGet()
Get the number of axes processing.
int32_t MotionCountGet()
Get the number of Motion Supervisors available in the firmware.
Represents the RMP soft motion controller. This class provides an interface to general controller con...
Definition rsi.h:795
void MoveSCurve(const double *const position, const double *const vel, const double *const accel, const double *const decel, const double *const jerkPct)
Point-to-point S-Curve Move.
void AxisAdd(Axis *axis)
Add an Axis to a MultiAxis group.
Represents multiple axes of motion control, allows you to map two or more Axis objects together for e...
Definition rsi.h:10213
void ClearFaults()
Clear all faults for an Axis or MultiAxis.
void AmpEnableSet(bool enable)
Enable all amplifiers.
void Abort()
Abort an axis.
int32_t MotionDoneWait()
Waits for a move to complete.
void MotionAttributeMaskOnSet(RSIMotionAttrMask maskOn)
Turn on a particular motion attribute mask.
Represents the error details thrown as an exception by all RapidCode classes. This class contains an ...
Definition rsi.h:106
@ RSIActionNONE
None - do not perform any action.
@ RSIMotionAttrMaskSYNC_START
Synchronize start of motion for all axes.
@ RSIMotionAttrMaskSYNC_END
Synchronize end of motion for all axes.
static void SetupControllerForHardware(MotionController *controller)
Sets up the controller for hardware use by resetting it and starting the network.
static void CheckErrors(RapidCodeObject *rsiObject)
Checks for errors in the given RapidCodeObject and throws an exception if any non-warning errors are ...
static void SetupControllerForPhantoms(MotionController *controller, int axisCount, std::vector< int > axisNums)
Sets up the controller for phantom axes, including configuring specified axes as phantom.