-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacscontroller.cpp
425 lines (386 loc) · 9.65 KB
/
acscontroller.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
#include "acscontroller.h"
#include <conio.h>
#include <stdio.h>
#include <string>
#include <time.h>
#include <cstdio>
#include <iostream>
#include <ostream>
#include <cstdio>
#include <cstdlib>
#define DEFAULT_IP "10.0.0.100"
ACS_Controller *ACS_Controller::ControllerPtr = nullptr;
ACS_Controller *ACS_Controller::ACS_getInstance()
{
if (ControllerPtr == nullptr)
{
ControllerPtr = new ACS_Controller(); // singleton pattern
return ControllerPtr;
}
else
{
return ControllerPtr;
}
};
ACS_Controller::ACS_Controller()
{
printf("ACS_Controller init.\n");
};
// methods
void ACS_Controller::ErrorsHandler(const char *ErrorMessage, BOOL fCloseComm, BOOL fStopMotors)
{
printf(ErrorMessage);
printf("Press any key to exit.\n");
if (fCloseComm)
acsc_CloseComm(hComm);
if (fStopMotors)
EmergencyStop(hComm);
_getch();
}
void ACS_Controller::EmergencyStop(HANDLE Handle)
{
printf("Emergency disable of X axis.\n");
acsc_Disable(Handle, ACSC_AXIS_X, ACSC_ASYNCHRONOUS);
printf("Emergency disable of Y axis.\n");
acsc_Disable(Handle, ACSC_AXIS_Y, ACSC_ASYNCHRONOUS);
printf("Emergency disable of A axis.\n");
acsc_Disable(Handle, ACSC_AXIS_A, ACSC_ASYNCHRONOUS);
}
int ACS_Controller::GetErrorDisconnect(HANDLE Handle)
{
int Error;
Error = acsc_GetLastError();
printf("Last system error: %d\n", Error);
acsc_CloseComm(Handle);
printf("Communication is closed.\n");
return Error;
}
HANDLE ACS_Controller::ConnectACS()
{
char ipAddress[] = DEFAULT_IP;
hComm = acsc_OpenCommEthernet(ipAddress, ACSC_SOCKET_STREAM_PORT);
if (hComm == ACSC_INVALID)
{
ErrorsHandler("Error while opening communication.\n", TRUE, TRUE);
exit(EXIT_FAILURE);
}
printf("Communication with ACS controller hardware was established successfully.\n");
return hComm;
}
HANDLE ACS_Controller::ConnectSimulatorACS()
{
char ipAddress[] = DEFAULT_IP;
hComm = acsc_OpenCommSimulator();
if (hComm == ACSC_INVALID)
{
ErrorsHandler("Error while opening communication.\n", TRUE, TRUE);
exit(EXIT_FAILURE);
}
printf("Communication with ACS simulation hardware was established successfully.\n");
return hComm;
}
ACSC_CONNECTION_INFO ACS_Controller::GetConnInfo(HANDLE Handle)
{
ACSC_CONNECTION_INFO ConnectionInfo;
acsc_GetConnectionInfo(Handle, &ConnectionInfo);
printf("Got connection info.\n");
return ConnectionInfo;
}
int ACS_Controller::StopBufferProgram(HANDLE Handle, int Buffer)
{
if (!acsc_StopBuffer(Handle, Buffer, ACSC_SYNCHRONOUS))
{
ErrorsHandler("Error trying to stop program.\n", TRUE, TRUE);
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Stopped program.\n");
return 0;
}
int ACS_Controller::RunBufferProgram(HANDLE Handle, int Buffer, char *Label)
{
if (!acsc_RunBuffer(Handle, Buffer, Label, ACSC_SYNCHRONOUS))
{
ErrorsHandler("Error trying to run program.\n", TRUE, TRUE);
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Ran buffer program.\n");
return 0;
}
int ACS_Controller::DisconnectACS(HANDLE Handle)
{
if (!acsc_CloseComm(Handle))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Communication is closed.\n");
return 0;
}
int ACS_Controller::GetFault(HANDLE Handle, int Axis)
{
int Fault;
if (!acsc_GetFault(Handle, Axis, &Fault, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
else
{
printf("Fault: %d\n", Fault);
if (Fault & ACSC_SAFETY_RL)
{
printf("Right Limit fault\n");
}
if (Fault & ACSC_SAFETY_LL)
{
printf("Left Limit fault\n");
}
}
printf("Requesting fault status.\n");
return Fault;
}
int ACS_Controller::ClearFault(HANDLE Handle, int Axis)
{
if (!acsc_FaultClear(Handle, Axis, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Fault cleared on axis %d.\n", Axis);
return 0;
}
int ACS_Controller::Enable(HANDLE Handle, int Axis)
{
if (!acsc_Enable(Handle, Axis, ACSC_SYNCHRONOUS))
{
ErrorsHandler("Stop program error.\n", TRUE, TRUE);
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Enabled axis %d.\n", Axis);
return 0;
}
int ACS_Controller::Disable(HANDLE Handle, int Axis)
{
if (!acsc_Disable(Handle, Axis, ACSC_SYNCHRONOUS))
{
ErrorsHandler("Stop program error.\n", TRUE, TRUE);
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Disabled axis %d.\n", Axis);
return 0;
}
int ACS_Controller::DisableFault(HANDLE Handle, int Axis)
{
if (!acsc_DisableFault(Handle, Axis, ACSC_SAFETY_LL, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
if (!acsc_DisableFault(Handle, Axis, ACSC_SAFETY_RL, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Faults disabled.\n");
return 0;
}
int ACS_Controller::CommuteExt(HANDLE Handle, int Axis)
{
if (!acsc_CommutExt(Handle, Axis, ACSC_NONE, ACSC_NONE, ACSC_NONE, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Commuted axis %d.\n", Axis);
return 0;
}
double ACS_Controller::GetPosition(HANDLE Handle, int Axis)
{
double FPOS;
if (!acsc_GetFPosition(Handle, Axis, &FPOS, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Position of encoder readout: %f\n", FPOS);
return FPOS;
}
double ACS_Controller::GetVelocity(HANDLE Handle, int Axis)
{
double Velocity;
if (!acsc_GetVelocity(Handle, Axis, &Velocity, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Velocity of axis readout: %f\n", Velocity);
return Velocity;
}
double ACS_Controller::GetAcceleration(HANDLE Handle, int Axis)
{
double Acceleration;
if (!acsc_GetAcceleration(Handle, Axis, &Acceleration, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
printf("Acceleration of axis readout: %f\n", Acceleration);
return Acceleration;
}
int ACS_Controller::SetAcceleration(HANDLE Handle, int Axis, double Acceleration)
{
if (!acsc_SetAcceleration(Handle, Axis, Acceleration, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::SetDeceleration(HANDLE Handle, int Axis, double Deceleration)
{
if (!acsc_SetDeceleration(Handle, Axis, Deceleration, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::SetKillDeceleration(HANDLE Handle, int Axis, double KillDeceleration)
{
if (!acsc_SetKillDeceleration(Handle, Axis, KillDeceleration, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::SetVelocity(HANDLE Handle, int Axis, double Velocity)
{
if (!acsc_SetVelocity(Handle, Axis, Velocity, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::ToPointM(HANDLE Handle, double shiftx_mm, double shifty_mm, double shifta_mm)
{
int Axes[] = {ACSC_AXIS_X, ACSC_AXIS_Y, ACSC_AXIS_A, -1};
double Target[] = {shiftx_mm, shifty_mm, shifta_mm};
if (!acsc_ToPointM(Handle, ACSC_AMF_RELATIVE, Axes, Target, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::AxisMovement_timeout_ms(HANDLE Handle, int Axis, int Timeout)
{
if (!acsc_WaitMotionEnd(Handle, Axis, Timeout))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
// not tested
int ACS_Controller::ExtToPointM_mm(HANDLE Handle, double abs_point_mm, double vel, double endvel)
{
int Axes[] = {ACSC_AXIS_X, ACSC_AXIS_Y, ACSC_AXIS_A, -1};
double Target[] = {abs_point_mm, abs_point_mm, abs_point_mm};
if (!acsc_ExtToPointM(Handle, ACSC_AMF_VELOCITY | ACSC_AMF_ENDVELOCITY, Axes, Target, vel, endvel, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
// not tested
int ACS_Controller::SmoothPointToPointMotion_mm(HANDLE Handle, double abs_point_mm, double vel)
{
int Axes[] = {ACSC_AXIS_X, ACSC_AXIS_Y, ACSC_AXIS_A, -1};
double Target[] = {abs_point_mm, abs_point_mm, abs_point_mm};
if (!acsc_SmoothPointToPointMotion(Handle, ACSC_AMF_ENVELOPE, Axes, Target, vel, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
// not tested
int ACS_Controller::TrackAxisMotion(HANDLE Handle, int Axis)
{
if (!acsc_Track(Handle, ACSC_AMF_WAIT, Axis, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
// not tested
int ACS_Controller::AxisGoMotion(HANDLE Handle, int Axis)
{
if (!acsc_Go(Handle, Axis, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::HaltAxes(HANDLE Handle)
{
if (!acsc_KillAll(Handle, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::WriteInternalVar(HANDLE Handle, char *Label, double val)
{
if (!acsc_WriteReal(Handle, ACSC_NONE, Label, ACSC_NONE, ACSC_NONE, ACSC_NONE, ACSC_NONE, &val, ACSC_SYNCHRONOUS))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}
int ACS_Controller::SetPosition(HANDLE Handle, int Axis, double FeedbackPosition)
{
if (!acsc_SetFPosition(Handle, Axis, FeedbackPosition, NULL))
{
int Error;
Error = GetErrorDisconnect(Handle);
return Error;
}
return 0;
}