This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Standa8smc4usbStateMachine.cpp
754 lines (621 loc) · 27.3 KB
/
Standa8smc4usbStateMachine.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
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
/*----- PROTECTED REGION ID(Standa8smc4usbStateMachine.cpp) ENABLED START -----*/
static const char *RcsId = "$Id: $";
//=============================================================================
//
// file : Standa8smc4usbStateMachine.cpp
//
// description : State machine file for the Standa8smc4usb class
//
// project : StandaTango
//
// This file is part of Tango device class.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
// $Author: $
//
// $Revision: $
// $Date: $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <Standa8smc4usb.h>
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::Standa8smc4usbStateMachine.cpp
//================================================================
// States | Description
//================================================================
namespace Standa8smc4usb_ns
{
//=================================================
// Attributes Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_speed_allowed()
* Description : Execution allowed for speed attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_speed_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for speed attribute in Write access.
/*----- PROTECTED REGION ID(Standa8smc4usb::speedStateAllowed_WRITE) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::speedStateAllowed_WRITE
// Not any excluded states for speed attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::speedStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::speedStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_accel_allowed()
* Description : Execution allowed for accel attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_accel_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for accel attribute in Write access.
/*----- PROTECTED REGION ID(Standa8smc4usb::accelStateAllowed_WRITE) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::accelStateAllowed_WRITE
// Not any excluded states for accel attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::accelStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::accelStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_decel_allowed()
* Description : Execution allowed for decel attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_decel_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for decel attribute in Write access.
/*----- PROTECTED REGION ID(Standa8smc4usb::decelStateAllowed_WRITE) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::decelStateAllowed_WRITE
// Not any excluded states for decel attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::decelStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::decelStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_antiplaySpeed_allowed()
* Description : Execution allowed for antiplaySpeed attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_antiplaySpeed_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for antiplaySpeed attribute in Write access.
/*----- PROTECTED REGION ID(Standa8smc4usb::antiplaySpeedStateAllowed_WRITE) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::antiplaySpeedStateAllowed_WRITE
// Not any excluded states for antiplaySpeed attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::antiplaySpeedStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::antiplaySpeedStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_moveSts_allowed()
* Description : Execution allowed for moveSts attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_moveSts_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for moveSts attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::moveStsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::moveStsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_mvCmdSts_allowed()
* Description : Execution allowed for mvCmdSts attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_mvCmdSts_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for mvCmdSts attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::mvCmdStsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::mvCmdStsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_pwrSts_allowed()
* Description : Execution allowed for pwrSts attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_pwrSts_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for pwrSts attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::pwrStsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::pwrStsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_encSts_allowed()
* Description : Execution allowed for encSts attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_encSts_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for encSts attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::encStsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::encStsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windSts_allowed()
* Description : Execution allowed for windSts attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windSts_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windSts attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windStsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windStsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_curPosition_allowed()
* Description : Execution allowed for curPosition attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_curPosition_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for curPosition attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::curPositionStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::curPositionStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_encPosition_allowed()
* Description : Execution allowed for encPosition attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_encPosition_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for encPosition attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::encPositionStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::encPositionStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_curSpeed_allowed()
* Description : Execution allowed for curSpeed attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_curSpeed_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for curSpeed attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::curSpeedStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::curSpeedStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_ipwr_allowed()
* Description : Execution allowed for ipwr attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_ipwr_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for ipwr attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::ipwrStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::ipwrStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_upwr_allowed()
* Description : Execution allowed for upwr attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_upwr_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for upwr attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::upwrStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::upwrStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_iusb_allowed()
* Description : Execution allowed for iusb attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_iusb_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for iusb attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::iusbStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::iusbStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_uusb_allowed()
* Description : Execution allowed for uusb attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_uusb_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for uusb attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::uusbStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::uusbStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_curT_allowed()
* Description : Execution allowed for curT attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_curT_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for curT attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::curTStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::curTStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_flags_allowed()
* Description : Execution allowed for flags attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_flags_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for flags attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::flagsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::flagsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_gpioFlags_allowed()
* Description : Execution allowed for gpioFlags attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_gpioFlags_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for gpioFlags attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::gpioFlagsStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::gpioFlagsStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_cmdBufFreeSpace_allowed()
* Description : Execution allowed for cmdBufFreeSpace attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_cmdBufFreeSpace_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for cmdBufFreeSpace attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::cmdBufFreeSpaceStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::cmdBufFreeSpaceStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windingVoltageA_allowed()
* Description : Execution allowed for windingVoltageA attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windingVoltageA_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windingVoltageA attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windingVoltageAStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windingVoltageAStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windingVoltageB_allowed()
* Description : Execution allowed for windingVoltageB attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windingVoltageB_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windingVoltageB attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windingVoltageBStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windingVoltageBStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windingVoltageC_allowed()
* Description : Execution allowed for windingVoltageC attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windingVoltageC_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windingVoltageC attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windingVoltageCStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windingVoltageCStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windingCurrentA_allowed()
* Description : Execution allowed for windingCurrentA attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windingCurrentA_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windingCurrentA attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windingCurrentAStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windingCurrentAStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windingCurrentB_allowed()
* Description : Execution allowed for windingCurrentB attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windingCurrentB_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windingCurrentB attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windingCurrentBStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windingCurrentBStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_windingCurrentC_allowed()
* Description : Execution allowed for windingCurrentC attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_windingCurrentC_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for windingCurrentC attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::windingCurrentCStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::windingCurrentCStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_pot_allowed()
* Description : Execution allowed for pot attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_pot_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for pot attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::potStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::potStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_joy_allowed()
* Description : Execution allowed for joy attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_joy_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for joy attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::joyStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::joyStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_dutyCycle_allowed()
* Description : Execution allowed for dutyCycle attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_dutyCycle_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for dutyCycle attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::dutyCycleStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::dutyCycleStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_manufacturer_allowed()
* Description : Execution allowed for manufacturer attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_manufacturer_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for manufacturer attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::manufacturerStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::manufacturerStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_manufacturerId_allowed()
* Description : Execution allowed for manufacturerId attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_manufacturerId_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for manufacturerId attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::manufacturerIdStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::manufacturerIdStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_ProductDescription_allowed()
* Description : Execution allowed for ProductDescription attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_ProductDescription_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for ProductDescription attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::ProductDescriptionStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::ProductDescriptionStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_major_allowed()
* Description : Execution allowed for major attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_major_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for major attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::majorStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::majorStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_minor_allowed()
* Description : Execution allowed for minor attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_minor_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for minor attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::minorStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::minorStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_release_allowed()
* Description : Execution allowed for release attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_release_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for release attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::releaseStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::releaseStateAllowed_READ
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_serialNumber_allowed()
* Description : Execution allowed for serialNumber attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_serialNumber_allowed(TANGO_UNUSED(Tango::AttReqType type))
{
// Not any excluded states for serialNumber attribute in read access.
/*----- PROTECTED REGION ID(Standa8smc4usb::serialNumberStateAllowed_READ) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::serialNumberStateAllowed_READ
return true;
}
//=================================================
// Commands Allowed Methods
//=================================================
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Left_allowed()
* Description : Execution allowed for Left attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Left_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Left command.
/*----- PROTECTED REGION ID(Standa8smc4usb::LeftStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::LeftStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Right_allowed()
* Description : Execution allowed for Right attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Right_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Right command.
/*----- PROTECTED REGION ID(Standa8smc4usb::RightStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::RightStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Stop_allowed()
* Description : Execution allowed for Stop attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Stop_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Stop command.
/*----- PROTECTED REGION ID(Standa8smc4usb::StopStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::StopStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Sstop_allowed()
* Description : Execution allowed for Sstop attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Sstop_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Sstop command.
/*----- PROTECTED REGION ID(Standa8smc4usb::SstopStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::SstopStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Move_allowed()
* Description : Execution allowed for Move attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Move_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Move command.
/*----- PROTECTED REGION ID(Standa8smc4usb::MoveStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::MoveStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Mover_allowed()
* Description : Execution allowed for Mover attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Mover_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Mover command.
/*----- PROTECTED REGION ID(Standa8smc4usb::MoverStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::MoverStateAllowed
return true;
}
//--------------------------------------------------------
/**
* Method : Standa8smc4usb::is_Home_allowed()
* Description : Execution allowed for Home attribute
*/
//--------------------------------------------------------
bool Standa8smc4usb::is_Home_allowed(TANGO_UNUSED(const CORBA::Any &any))
{
// Not any excluded states for Home command.
/*----- PROTECTED REGION ID(Standa8smc4usb::HomeStateAllowed) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // Standa8smc4usb::HomeStateAllowed
return true;
}
} // End of namespace