-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymbol.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 4 in line 1.
2282 lines (2282 loc) · 88.2 KB
/
symbol.csv
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
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%@2-E(SYM=1 ADR=2 CM1=3 CM2=4)
iLLUB,X0004.0,level central lubrication,
iPLUB,X0004.1,lubrication pressure ok,
iK_ESP,X0008.4,button emergency stop,
iF_S_OVR0,X0100.6,op55: spindle override bit0,
iF_S_OVR1,X0100.7,op55: spindle override bit1,
iF_S_OVR2,X0101.0,op55: spindle override bit2,
iF_PKEY,X0101.4,op55: input protect key,
iF_K_A01,X0104.0,op55: key A01,
iF_K_A02,X0104.1,op55: key A02,
iF_K_A03,X0104.2,op55: key A03,
iF_K_A04,X0104.3,op55: key A04,
iF_K_B01,X0104.4,op55: key B01,
iF_K_B02,X0104.5,op55: key B02,
iF_K_B03,X0104.6,op55: key B03,
iF_K_B04,X0104.7,op55: key B04,
iF_K_C01,X0105.0,op55: key C01,
iF_K_C02,X0105.1,op55: key C02,
iF_K_C03,X0105.2,op55: key C03,
iF_K_C04,X0105.3,op55: key C04,
iF_K_D01,X0105.4,op55: key D01,
iF_K_D02,X0105.5,op55: key D02,
iF_K_D03,X0105.6,op55: key D03,
iF_K_D04,X0105.7,op55: key D04,
iF_K_E01,X0106.0,op55: key E01,
iF_K_E02,X0106.1,op55: key E02,
iF_K_A05,X0106.4,op55: key A05,
iF_K_A06,X0106.5,op55: key A06,
iF_K_A07,X0106.6,op55: key A07,
iF_K_A08,X0106.7,op55: key A08,
iF_K_B05,X0107.0,op55: key B05,
iF_K_B06,X0107.1,op55: key B06,
iF_K_B07,X0107.2,op55: key B07,
iF_K_B08,X0107.3,op55: key B08,
iF_K_C05,X0107.4,op55: key C05,
iF_K_C06,X0107.5,op55: key C06,
iF_K_C07,X0107.6,op55: key C07,
iF_K_C08,X0107.7,op55: key C08,
iF_K_D05,X0108.0,op55: key D05,
iF_K_D06,X0108.1,op55: key D06,
iF_K_D07,X0108.2,op55: key D07,
iF_K_D08,X0108.3,op55: key D08,
iF_K_E05,X0108.4,op55: key E05,
iF_K_E06,X0108.5,op55: key E06,
iF_K_E07,X0108.6,op55: key E07,
iF_K_E08,X0108.7,op55: key E08,
iF_K_A09,X0109.0,op55: key A09,
iF_K_A10,X0109.1,op55: key A10,
iF_K_A11,X0109.2,op55: key A11,
iF_K_B09,X0109.4,op55: key B09,
iF_K_B10,X0109.5,op55: key B10,
iF_K_B11,X0109.6,op55: key B11,
iF_K_C09,X0110.0,op55: key C09,
iF_K_C10,X0110.1,op55: key C10,
iF_K_C11,X0110.2,op55: key C11,
iF_K_D09,X0110.4,op55: key D09,
iF_K_D10,X0110.5,op55: key D10,
iF_K_D11,X0110.6,op55: key D11,
iF_K_E09,X0111.0,op55: key E09,
iF_K_E10,X0111.1,op55: key E10,
iF_K_E11,X0111.2,op55: key E11,
oLUB,Y0010.1,output lubrication on,
oF_L_A01,Y0100.0,op55: led A01,
oF_L_A02,Y0100.1,op55: led A02,
oF_L_A03,Y0100.2,op55: led A03,
oF_L_A04,Y0100.3,op55: led A04,
oF_L_B01,Y0100.4,op55: led B01,
oF_L_B02,Y0100.5,op55: led B02,
oF_L_B03,Y0100.6,op55: led B03,
oF_L_B04,Y0100.7,op55: led B04,
oF_L_C01,Y0101.0,op55: led C01,
oF_L_C02,Y0101.1,op55: led C02,
oF_L_C03,Y0101.2,op55: led C03,
oF_L_C04,Y0101.3,op55: led C04,
oF_L_D01,Y0101.4,op55: led D01,
oF_L_D02,Y0101.5,op55: led D02,
oF_L_D03,Y0101.6,op55: led D03,
oF_L_D04,Y0101.7,op55: led D04,
oF_L_E01,Y0102.0,op55: led E01,
oF_L_E02,Y0102.1,op55: led E02,
oF_L_E03,Y0102.2,op55: led E03,
oF_L_A05,Y0102.4,op55: led A05,
oF_L_A06,Y0102.5,op55: led A06,
oF_L_A07,Y0102.6,op55: led A07,
oF_L_A08,Y0102.7,op55: led A08,
oF_L_B05,Y0103.0,op55: led B05,
oF_L_B06,Y0103.1,op55: led B06,
oF_L_B07,Y0103.2,op55: led B07,
oF_L_B08,Y0103.3,op55: led B08,
oF_L_C05,Y0103.4,op55: led C05,
oF_L_C06,Y0103.5,op55: led C06,
oF_L_C07,Y0103.6,op55: led C07,
oF_L_C08,Y0103.7,op55: led C08,
oF_L_D05,Y0104.0,op55: led D05,
oF_L_D06,Y0104.1,op55: led D06,
oF_L_D07,Y0104.2,op55: led D07,
oF_L_D08,Y0104.3,op55: led D08,
oF_L_E05,Y0104.4,op55: led E05,
oF_L_E06,Y0104.5,op55: led E06,
oF_L_E07,Y0104.6,op55: led E07,
oF_L_E08,Y0104.7,op55: led E08,
oF_L_A09,Y0105.0,op55: led A09,
oF_L_A10,Y0105.1,op55: led A10,
oF_L_A11,Y0105.2,op55: led A11,
oF_L_B09,Y0105.4,op55: led B09,
oF_L_B10,Y0105.5,op55: led B10,
oF_L_B11,Y0105.6,op55: led B11,
oF_L_C09,Y0106.0,op55: led C09,
oF_L_C10,Y0106.1,op55: led C10,
oF_L_C11,Y0106.2,op55: led C11,
oF_L_D09,Y0106.4,op55: led D09,
oF_L_D10,Y0106.5,op55: led D10,
oF_L_D11,Y0106.6,op55: led D11,
oF_L_E09,Y0107.0,op55: led E09,
oF_L_E10,Y0107.1,op55: led E10,
oF_L_E11,Y0107.2,op55: led E11,
RWD_P01,F0000.0,P01:rewinding signal,
SPL_P01,F0000.4,P01:feed hold lamp signal,
STL_P01,F0000.5,P01:cycle start lamp signal,
SA_P01,F0000.6,P01:servo ready signal,
OP_P01,F0000.7,P01:automatic operation lamp,
AL_P01,F0001.0,P01:alarm signal,
RST_P01,F0001.1,P01:resetting signal,
BAL_P01,F0001.2,P01:battery alarm signal,
DEN_P01,F0001.3,P01:distribution end signal,
MA_P01,F0001.7,P01:cnc ready signal,
MDRN_P01,F0002.7,P01:dry run check signal,
MINC_P01,F0003.0,P01:mode incremental feed,
MH_P01,F0003.1,P01:mode handle,
MJ_P01,F0003.2,P01:jog feed sel. check signal,
MMDI_P01,F0003.3,P01:mode mdi selected,
MRMT_P01,F0003.4,P01:dnc operation,
MMEM_P01,F0003.5,P01:mode memory operation,
MEDT_P01,F0003.6,P01:mode edit,
MTCHIN_P01,F0003.7,P01:teach in sel. check signal,
MBDT1_P01,F0004.0,P01:blk skip btd1 check signal,
MMLK_P01,F0004.1,P01:all axis lock check signal,
MSBK_P01,F0004.3,P01:single block check signal,
MAFL_P01,F0004.4,P01:aux. funct. lock check,
MREF_P01,F0004.5,P01:mode manual ref. return,
MBDT2_P01,F0005.0,P01:skip block signal mbdt2,
B_RST_P01,F0006.1,P01:button reset,
MF_P01,F0007.0,P01:m-function strobe signal,
SF_P01,F0007.2,P01:spindle strobe signal,
TF_P01,F0007.3,P01:tool function strobe,
BF_P01,F0007.7,P01:2nd aux. function strobe,
MF2_P01,F0008.4,P01:2nd m function strobe,
MF3_P01,F0008.5,P01:3rd m function strobe,
MF4_P01,F0008.6,P01:4th m-function strobe,
MF5_P01,F0008.7,P01:5th m-function strobe,
FSCSL_P01,F0044.1,P01:Cs contour ctrl active,
ALMA_P01,F0045.0,P01:alm signal serial spindle,
SSTA_P01,F0045.1,P01:spindle speed zero,
SARA_P01,F0045.3,P01:sp speed arrival signal,
ORARA_P01,F0045.7,P01:orient. completion signal,
EXOFA_P01,F0047.4,spindle exitation off,
OUT0_P01,F0072.0,P01:sop: emergency stop,
OUT1_P01,F0072.1,P01:sop: external reset,
OUT2_P01,F0072.2,P01:sop: nc start,
OUT3_P01,F0072.3,P01:sop: dnc mode,
OUT4_P01,F0072.4,P01:sop: optional stop m01,
OUT5_P01,F0072.5,P01:sop: coolant on,
OUT6_P01,F0072.6,P01:sop: spindle on,
OUT7_P01,F0072.7,P01:sop: spindle ccw,
MD1O_P01,F0073.0,P01:sop: signal md1,
MD2O_P01,F0073.1,P01:sop: signal md2,
MD4O_P01,F0073.2,P01:sop: signal md4,
ZRNO_P01,F0073.4,P01:sop: signal zrn,
BDTO_P01,F0075.2,P01:sop: optional block skip,
SBKO_P01,F0075.3,P01:sop: single block,
MLKO_P01,F0075.4,P01:sop: machine lock,
DRNO_P01,F0075.5,P01:sop: dry run,
KEYO,F0075.6,:sop: protect key,
SPO_P01,F0075.7,P01:sop: feed hold,
MP1O_P01,F0076.0,P01:sop: hd feed magnific. mp1,
MP2O_P01,F0076.1,P01:sop: hd feed magnific. mp2,
RTAP_P01,F0076.3,P01:rigid tapping in progress,
ROV1O_P01,F0076.4,P01:sop: rapid traverse rov1,
ROV2O_P01,F0076.5,P01:sop: rapid traverse rov2,
HS1AO_P01,F0077.0,P01:sop: hd axis sel. signal1,
HS1BO_P01,F0077.1,P01:sop: hd axis sel. signal2,
HS1CO_P01,F0077.2,P01:sop: hd axis sel. signal3,
HS1DO_P01,F0077.3,P01:sop: hd axis sel. signal4,
RTO_P01,F0077.6,P01:sop: manual rapid traverse,
J1O+_P01,F0081.0,P01:sop: 1st axis + direction,
J1O-_P01,F0081.1,P01:sop: 1st axis - direction,
J2O+_P01,F0081.2,P01:sop: 2nd axis + direction,
J2O-_P01,F0081.3,P01:sop: 2nd axis - direction,
J3O+_P01,F0081.4,P01:sop: 3rd axis + direction,
J3O-_P01,F0081.5,P01:sop: 3rd axis - direction,
J4O+_P01,F0081.6,P01:sop: 4th axis + direction,
J4O-_P01,F0081.7,P01:sop: 4th axis - direction,
ZP1_P01,F0094.0,P01:ref position 1st axis,
ZP2_P01,F0094.1,P01:ref position 2nd axis,
ZP3_P01,F0094.2,P01:ref position 3rd axis,
ZP4_P01,F0094.3,P01:ref position 4th axis,
ZP5_P01,F0094.4,P01:ref position 5th axis,
ZP6_P01,F0094.5,P01:ref position 6th axis,
ZP7_P01,F0094.6,P01:ref position 7th axis,
ZP8_P01,F0094.7,P01:ref position 8th axis,
MV1_P01,F0102.0,P01:1st axis moving signal,
MV2_P01,F0102.1,P01:2nd axis moving signal,
MV3_P01,F0102.2,P01:3rd axis moving signal,
MV4_P01,F0102.3,P01:4th axis moving signal,
MV5_P01,F0102.4,P01:5th axis moving signal,
MV6_P01,F0102.5,P01:6th axis moving signal,
MV7_P01,F0102.6,P01:7th axis moving signal,
MV8_P01,F0102.7,P01:8th axis moving signal,
INP1_P01,F0104.0,P01:1st axis in-pos. signal,
INP2_P01,F0104.1,P01:2nd axis in-pos. signal,
INP3_P01,F0104.2,P01:3rd axis in-pos. signal,
INP4_P01,F0104.3,P01:4th axis in-pos. signal,
INP5_P01,F0104.4,P01:5th axis in-pos. signal,
INP6_P01,F0104.5,P01:6th axis in-pos. signal,
INP7_P01,F0104.6,P01:7th axis in-pos. signal,
INP8_P01,F0104.7,P01:8th axis in-pos. signal,
MVD1_P01,F0106.0,P01:1st axis moving dir.-,
MVD2_P01,F0106.1,P01:2nd axis moving dir.-,
MVD3_P01,F0106.2,P01:3rd axis moving dir.-,
MVD4_P01,F0106.3,P01:4th axis moving dir.-,
MVD5_P01,F0106.4,P01:5th axis moving dir.-,
MVD6_P01,F0106.5,P01:6th axis moving dir.-,
MVD7_P01,F0106.6,P01:7th axis moving dir.-,
MVD8_P01,F0106.7,P01:8th axis moving dir.-,
ZRF1_P01,F0120.0,P01:1st axis referenced,
ZRF2_P01,F0120.1,P01:2nd axis referenced,
ZRF3_P01,F0120.2,P01:3rd axis referenced,
ZRF4_P01,F0120.3,P01:4th axis referenced,
ZRF5_P01,F0120.4,P01:5th axis referenced,
ZRF6_P01,F0120.5,P01:6th axis referenced,
ZRF7_P01,F0120.6,P01:7th axis referenced,
ZRF8_P01,F0120.7,P01:8th axis referenced,
SA1_P01,F0186.0,P01:1st axis servo ready,
SA2_P01,F0186.1,P01:2nd axis servo ready,
SA3_P01,F0186.2,P01:3rd axis servo ready,
SA4_P01,F0186.3,P01:4th axis servo ready,
SA5_P01,F0186.4,P01:5th axis servo ready,
SA6_P01,F0186.5,P01:6th axis servo ready,
SA7_P01,F0186.6,P01:7th axis servo ready,
SA8_P01,F0186.7,P01:8th axis servo ready,
WPSF1_P01,F0358.0,P01:wp coord preset fin 1st ax,
WPSF2_P01,F0358.1,P01:wp coord preset fin 2nd ax,
WPSF3_P01,F0358.2,P01:wp coord preset fin 3rd ax,
WPSF4_P01,F0358.3,P01:wp coord preset fin 4th ax,
WPSF5_P01,F0358.4,P01:wp coord preset fin 5th ax,
WPSF6_P01,F0358.5,P01:wp coord preset fin 6th ax,
WPSF7_P01,F0358.6,P01:wp coord preset fin 7th ax,
WPSF8_P01,F0358.7,P01:wp coord preset fin 8th ax,
MCEXE_P01,F0512.0,P01:macro call exec. signal,
MCRQ_P01,F0512.1,P01:mode change req. signal,
MCSP_P01,F0512.2,P01:abnormal end signal,
MD1R_P01,F0513.0,P01:mode notification 1,
MD2R_P01,F0513.1,P01:mode notification 2,
MD4R_P01,F0513.2,P01:mode notification 4,
DNCIR_P01,F0513.5,P01:DNC notification,
ZRNR_P01,F0513.7,P01:ZRN notification,
MCEX1_P01,F0514.0,P01:macro 1 in progress,
MCEX2_P01,F0514.1,P01:macro 2 in progress,
MCEX3_P01,F0514.2,P01:macro 3 in progress,
MCEX4_P01,F0514.3,P01:macro 4 in progress,
SVD001_P01,F0688.0,P01:1st axis brake ctrl mode,
SVD002_P01,F0688.1,P01:2nd axis brake ctrl mode,
SVD003_P01,F0688.2,P01:3rd axis brake ctrl mode,
SVD004_P01,F0688.3,P01:4th axis brake ctrl mode,
SVD005_P01,F0688.4,P01:5th axis brake ctrl mode,
SVD006_P01,F0688.5,P01:6th axis brake ctrl mode,
SVD007_P01,F0688.6,P01:7th axis brake ctrl mode,
SVD008_P01,F0688.7,P01:8th axis brake ctrl mode,
RWD_P02,F1000.0,P02:rewinding signal,
SPL_P02,F1000.4,P02:feed hold lamp signal,
STL_P02,F1000.5,P02:cycle start lamp signal,
SA_P02,F1000.6,P02:servo ready signal,
OP_P02,F1000.7,P02:automatic operation lamp,
AL_P02,F1001.0,P02:alarm signal,
RST_P02,F1001.1,P02:resetting signal,
BAL_P02,F1001.2,P02:battery alarm signal,
DEN_P02,F1001.3,P02:distribution end signal,
MA_P02,F1001.7,P02:cnc ready signal,
MDRN_P02,F1002.7,P02:dry run check signal,
MINC_P02,F1003.0,P02:mode incremental feed,
MH_P02,F1003.1,P02:mode handle,
MJ_P02,F1003.2,P02:jog feed sel. check signal,
MMDI_P02,F1003.3,P02:mode mdi selected,
MRMT_P02,F1003.4,P02:dnc operation,
MMEM_P02,F1003.5,P02:mode memory operation,
MEDT_P02,F1003.6,P02:mode edit,
MTCHIN_P02,F1003.7,P02:teach in sel. check signal,
MBDT1_P02,F1004.0,P02:blk skip btd1 check signal,
MMLK_P02,F1004.1,P02:all axis lock check signal,
MSBK_P02,F1004.3,P02:single block check signal,
MAFL_P02,F1004.4,P02:aux. funct. lock check,
MREF_P02,F1004.5,P02:mode manual ref. return,
MBDT2_P02,F1005.0,P02:skip block signal mbdt2,
B_RST_P02,F1006.1,P02:button reset,
MF_P02,F1007.0,P02:m-function strobe signal,
SF_P02,F1007.2,P02:spindle strobe signal,
TF_P02,F1007.3,P02:tool function strobe,
BF_P02,F1007.7,P02:2nd aux. function strobe,
MF2_P02,F1008.4,P02:2nd m function strobe,
MF3_P02,F1008.5,P02:3rd m function strobe,
MF4_P02,F1008.6,P02:4th m-function strobe,
MF5_P02,F1008.7,P02:5th m-function strobe,
OUT0_P02,F1072.0,P02:sop: emergency stop,
OUT1_P02,F1072.1,P02:sop: external reset,
OUT2_P02,F1072.2,P02:sop: nc start,
OUT3_P02,F1072.3,P02:sop: dnc mode,
OUT4_P02,F1072.4,P02:sop: optional stop m01,
OUT5_P02,F1072.5,P02:sop: coolant on,
OUT6_P02,F1072.6,P02:sop: spindle on,
OUT7_P02,F1072.7,P02:sop: spindle ccw,
MD1O_P02,F1073.0,P02:sop: signal md1,
MD2O_P02,F1073.1,P02:sop: signal md2,
MD4O_P02,F1073.2,P02:sop: signal md4,
ZRNO_P02,F1073.4,P02:sop: signal zrn,
BDTO_P02,F1075.2,P02:sop: optional block skip,
SBKO_P02,F1075.3,P02:sop: single block,
MLKO_P02,F1075.4,P02:sop: machine lock,
DRNO_P02,F1075.5,P02:sop: dry run,
SPO_P02,F1075.7,P02:sop: feed hold,
MP1O_P02,F1076.0,P02:sop: hd feed magnific. mp1,
MP2O_P02,F1076.1,P02:sop: hd feed magnific. mp2,
ROV1O_P02,F1076.4,P02:sop: rapid traverse rov1,
ROV2O_P02,F1076.5,P02:sop: rapid traverse rov2,
HS1AO_P02,F1077.0,P02:sop: hd axis sel. signal1,
HS1BO_P02,F1077.1,P02:sop: hd axis sel. signal2,
HS1CO_P02,F1077.2,P02:sop: hd axis sel. signal3,
HS1DO_P02,F1077.3,P02:sop: hd axis sel. signal4,
RTO_P02,F1077.6,P02:sop: manual rapid traverse,
J1O+_P02,F1081.0,P02:sop: 1st axis + direction,
J1O-_P02,F1081.1,P02:sop: 1st axis - direction,
J2O+_P02,F1081.2,P02:sop: 2nd axis + direction,
J2O-_P02,F1081.3,P02:sop: 2nd axis - direction,
J3O+_P02,F1081.4,P02:sop: 3rd axis + direction,
J3O-_P02,F1081.5,P02:sop: 3rd axis - direction,
J4O+_P02,F1081.6,P02:sop: 4th axis + direction,
J4O-_P02,F1081.7,P02:sop: 4th axis - direction,
ZP1_P02,F1094.0,P02:ref position 1st axis,
ZP2_P02,F1094.1,P02:ref position 2nd axis,
ZP3_P02,F1094.2,P02:ref position 3rd axis,
ZP4_P02,F1094.3,P02:ref position 4th axis,
ZP5_P02,F1094.4,P02:ref position 5th axis,
ZP6_P02,F1094.5,P02:ref position 6th axis,
ZP7_P02,F1094.6,P02:ref position 7th axis,
ZP8_P02,F1094.7,P02:ref position 8th axis,
MV1_P02,F1102.0,P02:1st axis moving signal,
MV2_P02,F1102.1,P02:2nd axis moving signal,
MV3_P02,F1102.2,P02:3rd axis moving signal,
MV4_P02,F1102.3,P02:4th axis moving signal,
MV5_P02,F1102.4,P02:5th axis moving signal,
MV6_P02,F1102.5,P02:6th axis moving signal,
MV7_P02,F1102.6,P02:7th axis moving signal,
MV8_P02,F1102.7,P02:8th axis moving signal,
INP1_P02,F1104.0,P02:1st axis in-pos. signal,
INP2_P02,F1104.1,P02:2nd axis in-pos. signal,
INP3_P02,F1104.2,P02:3rd axis in-pos. signal,
INP4_P02,F1104.3,P02:4th axis in-pos. signal,
INP5_P02,F1104.4,P02:5th axis in-pos. signal,
INP6_P02,F1104.5,P02:6th axis in-pos. signal,
INP7_P02,F1104.6,P02:7th axis in-pos. signal,
INP8_P02,F1104.7,P02:8th axis in-pos. signal,
MVD1_P02,F1106.0,P02:1st axis moving dir.-,
MVD2_P02,F1106.1,P02:2nd axis moving dir.-,
MVD3_P02,F1106.2,P02:3rd axis moving dir.-,
MVD4_P02,F1106.3,P02:4th axis moving dir.-,
MVD5_P02,F1106.4,P02:5th axis moving dir.-,
MVD6_P02,F1106.5,P02:6th axis moving dir.-,
MVD7_P02,F1106.6,P02:7th axis moving dir.-,
MVD8_P02,F1106.7,P02:8th axis moving dir.-,
ZRF1_P02,F1120.0,P02:1st axis referenced,
ZRF2_P02,F1120.1,P02:2nd axis referenced,
ZRF3_P02,F1120.2,P02:3rd axis referenced,
ZRF4_P02,F1120.3,P02:4th axis referenced,
ZRF5_P02,F1120.4,P02:5th axis referenced,
ZRF6_P02,F1120.5,P02:6th axis referenced,
ZRF7_P02,F1120.6,P02:7th axis referenced,
ZRF8_P02,F1120.7,P02:8th axis referenced,
EACNT6_P02,F1182.5,P02:6th axis sel. status sig.,
SA1_P02,F1186.0,P02:1st axis servo ready,
SA2_P02,F1186.1,P02:2nd axis servo ready,
SA3_P02,F1186.2,P02:3rd axis servo ready,
SA4_P02,F1186.3,P02:4th axis servo ready,
SA5_P02,F1186.4,P02:5th axis servo ready,
SA6_P02,F1186.5,P02:6th axis servo ready,
SA7_P02,F1186.6,P02:7th axis servo ready,
SA8_P02,F1186.7,P02:8th axis servo ready,
WPSF1_P02,F1358.0,P02:wp coord preset fin 1st ax,
WPSF2_P02,F1358.1,P02:wp coord preset fin 2nd ax,
WPSF3_P02,F1358.2,P02:wp coord preset fin 3rd ax,
WPSF4_P02,F1358.3,P02:wp coord preset fin 4th ax,
WPSF5_P02,F1358.4,P02:wp coord preset fin 5th ax,
WPSF6_P02,F1358.5,P02:wp coord preset fin 6th ax,
WPSF7_P02,F1358.6,P02:wp coord preset fin 7th ax,
WPSF8_P02,F1358.7,P02:wp coord preset fin 8th ax,
MCEXE_P02,F1512.0,P02:macro call exec. signal,
MCRQ_P02,F1512.1,P02:mode change req. signal,
MCSP_P02,F1512.2,P02:abnormal end signal,
MD1R_P02,F1513.0,P02:mode notification 1,
MD2R_P02,F1513.1,P02:mode notification 2,
MD4R_P02,F1513.2,P02:mode notification 4,
DNCIR_P02,F1513.5,P02:DNC notification,
ZRNR_P02,F1513.7,P02:ZRN notification,
MCEX1_P02,F1514.0,P02:macro 1 in progress,
MCEX2_P02,F1514.1,P02:macro 2 in progress,
MCEX3_P02,F1514.2,P02:macro 3 in progress,
MCEX4_P02,F1514.3,P02:macro 4 in progress,
SVD001_P02,F1688.0,P02:1st axis brake ctrl mode,
SVD002_P02,F1688.1,P02:2nd axis brake ctrl mode,
SVD003_P02,F1688.2,P02:3rd axis brake ctrl mode,
SVD004_P02,F1688.3,P02:4th axis brake ctrl mode,
SVD005_P02,F1688.4,P02:5th axis brake ctrl mode,
SVD006_P02,F1688.5,P02:6th axis brake ctrl mode,
SVD007_P02,F1688.6,P02:7th axis brake ctrl mode,
SVD008_P02,F1688.7,P02:8th axis brake ctrl mode,
MFIN2_P01,G0004.4,P01:2nd m funct. compl. signal,
MFIN3_P01,G0004.5,P01:3rd m funct. compl. signal,
MFIN4_P01,G0004.6,P01:4th m-funct. compl. signal,
MFIN5_P01,G0004.7,P01:5th m-funct. compl. signal,
MFIN_P01,G0005.0,P01:aux. funct. compl. signal,
SFIN_P01,G0005.2,P01:sp function compl. signal,
TFIN_P01,G0005.3,P01:tool function completion,
AFL_P01,G0005.6,P01:auxiliary function lock,
BFIN_P01,G0005.7,P01:2nd aux compl. signal,
SRN_P01,G0006.0,P01:program restart signal,
OVC_P01,G0006.4,P01:override cancel signal,
ST_P01,G0007.2,P01:cycle start signal,
*FLWU_P01,G0007.5,P01:follow-up signal,
*IT_P01,G0008.0,P01:all axis interlock signal,
*CSL_P01,G0008.1,P01:cutting block start lock,
*BSL_P01,G0008.3,P01:block start lock signal,
*ESP_P01,G0008.4,P01:emergency stop signal,
*SP_P01,G0008.5,P01:feed hold signal,
RRW_P01,G0008.6,P01:reset and rewind signal,
ERS_P01,G0008.7,P01:external reset signal,
HS1A_P01,G0018.0,P01:handwheel sel. signal 1,
HS1B_P01,G0018.1,P01:handwheel sel. signal 2,
HS1C_P01,G0018.2,P01:handwheel sel. signal 3,
HS1D_P01,G0018.3,P01:handwheel sel. signal 4,
MP1_P01,G0019.4,P01:increment feed1,
MP2_P01,G0019.5,P01:increment feed2,
RT_P01,G0019.7,P01:rapid traverse select.,
HCLP_P01,G0023.3,P01:pulse gen. max. feed sel.,
CON_P01,G0027.7,P01:Cs contour ctrl on,
SAR_P01,G0029.4,P01:spindle speed arrival,
*SSTP_P01,G0029.6,P01:spindle stop signal,
SIND_P01,G0033.7,P01:spindle mode select signal,
MD1_P01,G0043.0,P01:mode selection signal 1,
MD2_P01,G0043.1,P01:mode selection signal 2,
MD4_P01,G0043.2,P01:mode selection signal 4,
DNCI_P01,G0043.5,P01:dnc selection signal,
ZRN_P01,G0043.7,P01:ref. pos. select sign.,
BDT1_P01,G0044.0,P01:skip block (bdt1),
MLK_P01,G0044.1,P01:all axis machine lock,
BDT2_P01,G0045.0,P01:skip block signal (bdt2),
SBK_P01,G0046.1,P01:single block signal,
KEY1,G0046.3,memory protect signal key1,
KEY2,G0046.4,memory protect signal key2,
KEY3,G0046.5,memory protect signal key3,
KEY4,G0046.6,memory protect signal key4,
DRN_P01,G0046.7,P01:dry run signal,
UI000_P01,G0054.0,P01:custom macro #1000,
RGTAP_P01,G0061.0,P01:rigid tapping signal,
HEAD2,G0062.7,path selection signal 2,
HEAD,G0063.0,path selection signal 1,
IGNVRY_P01,G0066.0,P01:ignore servo ready,
SRVA_P01,G0070.4,P01:ccw command signal,
SFRA_P01,G0070.5,P01:cw command signal,
ORCMA_P01,G0070.6,P01:orientation command signal,
MRDYA_P01,G0070.7,P01:machine ready signal,
ARSTA_P01,G0071.0,P01:alarm reset signal,
*ESPA_P01,G0071.1,P01:emergency stop spindle,
SOGNA_P01,G0071.4,P01:soft start/stop signal,
INDXA_P01,G0072.0,P01:orient stop pos. change,
J1+_P01,G0100.0,P01:feed 1st axis + direction,
J2+_P01,G0100.1,P01:feed 2nd axis + direction,
J3+_P01,G0100.2,P01:feed 3rd axis + direction,
J4+_P01,G0100.3,P01:feed 4th axis + direction,
J5+_P01,G0100.4,P01:feed 5th axis + direction,
J6+_P01,G0100.5,P01:feed 6th axis + direction,
J7+_P01,G0100.6,P01:feed 7th axis + direction,
J8+_P01,G0100.7,P01:feed 8th axis + direction,
J1-_P01,G0102.0,P01:feed 1st axis -direction,
J2-_P01,G0102.1,P01:feed 2nd axis - direction,
J3-_P01,G0102.2,P01:feed 3rd axis - direction,
J4-_P01,G0102.3,P01:feed 4th axis - direction,
J5-_P01,G0102.4,P01:feed 5th axis - direction,
J6-_P01,G0102.5,P01:feed 6th axis - direction,
J7-_P01,G0102.6,P01:feed 7th axis - direction,
J8-_P01,G0102.7,P01:feed 8th axis - direction,
*+L1_P01,G0114.0,P01:overtravel + 1st axis,
*+L2_P01,G0114.1,P01:overtravel + 2nd axis,
*+L3_P01,G0114.2,P01:overtravel + 3rd axis,
*+L4_P01,G0114.3,P01:overtravel + 4th axis,
*+L5_P01,G0114.4,P01:overtravel + 5th axis,
*+L6_P01,G0114.5,P01:overtravel + 6th axis,
*+L7_P01,G0114.6,P01:overtravel + 7th axis,
*+L8_P01,G0114.7,P01:overtravel + 8th axis,
*-L1_P01,G0116.0,P01:overtravel - 1st axis,
*-L2_P01,G0116.1,P01:overtravel - 2nd axis,
*-L3_P01,G0116.2,P01:overtravel - 3rd axis,
*-L4_P01,G0116.3,P01:overtravel - 4th axis,
*-L5_P01,G0116.4,P01:overtravel - 5th axis,
*-L6_P01,G0116.5,P01:overtravel - 6th axis,
*-L7_P01,G0116.6,P01:overtravel - 7th axis,
*-L8_P01,G0116.7,P01:overtravel - 8th axis,
*+ED1_P01,G0118.0,P01:external dec. + 1st axis,
*+ED2_P01,G0118.1,P01:external dec. + 2st axis,
*+ED3_P01,G0118.2,P01:external dec. + 3rd axis,
*+ED4_P01,G0118.3,P01:external dec. + 4st axis,
*+ED5_P01,G0118.4,P01:external dec. + 5st axis,
*+ED6_P01,G0118.5,P01:external dec. + 6st axis,
*+ED7_P01,G0118.6,P01:external dec. + 7st axis,
*+ED8_P01,G0118.7,P01:external dec. + 8st axis,
*-ED1_P01,G0120.0,P01:external dec. - 1st axis,
*-ED2_P01,G0120.1,P01:external dec. - 2st axis,
*-ED3_P01,G0120.2,P01:external dec. - 3rd axis,
*-ED4_P01,G0120.3,P01:external dec. - 4st axis,
*-ED5_P01,G0120.4,P01:external dec. - 5st axis,
*-ED6_P01,G0120.5,P01:external dec. - 6st axis,
*-ED7_P01,G0120.6,P01:external dec. - 7st axis,
*-ED8_P01,G0120.7,P01:external dec. - 8st axis,
SVF1_P01,G0126.0,P01:servo off 1st axis,
SVF2_P01,G0126.1,P01:servo off 2nd axis,
SVF3_P01,G0126.2,P01:servo off 3rd axis,
SVF4_P01,G0126.3,P01:servo off 4th axis,
SVF5_P01,G0126.4,P01:servo off 5th axis,
SVF6_P01,G0126.5,P01:servo off 6th axis,
SVF7_P01,G0126.6,P01:servo off 7th axis,
SVF8_P01,G0126.7,P01:servo off 8th axis,
*IT1_P01,G0130.0,P01:interlock 1st axis,
*IT2_P01,G0130.1,P01:interlock 2nd axis,
*IT3_P01,G0130.2,P01:interlock 3rd axis,
*IT4_P01,G0130.3,P01:interlock 4th axis,
*IT5_P01,G0130.4,P01:interlock 5th axis,
*IT6_P01,G0130.5,P01:interlock 6th axis,
*IT7_P01,G0130.6,P01:interlock 7th axis,
*IT8_P01,G0130.7,P01:interlock 8th axis,
*DEC1_P01,G0196.0,P01:dec. signal 1st axis,
*DEC2_P01,G0196.1,P01:dec. signal 2nd axis,
*DEC3_P01,G0196.2,P01:dec. signal 3rd axis,
*DEC4_P01,G0196.3,P01:dec. signal 4th axis,
*DEC5_P01,G0196.4,P01:dec. signal 5th axis,
*DEC6_P01,G0196.5,P01:dec. signal 6th axis,
*DEC7_P01,G0196.6,P01:dec. signal 7th axis,
*DEC8_P01,G0196.7,P01:dec. signal 8th axis,
WPRST1_P01,G0358.0,P01:wp coord preset 1st axis,
WPRST2_P01,G0358.1,P01:wp coord preset 2nd axis,
WPRST3_P01,G0358.2,P01:wp coord preset 3rd axis,
WPRST4_P01,G0358.3,P01:wp coord preset 4th axis,
WPRST5_P01,G0358.4,P01:wp coord preset 5th axis,
WPRST6_P01,G0358.5,P01:wp coord preset 6th axis,
WPRST7_P01,G0358.6,P01:wp coord preset 7th axis,
WPRST8_P01,G0358.7,P01:wp coord preset 8th axis,
MCST1_P01,G0512.0,P01:macro call 1 start,
MCST2_P01,G0512.1,P01:macro call 2 start,
MCST3_P01,G0512.2,P01:macro call 3 start,
MCST4_P01,G0512.3,P01:macro call 4 start,
MCFIN_P01,G0514.0,P01:mode change completion,
MFIN2_P02,G1004.4,P02:2nd m funct. compl. signal,
MFIN3_P02,G1004.5,P02:3rd m funct. compl. signal,
MFIN4_P02,G1004.6,P02:4th m-funct. compl. signal,
MFIN5_P02,G1004.7,P02:5th m-funct. compl. signal,
MFIN_P02,G1005.0,P02:aux. funct. compl. signal,
SFIN_P02,G1005.2,P02:sp function compl. signal,
TFIN_P02,G1005.3,P02:tool function completion,
AFL_P02,G1005.6,P02:auxiliary function lock,
BFIN_P02,G1005.7,P02:2nd aux compl. signal,
SRN_P02,G1006.0,P02:program restart signal,
OVC_P02,G1006.4,P02:override cancel signal,
ST_P02,G1007.2,P02:cycle start signal,
*FLWU_P02,G1007.5,P02:follow-up signal,
*IT_P02,G1008.0,P02:all axis interlock signal,
*CSL_P02,G1008.1,P02:cutting block start lock,
*BSL_P02,G1008.3,P02:block start lock signal,
*ESP_P02,G1008.4,P02:emergency stop signal,
*SP_P02,G1008.5,P02:feed hold signal,
RRW_P02,G1008.6,P02:reset and rewind signal,
ERS_P02,G1008.7,P02:external reset signal,
HS1A_P02,G1018.0,P02:handwheel sel. signal 1,
HS1B_P02,G1018.1,P02:handwheel sel. signal 2,
HS1C_P02,G1018.2,P02:handwheel sel. signal 3,
HS1D_P02,G1018.3,P02:handwheel sel. signal 4,
MP1_P02,G1019.4,P02:increment feed1,
MP2_P02,G1019.5,P02:increment feed2,
RT_P02,G1019.7,P02:rapid traverse select.,
HCLP_P02,G1023.3,P02:pulse gen. max. feed sel.,
SAR_P02,G1029.4,P02:spindle speed arrival,
*SSTP_P02,G1029.6,P02:spindle stop signal,
SIND_P02,G1033.7,P02:spindle mode select signal,
MD1_P02,G1043.0,P02:mode selection signal 1,
MD2_P02,G1043.1,P02:mode selection signal 2,
MD4_P02,G1043.2,P02:mode selection signal 4,
DNCI_P02,G1043.5,P02:dnc selection signal,
ZRN_P02,G1043.7,P02:ref. pos. select sign.,
BDT1_P02,G1044.0,P02:skip block (bdt1),
MLK_P02,G1044.1,P02:all axis machine lock,
BDT2_P02,G1045.0,P02:skip block signal (bdt2),
SBK_P02,G1046.1,P02:single block signal,
DRN_P02,G1046.7,P02:dry run signal,
UI000_P02,G1054.0,P02:custom macro #1000,
IGNVRY_P02,G1066.0,P02:ignore servo ready,
J1+_P02,G1100.0,P02:feed 1st axis + direction,
J2+_P02,G1100.1,P02:feed 2nd axis + direction,
J3+_P02,G1100.2,P02:feed 3rd axis + direction,
J4+_P02,G1100.3,P02:feed 4th axis + direction,
J5+_P02,G1100.4,P02:feed 5th axis + direction,
J6+_P02,G1100.5,P02:feed 6th axis + direction,
J7+_P02,G1100.6,P02:feed 7th axis + direction,
J8+_P02,G1100.7,P02:feed 8th axis + direction,
J1-_P02,G1102.0,P02:feed 1st axis -direction,
J2-_P02,G1102.1,P02:feed 2nd axis - direction,
J3-_P02,G1102.2,P02:feed 3rd axis - direction,
J4-_P02,G1102.3,P02:feed 4th axis - direction,
J5-_P02,G1102.4,P02:feed 5th axis - direction,
J6-_P02,G1102.5,P02:feed 6th axis - direction,
J7-_P02,G1102.6,P02:feed 7th axis - direction,
J8-_P02,G1102.7,P02:feed 8th axis - direction,
*+L1_P02,G1114.0,P02:overtravel + 1st axis,
*+L2_P02,G1114.1,P02:overtravel + 2nd axis,
*+L3_P02,G1114.2,P02:overtravel + 3rd axis,
*+L4_P02,G1114.3,P02:overtravel + 4th axis,
*+L5_P02,G1114.4,P02:overtravel + 5th axis,
*+L6_P02,G1114.5,P02:overtravel + 6th axis,
*+L7_P02,G1114.6,P02:overtravel + 7th axis,
*+L8_P02,G1114.7,P02:overtravel + 8th axis,
*-L1_P02,G1116.0,P02:overtravel - 1st axis,
*-L2_P02,G1116.1,P02:overtravel - 2nd axis,
*-L3_P02,G1116.2,P02:overtravel - 3rd axis,
*-L4_P02,G1116.3,P02:overtravel - 4th axis,
*-L5_P02,G1116.4,P02:overtravel - 5th axis,
*-L6_P02,G1116.5,P02:overtravel - 6th axis,
*-L7_P02,G1116.6,P02:overtravel - 7th axis,
*-L8_P02,G1116.7,P02:overtravel - 8th axis,
*+ED1_P02,G1118.0,P02:external dec. + 1st axis,
*+ED2_P02,G1118.1,P02:external dec. + 2st axis,
*+ED3_P02,G1118.2,P02:external dec. + 3rd axis,
*+ED4_P02,G1118.3,P02:external dec. + 4st axis,
*+ED5_P02,G1118.4,P02:external dec. + 5st axis,
*+ED6_P02,G1118.5,P02:external dec. + 6st axis,
*+ED7_P02,G1118.6,P02:external dec. + 7st axis,
*+ED8_P02,G1118.7,P02:external dec. + 8st axis,
*-ED1_P02,G1120.0,P02:external dec. - 1st axis,
*-ED2_P02,G1120.1,P02:external dec. - 2st axis,
*-ED3_P02,G1120.2,P02:external dec. - 3rd axis,
*-ED4_P02,G1120.3,P02:external dec. - 4st axis,
*-ED5_P02,G1120.4,P02:external dec. - 5st axis,
*-ED6_P02,G1120.5,P02:external dec. - 6st axis,
*-ED7_P02,G1120.6,P02:external dec. - 7st axis,
*-ED8_P02,G1120.7,P02:external dec. - 8st axis,
SVF1_P02,G1126.0,P02:servo off 1st axis,
SVF2_P02,G1126.1,P02:servo off 2nd axis,
SVF3_P02,G1126.2,P02:servo off 3rd axis,
SVF4_P02,G1126.3,P02:servo off 4th axis,
SVF5_P02,G1126.4,P02:servo off 5th axis,
SVF6_P02,G1126.5,P02:servo off 6th axis,
SVF7_P02,G1126.6,P02:servo off 7th axis,
SVF8_P02,G1126.7,P02:servo off 8th axis,
*IT1_P02,G1130.0,P02:interlock 1st axis,
*IT2_P02,G1130.1,P02:interlock 2nd axis,
*IT3_P02,G1130.2,P02:interlock 3rd axis,
*IT4_P02,G1130.3,P02:interlock 4th axis,
*IT5_P02,G1130.4,P02:interlock 5th axis,
*IT6_P02,G1130.5,P02:interlock 6th axis,
*IT7_P02,G1130.6,P02:interlock 7th axis,
*IT8_P02,G1130.7,P02:interlock 8th axis,
EAX6_P02,G1136.5,P02:6th axis is pmc axis,
ESOFA_P02,G1142.4,P02:servo off pmc axis group A,
OVCEA_P02,G1150.5,P02:override cancel group A,
*DEC1_P02,G1196.0,P02:dec. signal 1st axis,
*DEC2_P02,G1196.1,P02:dec. signal 2nd axis,
*DEC3_P02,G1196.2,P02:dec. signal 3rd axis,
*DEC4_P02,G1196.3,P02:dec. signal 4th axis,
*DEC5_P02,G1196.4,P02:dec. signal 5th axis,
*DEC6_P02,G1196.5,P02:dec. signal 6th axis,
*DEC7_P02,G1196.6,P02:dec. signal 7th axis,
*DEC8_P02,G1196.7,P02:dec. signal 8th axis,
WPRST1_P02,G1358.0,P02:wp coord preset 1st axis,
WPRST2_P02,G1358.1,P02:wp coord preset 2nd axis,
WPRST3_P02,G1358.2,P02:wp coord preset 3rd axis,
WPRST4_P02,G1358.3,P02:wp coord preset 4th axis,
WPRST5_P02,G1358.4,P02:wp coord preset 5th axis,
WPRST6_P02,G1358.5,P02:wp coord preset 6th axis,
WPRST7_P02,G1358.6,P02:wp coord preset 7th axis,
WPRST8_P02,G1358.7,P02:wp coord preset 8th axis,
MCST1_P02,G1512.0,P02:macro call 1 start,
MCST2_P02,G1512.1,P02:macro call 2 start,
MCST3_P02,G1512.2,P02:macro call 3 start,
MCST4_P02,G1512.3,P02:macro call 4 start,
MCFIN_P02,G1514.0,P02:mode change completion,
INIT_F_P01,R0064.0,P01:initialisation finished,
SETMEM_P01,R0080.0,P01:force to mode mem,
SETSBK_P01,R0080.1,P01:force to single block,
SETDNC_P01,R0080.2,P01:force to dnc operation,
SETEDT_P01,R0080.3,P01:force to mode edit,
SETMDI_P01,R0080.4,P01:force to mode mdi,
SETJOG_P01,R0080.5,P01:force to mode jog,
SETREF_P01,R0080.6,P01:force mode ref,
SET_HD_P01,R0080.7,P01:force to mode handle,
SETINC_P01,R0081.0,P01:force to mode inc feed,
SETTCH_P01,R0081.1,P01:force teach in,
M_AUTO_P01,R0082.0,P01:automatic mode active,
M_MAN_P01,R0082.1,P01:manual mode active,
O_STOP_P01,R0082.2,P01:optional stop m01 active,
FEPGMT_P01,R0082.3,P01:falling edge program test,
MDCHEN_P01,R0082.4,P01:mode change enable,
M_MEM_P01,R0083.0,P01:mode mem selected,
M_EDT_P01,R0083.1,P01:mode edit selected,
M_MDI_P01,R0083.2,P01:mode mdi selected,
M_DNC_P01,R0083.3,P01:mode dnc selected,
M_JOG_P01,R0083.4,P01:mode jog selected,
M_REF_P01,R0083.5,P01:mode REF selected,
M_HD_P01,R0083.6,P01:mode HANDLE selected,
M_INC_P01,R0083.7,P01:mode INC selected,
M_REFJ_P01,R0084.0,P01:jog mode during ref,
M_TEACH_P01,R0084.1,P01:mode TEACH IN selected,
D_JOGMV_P01,R0084.2,P01:delay jog move,
m_mmem_P01,R0088.0,P01:memory mode mem,
m_medt_P01,R0088.1,P01:memory mode edit,
m_mmdi_P01,R0088.2,P01:memory mode mdi,
m_mref_P01,R0088.3,P01:memory mode ref,
m_mj_P01,R0088.4,P01:memory mode jog,
m_mhdi_P01,R0088.5,P01:memory mode handle / inc,
m_mdnc_P01,R0088.6,P01:memory dnc mode,
mk_sbk_P01,R0089.0,P01:memory key single block,
reksbk_P01,R0089.1,P01:re key single block,
mkskip_P01,R0089.2,P01:memory key skip,
rekskp_P01,R0089.3,P01:rising edge key skip,
mkostp_P01,R0089.4,P01:memory key optional stop,
rekosp_P01,R0089.5,P01:re key optional stop,
mk_drn_P01,R0089.6,P01:memory key dry run,
rekdrn_P01,R0089.7,P01:rising edge key dry run,
mkpgmt_P01,R0090.0,P01:memory key program test,
repgmt_P01,R0090.1,P01:rising edge key pgm test,
m_pgmt_P01,R0090.2,P01:memory program test,
hdsel_P01,R0090.3,P01:handle selected,
incsel_P01,R0090.4,P01:inc selected,
mdrefx_P01,R0090.5,P01:memory ref without dog,
rekteach_P01,R0091.0,P01:re key teach in,
mkteach_P01,R0091.1,P01:mem key teach in,
m_tchin_P01,R0091.2,P01:memory mode teach in,
re_krest_P01,R0091.3,P01:re program restart,
mkrest_P01,R0091.4,P01:mem key program restart,
M000_P01,R0100.0,P01:stop program run,
M001_P01,R0100.1,P01:optional stop,
M002_P01,R0100.2,P01:end of program,
M003_P01,R0100.3,P01:spindle start cw,
M004_P01,R0100.4,P01:spindle start ccw,
M005_P01,R0100.5,P01:spindle stop,
M006_P01,R0100.6,P01:tool change,
M007_P01,R0100.7,,
M008_P01,R0101.0,P01:coolant on,
M009_P01,R0101.1,P01:coolant off,
M010_P01,R0101.2,,
M011_P01,R0101.3,,
M012_P01,R0101.4,,
M013_P01,R0101.5,P01:sp start cw coolant on,
M014_P01,R0101.6,P01:sp start ccw coolant on,
M015_P01,R0101.7,,
M016_P01,R0102.0,,
M017_P01,R0102.1,,
M018_P01,R0102.2,,
M019_P01,R0102.3,P01:spindle orientation,
M020_P01,R0102.4,,
M021_P01,R0102.5,,
M022_P01,R0102.6,,
M023_P01,R0102.7,,
M024_P01,R0103.0,,
M025_P01,R0103.1,,
M026_P01,R0103.2,,
M027_P01,R0103.3,P01:Cs contour ctrl on,
M028_P01,R0103.4,P01:Cs contour ctrl off,
M029_P01,R0103.5,P01:rigid tapping,
M030_P01,R0103.6,P01:end of program,
M031_P01,R0103.7,,
M032_P01,R0104.0,,
M033_P01,R0104.1,,
M034_P01,R0104.2,,
M035_P01,R0104.3,,
M036_P01,R0104.4,,
M037_P01,R0104.5,,
M038_P01,R0104.6,,
M039_P01,R0104.7,,
M040_P01,R0105.0,,
M041_P01,R0105.1,,
M042_P01,R0105.2,,
M043_P01,R0105.3,,
M044_P01,R0105.4,,
M045_P01,R0105.5,,
M046_P01,R0105.6,,
M047_P01,R0105.7,,
M048_P01,R0106.0,,
M049_P01,R0106.1,,
M050_P01,R0106.2,,
M051_P01,R0106.3,,
M052_P01,R0106.4,,
M053_P01,R0106.5,,
M054_P01,R0106.6,,
M055_P01,R0106.7,,
M056_P01,R0107.0,,
M057_P01,R0107.1,,
M058_P01,R0107.2,,
M059_P01,R0107.3,,
M060_P01,R0107.4,,
M061_P01,R0107.5,,
M062_P01,R0107.6,,
M063_P01,R0107.7,,
M064_P01,R0108.0,,
M065_P01,R0108.1,,
M066_P01,R0108.2,,
M067_P01,R0108.3,,
M068_P01,R0108.4,,
M069_P01,R0108.5,,
M070_P01,R0108.6,,
M071_P01,R0108.7,,
M072_P01,R0109.0,,
M073_P01,R0109.1,,
M074_P01,R0109.2,,
M075_P01,R0109.3,,
M076_P01,R0109.4,,
M077_P01,R0109.5,,
M078_P01,R0109.6,,
M079_P01,R0109.7,,
M080_P01,R0110.0,,
M081_P01,R0110.1,,
M082_P01,R0110.2,,
M083_P01,R0110.3,,
M084_P01,R0110.4,,
M085_P01,R0110.5,,
M086_P01,R0110.6,,
M087_P01,R0110.7,,
M088_P01,R0111.0,,
M089_P01,R0111.1,,
M090_P01,R0111.2,,
M091_P01,R0111.3,,
M092_P01,R0111.4,,
M093_P01,R0111.5,,
M094_P01,R0111.6,,
M095_P01,R0111.7,,
M096_P01,R0112.0,,
M097_P01,R0112.1,,
M100_P01,R0112.4,P01:wp coord preset all axes,
M101_P01,R0112.5,P01:wp coord preset 1st axis,
M102_P01,R0112.6,P01:wp coord preset 2nd axis,
M103_P01,R0112.7,P01:wp coord preset 3rd axis,
M104_P01,R0113.0,P01:wp coord preset 4th axis,
M105_P01,R0113.1,P01:wp coord preset 5th axis,
M106_P01,R0113.2,P01:wp coord preset 6th axis,
M107_P01,R0113.3,P01:wp coord preset 7th axis,
M108_P01,R0113.4,P01:wp coord preset 8th axis,
M112_P01,R0114.0,,
M120_P01,R0115.0,,
M128_P01,R0116.0,,
M136_P01,R0117.0,,
M144_P01,R0118.0,,
M152_P01,R0119.0,,
M160_P01,R0120.0,,
M168_P01,R0121.0,,
M176_P01,R0122.0,,
M184_P01,R0123.0,,
M192_P01,R0124.0,,
M198_P01,R0124.6,external subprogram call,
M200_P01,R0125.0,,
M208_P01,R0126.0,,
M216_P01,R0127.0,,
M224_P01,R0128.0,,
M232_P01,R0129.0,,
M240_P01,R0130.0,,
M248_P01,R0131.0,,
M256_P01,R0132.0,,
M264_P01,R0133.0,,
M272_P01,R0134.0,,
M280_P01,R0135.0,,
M288_P01,R0136.0,,
M296_P01,R0137.0,,
M304_P01,R0138.0,,
M312_P01,R0139.0,,
M320_P01,R0140.0,,
M328_P01,R0141.0,,
M336_P01,R0142.0,,
M344_P01,R0143.0,,
M352_P01,R0144.0,,
M360_P01,R0145.0,,
M368_P01,R0146.0,,
M376_P01,R0147.0,,
M384_P01,R0148.0,,
M392_P01,R0149.0,,
M_NOK_P01,R0153.0,m-code out of range,
m1code_P01,R0154.0,P01:1st m code is active,
m1codm_P01,R0154.1,P01:memory 1st m code active,
rem1co_P01,R0154.2,P01:re 1st m code active,
fem1co_P01,R0154.3,P01:fe 1st m code active,
m1cook_P01,R0154.4,P01:impulse 1st m code ok,
erm1co_P01,R0154.5,P01:range error 1st m code,
edivm1_P01,R0154.6,P01:divsion error 1st m code,
exmwm1_P01,R0154.7,P01:error writing 1st m code,
m1exec_P01,R0155.0,P01:1st m-function executed,
m1fin_P01,R0155.1,P01:1st m-function finished,
m2code_P01,R0155.2,P01:2nd m code is active,
m2codm_P01,R0155.3,P01:memory 2nd m code active,
rem2co_P01,R0155.4,P01:re 2nd m code active,
fem2co_P01,R0155.5,P01:fe 2nd m code active,
m2cook_P01,R0155.6,P01:impulse 2nd m code ok,
erm2co_P01,R0155.7,P01:range error 2nd m code,
edivm2_P01,R0156.0,P01:divsion error 2nd m code,
exmwm2_P01,R0156.1,P01:error writing 2nd m code,
m2exec_P01,R0156.2,P01:2nd m-function executed,
m2fin_P01,R0156.3,P01:2nd m-function finished,
m3code_P01,R0156.4,P01:3rd m code is active,
m3codm_P01,R0156.5,P01:memory 3rd m code active,
rem3co_P01,R0156.6,P01:re 3rd m code active,
fem3co_P01,R0156.7,P01:fe 3rd m code active,
m3cook_P01,R0157.0,P01:impulse 3rd m code ok,
erm3co_P01,R0157.1,P01:range error 3rd m code,
edivm3_P01,R0157.2,P01:divsion error 3rd m code,
exmwm3_P01,R0157.3,P01:error writing 3rd m code,
m3exec_P01,R0157.4,P01:3rd m-function executed,
m3fin_P01,R0157.5,P01:3rd m-function finished,
exr1m2_P01,R0157.6,P01:error reading 2nd m code,
exr1m3_P01,R0157.7,P01:error reading 3rd m code,
m4code_P01,R0158.0,P01:4th m-code is active,
m4codm_P01,R0158.1,P01:memory 4th m-code active,
rem4co_P01,R0158.2,P01:re 4th m-code active,
fem4co_P01,R0158.3,P01:fe 4th m-code active,
m4cook_P01,R0158.4,P01:impulse 4th m-code ok,
erm4co_P01,R0158.5,P01:range error 4th m-code,
edivm4_P01,R0158.6,P01:divsion error 4th m-code,
exmwm4_P01,R0158.7,P01:error writing 4th m-code,
m4exec_P01,R0159.0,P01:4th m-function executed,
m4fin_P01,R0159.1,P01:4th m-function finished,
exr1m4_P01,R0159.2,P01:error reading 4th m-code,
m5code_P01,R0159.3,P01:5th m-code is active,
m5codm_P01,R0159.4,P01:memory 5th m-code active,
rem5co_P01,R0159.5,P01:re 5th m-code active,
fem5co_P01,R0159.6,P01:fe 5th m-code active,
m5cook_P01,R0159.7,P01:impulse 5th m-code ok,
erm5co_P01,R0160.0,P01:range error 5th m-code,
edivm5_P01,R0160.1,P01:divsion error 5th m-code,
exmwm5_P01,R0160.2,P01:error writing 5th m-code,
m5exec_P01,R0160.3,P01:5th m-function executed,
m5fin_P01,R0160.4,P01:5th m-function finished,
exr1m5_P01,R0160.5,P01:error reading 5th m-code,
SP_CW_P01,R0176.0,P01:spindle start cw,
SP_CCW_P01,R0176.1,P01:spindle start ccw,
RE_SCH_P01,R0176.2,P01:rising edge speed change,
s_code_P01,R0180.0,P01:s_code active,
s_fin_P01,R0180.1,P01:s_code finished,
nospch_P01,R0180.2,P01:no spindle speed change,
ms_cod_P01,R0180.3,P01:memory s_code,
mspcw_P01,R0180.4,P01:manual spindle start cw,
mspccw_P01,R0180.5,P01:manual spindle start ccw,
msp_sp_P01,R0180.6,P01:manual spindle stop,
sp_m_P01,R0181.0,P01:memory spindle turning,
spccwm_P01,R0181.1,P01:memory spindle turning ccw,
s_stpc_P01,R0181.2,P01:spindle stop conditions,
aspcw_P01,R0181.3,P01:sp start cw in auto-mode,
aspccw_P01,R0181.4,P01:sp start ccw in auto-mode,
t_code_P01,R0244.0,P01:t code active,
t_fin_P01,R0244.1,P01:t code finished,
b_code_P01,R0292.0,P01:b code is active,
b_fin_P01,R0292.1,P01:b code finished,
M_K1AX_P01,R0304.0,P01:memory 1st axis selected,
M_K2AX_P01,R0304.1,P01:memory 2nd axis selected,
M_K3AX_P01,R0304.2,P01:memory 3rd axis selected,
M_K4AX_P01,R0304.3,P01:memory 4th axis selected,
M_K5AX_P01,R0304.4,P01:memory 5th axis selected,
M_K6AX_P01,R0304.5,P01:memory 6th axis selected,
M_K7AX_P01,R0304.6,P01:memory 7th axis selected,
M_K8AX_P01,R0304.7,P01:memory 8th axis selected,
M_KPLUS_P01,R0305.0,P01:memory axis plus dir.,
M_KMINUS_P01,R0305.1,P01:memory axis minus dir.,
AX_MEN_P01,R0305.2,P01:axis move enable,
PGMRUN_P01,R0320.0,P01:program running,
ST_EN_P01,R0320.1,P01:program start enable,
RE_RST_P01,R0320.2,P01:rising edge reset,
FE_RST_P01,R0320.3,P01:falling edge reset,
MESRST_P01,R0320.4,P01:message reset,
RE_KST_P01,R0320.5,P01:re key cycle start,
M_KST_P01,R0320.6,P01:memory key cycle start,
M_STDIS_P01,R0320.7,P01:message start disable,
st_dis_P01,R0324.0,P01:program start disable,
m_rst_P01,R0324.1,P01:memory reset,
delrrw_P01,R0324.2,P01:delay for rrw signal,
rrwact_P01,R0324.3,P01:reset and rewind active,
re_stl_P01,R0324.4,P01:re stl signal,
m_stl_P01,R0324.5,P01:memory stl signal,
POW_OK_P01,R0336.0,P01:power supply axis ok,
SETUP_P01,R0336.1,P01:set-up active,
AXMOV_P01,R0352.0,P01:axes moving,
SER_ON_P01,R0352.1,P01:servo on,
REFRUN_P01,R0352.2,P01:reference return active,
D_REFx_P01,R0352.3,P01:ref return without dog,
REQWP1_P01,R0353.0,P01:req wp coord preset 1st ax,
REQWP2_P01,R0353.1,P01:req wp coord preset 2nd ax,
REQWP3_P01,R0353.2,P01:req wp coord preset 3rd ax,
REQWP4_P01,R0353.3,P01:req wp coord preset 4th ax,
REQWP5_P01,R0353.4,P01:req wp coord preset 5th ax,
REQWP6_P01,R0353.5,P01:req wp coord preset 6th ax,
REQWP7_P01,R0353.6,P01:req wp coord preset 7th ax,
REQWP8_P01,R0353.7,P01:req wp coord preset 8th ax,
mwpset_P01,R0356.0,P01:mem wp coordinate setting,
COOLON_P01,R0368.0,P01:coolant on,