-
Notifications
You must be signed in to change notification settings - Fork 1
/
Wrapper.cpp
677 lines (547 loc) · 18.5 KB
/
Wrapper.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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
/// @file
/// Implementation of API functions that are exported to the API DLL
#include "Wrapper.h"
DLLEXPORT SISProtocol * DLLCALLCONV init()
{
SISProtocol * protocol = new SISProtocol();
return protocol;
}
DLLEXPORT int32_t DLLCALLCONV open(SISProtocol* ID_ref, const wchar_t* ID_comport, uint32_t ID_combaudrate, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
ID_ref->open(ID_comport);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_OpenByCOM);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_OpenByCOM);
}
}
DLLEXPORT int32_t DLLCALLCONV close(SISProtocol* ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
ID_ref->close();
delete ID_ref;
ID_ref = NULL;
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_Close);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_Close);
}
}
DLLEXPORT int32_t DLLCALLCONV sequencer_activate(SISProtocol * ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
// Change mode
change_opmode(ID_ref, DRIVEMODE_SEQUENCER);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqInit);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqInit);
}
}
DLLEXPORT int32_t DLLCALLCONV sequencer_init(SISProtocol * ID_ref, double_t ID_max_accel, double_t ID_max_jerk, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
// Set required units (preferred scaling, rotary scaling, [rpm])
change_units(ID_ref);
// Max Acceleration (S-0-0138)
ID_ref->write_parameter(TGM::SercosParamS, 138, ID_max_accel);
// Max Jerk (S-0-0349)
ID_ref->write_parameter(TGM::SercosParamS, 349, ID_max_jerk);
// SPS Global Register G1 (P-0-1371) - Reset Read Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1371, static_cast<uint32_t>(0));
// SPS Global Register G2 (P-0-1372) - Reset Sequencer Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1372, static_cast<uint32_t>(0));
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqInit);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqInit);
}
}
DLLEXPORT int32_t DLLCALLCONV sequencer_write(SISProtocol * ID_ref, double_t ID_speeds[], double_t ID_accels[], double_t ID_jerks[], uint32_t ID_delays[], const uint16_t ID_set_length, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
ID_ref->write_listelm(TGM::SercosParamP, 4019, 1, static_cast<uint32_t>(0b10000100));
for (uint16_t i = 0; i < ID_set_length; i++)
{
// Speed in min^-1 (P-0-4007)
ID_ref->write_listelm(TGM::SercosParamP, 4007, i + 1, abs(ID_speeds[i]));
// Acceleration in rad/s^2 (P-0-4008)
ID_ref->write_listelm(TGM::SercosParamP, 4008, i + 1, ID_accels[i]);
// Deceleration in rad/s^2 (P-0-4063)
ID_ref->write_listelm(TGM::SercosParamP, 4063, i + 1, ID_accels[i]);
// Jerk in rad/s^3 (P-0-4009)
ID_ref->write_listelm(TGM::SercosParamP, 4009, i + 1, ID_jerks[i]);
// Mode (P-0-4019)
ID_ref->write_listelm(TGM::SercosParamP, 4019, i + 2, static_cast<uint32_t>(stde::sgn<double_t>(ID_speeds[i]) == 1 ? 0b10000100 : 0b10001000));
// Pos (P-0-4006)
ID_ref->write_listelm(TGM::SercosParamP, 4006, i + 1, static_cast<uint64_t>(0));
// Wait (P-0-4018)
ID_ref->write_listelm(TGM::SercosParamP, 4018, i + 1, static_cast<uint64_t>(0));
// Delay (P-0-4063)
ID_ref->write_listelm(TGM::SercosParamP, 4063, i + 1, static_cast<uint64_t>(0));
// Timers in cs (P-0-1389)
ID_ref->write_listelm(TGM::SercosParamP, 1389, i + 1, ID_delays[i]);
}
// Time triggers for cam (P-0-1370)
ID_ref->write_parameter(TGM::SercosParamP, 1370, static_cast<uint32_t>(ID_set_length));
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
}
DLLEXPORT int32_t DLLCALLCONV sequencer_softtrigger(SISProtocol * ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
uint32_t qb0stat;
int iterations;
// FEED DATA:
// SPS Global Register G1 (P-0-1371) - Reset Read Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1371, static_cast<uint64_t>(0));
// SPS Global Register G2 (P-0-1372) - Reset Sequencer Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1372, static_cast<uint64_t>(0));
// READ CUSTOM DATA ...
iterations = 0;
do
{
// Check status (P-0-1410)
ID_ref->read_parameter(TGM::SercosParamP, 1410, qb0stat);
if (iterations > 300) return set_error(ID_err, "RESULT_READ_OK was not set. Input parameters cannot be accepted.", Err_Block_SeqWrite);
} while (qb0stat & 0b100000 >> 5);
// SPS Global Register G1 (P-0-1371) - Set Read Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1371, static_cast<uint64_t>(1));
// TRIGGER:
// SPS Global Register G2 (P-0-1372) - Reset Sequencer Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1372, static_cast<uint64_t>(0));
// SPS Global Register G2 (P-0-1372) - Set Sequencer Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1372, static_cast<uint64_t>(1));
iterations = 0;
do
{
// Check status (P-0-1410)
ID_ref->read_parameter(TGM::SercosParamP, 1410, qb0stat);
if (iterations > 300) return set_error(ID_err, "bDriveStarted was not set. Input parameters cannot be accepted.", Err_Block_SeqWrite);
} while (qb0stat & 0b1000 >> 3);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
}
DLLEXPORT int32_t DLLCALLCONV sequencer_hardtrigger(SISProtocol * ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
uint32_t qb0stat;
// FEED DATA:
// SPS Global Register G1 (P-0-1371) - Reset Read Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1371, static_cast<uint64_t>(0));
// SPS Global Register G2 (P-0-1372) - Reset Sequencer Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1372, static_cast<uint64_t>(0));
/// READ CUSTOM DATA
// SPS Global Register G1 (P-0-1371) - Set Read Trigger
ID_ref->write_parameter(TGM::SercosParamP, 1371, static_cast<uint64_t>(1));
// Check status (P-0-1410)
ID_ref->read_parameter(TGM::SercosParamP, 1410, qb0stat); // TODO: Check RESULT_READ_OK bit (0b100000)
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
}
DLLEXPORT int32_t DLLCALLCONV sequencer_getstatus(SISProtocol * ID_ref, uint16_t * ID_status, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
uint32_t plc_status;
// PLC register / Status value (P-0-1410)
ID_ref->read_parameter(TGM::SercosParamP, 1410, plc_status);
*ID_status = static_cast<uint16_t>(plc_status & 0xFFFF);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_SeqWrite);
}
}
DLLEXPORT int32_t DLLCALLCONV speedcontrol_activate(SISProtocol * ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
// Change mode
change_opmode(ID_ref, DRIVEMODE_SPEEDCONTROL);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_VelCInit);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_VelCInit);
}
}
DLLEXPORT int32_t DLLCALLCONV speedcontrol_init(SISProtocol * ID_ref, double_t ID_max_accel, double_t ID_max_jerk, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
// Set required units (preferred scaling, rotary scaling, [rpm])
change_units(ID_ref);
// Max Acceleration (S-0-0138)
ID_ref->write_parameter(TGM::SercosParamS, 138, ID_max_accel);
// Max Jerk (S-0-0349)
ID_ref->write_parameter(TGM::SercosParamS, 349, ID_max_jerk);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_VelCInit);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_VelCInit);
}
}
DLLEXPORT int32_t DLLCALLCONV speedcontrol_write(SISProtocol * ID_ref, double_t ID_speed, double_t ID_accel, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
// Rotation direction - Positive ID_speed: Clockwise rotation, Negative ID_speed: Counter-clockwise rotation
uint32_t rotmode = static_cast<uint32_t>((stde::sgn<double_t>(ID_speed) == 1 ? 0 : 1) << 10);
// Control Mode (P-0-1200)
ID_ref->write_parameter(TGM::SercosParamP, 1200, rotmode);
// Acceleration in rad/s^2 (P-0-1203)
ID_ref->write_parameter(TGM::SercosParamP, 1203, ID_accel);
// Speed in rpm (S-0-0036)
ID_ref->write_parameter(TGM::SercosParamS, 36, abs(ID_speed));
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_VelCWrite);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_VelCWrite);
}
}
DLLEXPORT int32_t DLLCALLCONV set_stdenvironment(SISProtocol * ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
change_units(ID_ref);
change_language(ID_ref);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
DLLEXPORT int32_t DLLCALLCONV get_drivemode(SISProtocol * ID_ref, uint32_t * ID_drvmode, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
uint64_t curdrvmode;
// Primary Operation Mode (S-0-0032)
ID_ref->read_parameter(TGM::SercosParamS, 32, curdrvmode);
switch (curdrvmode)
{
case DRIVEMODE_SEQUENCER: // Drive Mode: Sequencer
*ID_drvmode = 1;
break;
case DRIVEMODE_SPEEDCONTROL: // Drive Mode: Speed Control
*ID_drvmode = 2;
break;
default: // Drive Mode not supported
*ID_drvmode = 0;
break;
}
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
DLLEXPORT int32_t DLLCALLCONV get_opstate(SISProtocol * ID_ref, uint8_t * ID_opstate, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
uint64_t curopstate;
// Device control: Status word (P-0-0115)
ID_ref->read_parameter(TGM::SercosParamP, 115, curopstate);
OPSTATE opstate(static_cast<uint16_t>(curopstate));
*ID_opstate = opstate.Value;
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
DLLEXPORT int32_t DLLCALLCONV get_speed(SISProtocol * ID_ref, double_t * ID_speed, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
double_t speed;
// Velocity feedback Value (S-0-0040)
ID_ref->read_parameter(TGM::SercosParamS, 40, speed);
*ID_speed = speed;
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
DLLEXPORT int32_t DLLCALLCONV get_diagnostic_msg(SISProtocol * ID_ref, char * ID_diagnostic_msg, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
char msg[TGM_SIZEMAX_PAYLOAD];
// Diagnostic message (S-0-0095)
ID_ref->read_parameter(TGM::SercosParamS, 95, msg);
strncpy_s(ID_diagnostic_msg, TGM_SIZEMAX_PAYLOAD - 4, msg + 4, TGM_SIZEMAX_PAYLOAD - 4);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
DLLEXPORT int32_t DLLCALLCONV get_diagnostic_num(SISProtocol * ID_ref, uint32_t * ID_diagnostic_num, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
UINT32 num;
// Diagnostic number (S-0-0390)
ID_ref->read_parameter(TGM::SercosParamS, 390, num);
*ID_diagnostic_num = num;
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
DLLEXPORT int32_t DLLCALLCONV clear_error(SISProtocol * ID_ref, ErrHandle ID_err)
{
if (!dynamic_cast<SISProtocol*>(ID_ref))
// Return error for wrong reference
return set_error(
ID_err, sformat("Reference pointing to invalid location '%p'.", ID_ref),
Err_Invalid_Pointer);
try
{
// Clear error (S-0-0099) // Command C0500
ID_ref->execute_command(TGM::SercosParamS, 99);
return Err_NoError;
}
catch (SISProtocol::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
catch (CSerial::ExceptionGeneric &ex)
{
return set_error(ID_err, char2str(ex.what()), Err_Block_GetStatus);
}
}
void change_opmode(SISProtocol * ID_ref, const uint64_t opmode)
{
uint64_t curopmode;
// Primary Operation Mode (S-0-0032)
ID_ref->read_parameter(TGM::SercosParamS, 32, curopmode);
// Operation change will trigger flash operations that may cause limited life time
// Thus, operation change should be mainly triggered if required only
if (curopmode != opmode)
{
// Enter parameterization level 1 (S-0-0420) // Command C0400
ID_ref->execute_command(TGM::SercosParamS, 420);
// Primary Operation Mode (S-0-0032)
ID_ref->write_parameter(TGM::SercosParamS, 32, opmode);
// Leave parameterization level 1 (S-0-0422) // Command C0200
ID_ref->execute_command(TGM::SercosParamS, 422);
}
}
inline SPEEDUNITS get_units(SISProtocol * ID_ref)
{
uint64_t curunits;
// Scaling of speed units (S-0-0044)
ID_ref->read_parameter(TGM::SercosParamS, 44, curunits);
return SPEEDUNITS(static_cast<uint16_t>(curunits));
}
void change_units(SISProtocol * ID_ref)
{
SPEEDUNITS units = get_units(ID_ref);
if (units.Bits.type_of_scaling == 0b010 && !units.Bits.automode && !units.Bits.scale_units && !units.Bits.time_units && !units.Bits.data_rel) return;
// Set required units (preferred scaling, rotary scaling, [rpm])
uint64_t scalingtype = 0b0000000000000010;
// Velocity data scaling Type (S-0-0044)
ID_ref->write_parameter(TGM::SercosParamS, 44, scalingtype);
}
inline void change_language(SISProtocol * ID_ref, const uint8_t lang_code)
{
// Language selection (S-0-0265):
// * 0: German
// * 1: English
// * 2: French
// * 3: Spanish
// * 4: Italian
ID_ref->write_parameter(TGM::SercosParamS, 265, (UINT32)lang_code);
}