summaryrefslogtreecommitdiff
path: root/docs/src/code/NML_Messages.txt
blob: 179a99d9d69263059e1d81e325926e28a68f2142 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
= NML Messages

== EMC OPERATOR

=== EMC_OPERATOR_ERROR_TYPE

Description, NML Type: textual error message to the operator, 11

Written From: emccanon.cc, iosh.cc

Read To: emctaskmain.cc, emcsh.cc

Parameter, Type: [error, char[LINELEN]]

=== EMC_OPERATOR_TEXT_TYPE

Description, NML Type: textual information message to the operator, 12

Written From: emctaskmain.cc

Read To: emctaskmain.cc, emcsh.cc

Parameter, Type: [text, char[LINELEN]]

=== EMC_OPERATOR_DISPLAY_TYPE

Description, NML Type: URL or filename of a document to display, 13

Obs: not used, only read

Written From: none

Read To: emctaskmain.cc, emcsh.cc

Parameter, Type: [display, char[LINELEN]]

== EMC NULL, SET, DEBUG, & SYSTEM

=== EMC_NULL_TYPE

Description, NML Type: used to reset serial number to original, 21

Written From: thisQuit (emcsh.cc)

Read To: emctaskmain.cc

Parameter, Type: none

=== EMC_SET_DEBUG_TYPE

Description, NML Type: sets debug level, 22

Written From: emcIoSetDebug (iotaskintf.cc), sendDebug (emcsh.cc)

Read To: emctaskmain.cc, ioControl.cc

Parameter, Type: [debug, int]

=== EMC_SYSTEM_CMD_TYPE

Description, NML Type: execute a system command, 30

Written From: user_defined_add_m_code (emctask.cc)

Read To: emcSystemCmd (emctaskmain.cc)

Parameter, Type: [string, char[LINELEN]]

== EMC AXIS

=== EMC_AXIS_SET_AXIS_TYPE

Description, NML Type: axis type to linear or angular, 101

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [axisType, unsigned char]

=== EMC_AXIS_SET_UNITS_TYPE

Description, NML Type: units conversion factor, 102

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [units, double]

=== EMC_AXIS_SET_GAINS_TYPE

Description, NML Type: Set the PID gains, 103

Obs: currently not used in EMC2, needs to go to HAL

Written From: none

Read To: emctaskmain.cc

++++
Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]
[p, double] [i,double] [d, double]
[ff0, double] [ff1, double] [ff2, double]
[backlash, double] [bias, double] [maxError, double]
++++

=== EMC_AXIS_SET_CYCLE_TIME_TYPE

Description, NML Type: cycle time for the servo task, 104

Written From: none

Read To: emctaskmain.cc

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [cycleTime, double]

=== EMC_AXIS_SET_INPUT_SCALE_TYPE

Description, NML Type: scale factor and offset for the position input, 105

Obs: currently if 0'ed, used only directly from iniaxis

Written From: none

++++
Read To: emcTaskIssueCommand (emctaskmain.cc)
calls emcAxisSetInputScale (minimill|bridgeporttaskintf.cc)
which sends EMCMOT_SET_INPUT_SCALE
++++

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [scale, double] [offset, double]

=== EMC_AXIS_SET_OUTPUT_SCALE_TYPE

Description, NML Type: scale factor and offset for the position
output, 106

Obs: currently if 0'ed, used only directly from iniaxis

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc)

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [scale, double] [offset, double]

=== EMC_AXIS_SET_MIN_POSITION_LIMIT_TYPE

Description, NML Type: sets min limit, 107

Obs: also handled by iniaxis which directly calls emcAxisSetMinPositionLimit

Written From: none

++++
Read To: emcTaskIssueCommand (emctaskmain.cc)
calls emcAxisSetMinPositionLimit (taskintf.cc)
which sends EMCMOT_SET_POSITION_LIMITS
++++

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [limit, double]

=== EMC_AXIS_SET_MAX_POSITION_LIMIT_TYPE

Description, NML Type: sets max limit, 108

Obs: also handled by iniaxis which directly calls emcAxisSetMaxPositionLimit

Written From: none

++++
Read To: emcTaskIssueCommand (emctaskmain.cc)
calls emcAxisSetMaxPositionLimit (taskintf.cc)
which sends EMCMOT_SET_POSITION_LIMITS
++++

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [limit, double]

=== EMC_AXIS_SET_MIN_OUTPUT_LIMIT_TYPE

Description, NML Type: -, 109

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [limit, double]

=== EMC_AXIS_SET_MAX_OUTPUT_LIMIT_TYPE

Description, NML Type: -, 110

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [limit, double]

=== EMC_AXIS_SET_FERROR_TYPE

Description, NML Type: sets max following error, 111

Obs: also handled by iniaxis which directly calls emcAxisSetFerror

Written From: none

++++
Read To: emcTaskIssueCommand (emctaskmain.cc)
calls emcAxisSetFerror (taskintf.cc)
which sends EMCMOT_SET_MAX_FERROR
++++

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [ferror, double]

=== EMC_AXIS_SET_HOMING_VEL_TYPE

Description, NML Type: -, 112

Obs: in EMC2 those are SET_HOMING_PARAMS double home, double offset,
double search_vel, double latch_vel, int use_index, int ignore_limits,

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [ferror, double]

=== EMC_AXIS_SET_HOME_TYPE

Description, NML Type: -, 113

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [homingVel, double]

=== EMC_AXIS_SET_HOME_OFFSET_TYPE

Description, NML Type: -, 114

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [home, double]

=== EMC_AXIS_SET_MIN_FERROR_TYPE

Description, NML Type: sets min following error, 115

Obs: also handled by iniaxis which directly calls emcAxisSetMinFerror

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisSetMinFerror (taskintf.cc) +
which sends EMCMOT_SET_MIN_FERROR

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [offset, double]

=== EMC_AXIS_SET_MAX_VELOCITY_TYPE

Description, NML Type: sets max. velocity, 116

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [vel, double]

=== EMC_AXIS_INIT_TYPE

Description, NML Type: -, 118

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_HALT_TYPE

Description, NML Type: -, 119

Obs: not used, only read

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisHalt (taskintf.cc)

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_ABORT_TYPE

Description, NML Type: aborts motion on an axis (e.g. GUI jogs), 120

Obs: used from the GUI when stopping a manual jog

Written From: sendJogStop (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisAbort (taskintf.cc) +
which sends EMCMOT_AXIS_ABORT

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_ENABLE_TYPE

Description, NML Type: enables axis, 121

Obs: not used from tkemc & mini

Written From: sendAxisEnable (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisEnable (taskintf.cc) +
which sends EMCMOT_ENABLE_AMPLIFIER

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_DISABLE_TYPE

Description, NML Type: disable axis, 122

Obs: not used from tkemc & mini

Written From: sendAxisDisable (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisDisable (taskintf.cc) +
which sends EMCMOT_DISABLE_AMPLIFIER

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_HOME_TYPE

Description, NML Type: home an axis at current position, 123

Obs: used from tkemc & mini through emc_home

Written From: sendHome (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisHome (taskintf.cc) +
which sends EMCMOT_HOME

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_JOG_TYPE

Description, NML Type: jogs an axis continuously, 124

Obs: used on jogging

Written From: sendJogCont (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisJog (taskintf.cc) +
which sends EMCMOT_JOG_CONT

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [vel, double]

=== EMC_AXIS_INCR_JOG_TYPE

Description, NML Type: jogs an axis with an increment, 125

Obs: used on jogging

Written From: sendJogIncr (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisIncrJog (taskintf.cc) +
which sends EMCMOT_JOG_INCR

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] +
incr, double] [vel, double]

=== EMC_AXIS_ABS_JOG_TYPE

Description, NML Type: jogs an axis with an absolute value, 126

Obs: not used, only read

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisAbsJog (taskintf.cc) +
which sends EMCMOT_JOG_ABS

++++
Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]
[pos, double] [vel, double]
++++

=== EMC_AXIS_ACTIVATE_TYPE

Description, NML Type: -, 127

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_DEACTIVATE_TYPE

Description, NML Type: -, 128

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_OVERRIDE_LIMITS_TYPE

Description, NML Type: overrides min/max limits during homing, 129

Obs: used from tkemc & mini through emc_override_limit

Written From: sendOverrideLimits (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisOverrideLimits (taskintf.cc) +
which sends EMCMOT_OVERRIDE_LIMITS

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int]

=== EMC_AXIS_SET_OUTPUT_TYPE

Description, NML Type: sets an DAC output value, 130

Obs: currently not used in EMC2, needs to go to HAL

Written From: sendAxisSetOutput (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisSetOutput (taskintf.cc) +
which sends EMCMOT_DAC_OUT

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [output, double]

=== EMC_AXIS_LOAD_COMP_TYPE

Description, NML Type: loads compensation values from a file, 131

Obs: currently usrmotLoadComp if 0'ed in EMC2

Written From: sendAxisLoadComp (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisLoadComp (minimill|bridgeporttaskintf.cc) +
which calls usrmotLoadComp

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [file, char[LINELEN]]

=== EMC_AXIS_ALTER_TYPE

Description, NML Type: loads the alter value to modify the axis
position, 132

Written From: sendAxisAlter (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisAlter (taskintf.cc) +
which calls usrmotAlter

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [alter, double]

=== EMC_AXIS_SET_STEP_PARAMS_TYPE

Description, NML Type: was used to set step related params, 133

Obs: currently not used in EMC2, needs to go to HAL +
        (maybe directly from the ini, not through NML)

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcAxisSetStepParams (taskintf.cc) +
which sends EMCMOT_SET_STEP_PARAMS

Parameter, Type: [axis (in EMC_AXIS_CMD_MSG), int] [setup_time,
double] [hold_time, double]

=== EMC_AXIS_STAT_TYPE

Description, NML Type: status for axis, not sent as a message but used as is, 199

Written From: none

Read To: none

Parameter, Type: [a HUGE load of params]

== EMC TRAJ

=== EMC_TRAJ_SET_AXES_TYPE

Description, NML Type: -, 201

Obs: not used

Written From: none

Read To: none

Parameter, Type: [axes, int]

=== EMC_TRAJ_SET_UNITS_TYPE

Description, NML Type: -, 202

Obs: not used

Written From: none

Read To: none

Parameter, Type: [linearUnits, double] [angularUnits, double]

=== EMC_TRAJ_SET_CYCLE_TIME_TYPE

Description, NML Type: -, 203

Obs: not used

Written From: none

Read To: none

Parameter, Type: [cycleTime, double]

=== EMC_TRAJ_SET_MODE_TYPE

Description, NML Type: -, 204

Obs: not used

Written From: none

Read To: none

Parameter, Type: [mode, enum EMC_TRAJ_MODE_ENUM]

=== EMC_TRAJ_SET_VELOCITY_TYPE

Description, NML Type: sends a request to set the vel, which is in
internal units/sec, 205

Written From: sendVelMsg (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetVelocity (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_VEL

Parameter, Type: [velocity, double]

=== EMC_TRAJ_SET_ACCELERATION_TYPE

Description, NML Type: -, 206

Obs: not used

Written From: none

Read To: none

Parameter, Type: [acceleration, double]

=== EMC_TRAJ_SET_MAX_VELOCITY_TYPE

Description, NML Type: -, 207

Obs: not used

Written From: none

Read To: none

Parameter, Type: [velocity, double]

=== EMC_TRAJ_SET_MAX_ACCELERATION_TYPE

Description, NML Type: -, 208

Obs: not used

Written From: none

Read To: none

Parameter, Type: [acceleration, double]

=== EMC_TRAJ_SET_SCALE_TYPE

Description, NML Type: set the feed override to be the percent value, 209

Obs: used for feed override messages

Written From: sendFeedOverride (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetScale (taskintf.cc) +
which sends EMCMOT_SCALE

Parameter, Type: [scale, double]

=== EMC_TRAJ_SET_MOTION_ID_TYPE

Description, NML Type: -, 210

Obs: not used

Written From: none

Read To: none

Parameter, Type: [id, int]

=== EMC_TRAJ_INIT_TYPE

Description, NML Type: -, 211

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_TRAJ_HALT_TYPE

Description, NML Type: -, 212

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_TRAJ_ENABLE_TYPE

Description, NML Type: -, 213

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_TRAJ_DISABLE_TYPE

Description, NML Type: -, 214

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_TRAJ_ABORT_TYPE

Description, NML Type: causes traj to abort ?, 215

Obs: not used, only read

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajAbort (taskintf.cc) +
which sends EMCMOT_ABORT

Parameter, Type:

=== EMC_TRAJ_PAUSE_TYPE

Description, NML Type: causes traj to pause ?, 216

Obs: not used, only read

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajPause (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_PAUSE

Parameter, Type:

=== EMC_TRAJ_STEP_TYPE

Description, NML Type: -, 217

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_TRAJ_RESUME_TYPE

Description, NML Type: causes traj to resume ?, 218

Obs: not used, only read

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajResume (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_RESUME

Parameter, Type:

=== EMC_TRAJ_DELAY_TYPE

Description, NML Type: sets a delay in the task execution, 219

Obs: used with dwelling

Written From: DWELL (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc)

Parameter, Type: [delay, double]

=== EMC_TRAJ_LINEAR_MOVE_TYPE

Description, NML Type: sends a linear move from the interp to motion, 220

Obs: used

Written From: STRAIGHT_TRAVERSE, ARC_FEED (emccanon.cc)

Read To: checkInterpList, emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajLinearMove (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_LINE

Parameter, Type: [end, EmcPose]

=== EMC_TRAJ_CIRCULAR_MOVE_TYPE

Description, NML Type: sends a circular move from the interp to
motion, 221

Obs: used

Written From: ARC_FEED (emccanon.cc)

Read To: checkInterpList, emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajCircularMove (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_CIRCLE

++++
Parameter, Type: [end, EmcPose] [center, PM_CARTESIAN] 
[normal, PM_CARTESIAN] [turn, int]
++++

=== EMC_TRAJ_SET_TERM_COND_TYPE

Description, NML Type: chooses between blending or exact path mode, 222

Obs: used, seems the interp knows exact PATH, STOP and BLEND, motion
however knows only BLEND or STOP

Written From: SET_MOTION_CONTROL_MODE (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetTermCond (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_TERM_COND_STOP or EMCMOT_TERM_COND_BLEND

Parameter, Type: [cond, int]

=== EMC_TRAJ_SET_OFFSET_TYPE

Description, NML Type: is used for tool length offset, 223

Obs: used, the message could transport more than just Z offset used
for tool length

Written From: USE_TOOL_LENGTH_OFFSET (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
`                `remembers the origin offset into emcStatus\->task.origin

Parameter, Type: [offset, EmcPose]

=== EMC_TRAJ_SET_ORIGIN_TYPE

Description, NML Type: sets the origin coords ?, 224

Obs: used

Written From: SET_ORIGIN_OFFSETS (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
remembers the tool length offset

Parameter, Type: [origin, EmcPose]

=== EMC_TRAJ_SET_HOME_TYPE

Description, NML Type: -, 225

Obs: not used

Written From: none

Read To: none

Parameter, Type: [home, EmcPose]

=== EMC_TRAJ_SET_PROBE_INDEX_TYPE

Description, NML Type: sends the index pin used for probing, 226

Obs: should get obsolete, probin pin should get routed by HAL

Written From: sendSetProbeIndex (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetProbeIndex (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_PROBE_INDEX

Parameter, Type: [index, int]

=== EMC_TRAJ_SET_PROBE_POLARITY_TYPE

Description, NML Type: sends the polarity for the pin used for
probing, 227

Obs: should get obsolete, probin pin polarity should get routed by HAL

Written From: sendSetProbePolarity (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetProbePolarity (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_PROBE_POLARITY

Parameter, Type: [polarity, int]

=== EMC_TRAJ_CLEAR_PROBE_TRIPPED_FLAG_TYPE

Description, NML Type: clears the probe tripped, 228

Obs: used

Written From: TURN_PROBE_ON (emccanon.cc) +
sendClearProbeTrippedFlag (emcsh.cc) +

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajClearProbeTrippedFlag (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_CLEAR_PROBE_FLAGS

Parameter, Type:

=== EMC_TRAJ_PROBE_TYPE

Description, NML Type: performs a straight probe move, 229

Obs: used

Written From: STRAIGHT_PROBE (emccanon.cc) sendProbe (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajProbe (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_PROBE

Parameter, Type: [pos, EmcPose]

=== EMC_TRAJ_SET_TELEOP_ENABLE_TYPE

Description, NML Type: sets the traj mode to teleop, 230

Obs: used

Written From: sendSetTeleopEnable (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetMode (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_TELEOP

Parameter, Type: [enable, int]

=== EMC_TRAJ_SET_TELEOP_VECTOR_TYPE

Description, NML Type: jogs in teleop mode, 231

Obs: used for jogging in teleop mode

Written From: sendJogCont (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTrajSetTeleopVector (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_TELEOP_VECTOR

Parameter, Type: [vector, EmcPose]

=== EMC_TRAJ_STAT_TYPE

Description, NML Type: status for traj, not sent as a message but used as is, 299

Written From: none

Read To: none

Parameter, Type: [a HUGE load of params]

== EMC MOTION

=== EMC_MOTION_INIT_TYPE

Description, NML Type: -, 301

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_MOTION_HALT_TYPE

Description, NML Type: -, 302

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_MOTION_ABORT_TYPE

Description, NML Type: -, 303

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_MOTION_SET_AOUT_TYPE

Description, NML Type: sets an analog output value coordinated with motion, 304

Obs: emccanon.cc currently lacks this in EMC2, not used in EMC2, needs to go to HAL

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcMotionSetAout (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_AOUT

++++
Parameter, Type: [index, unsigned char] [start, double] 
[end, double] [now, unsigned char]
++++

=== EMC_MOTION_SET_DOUT_TYPE

Description, NML Type: sets an digital output value coordinated with motion, 305

Obs: emccanon.cc currently lacks this in EMC2, not used in EMC2, needs to go to HAL

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcMotionSetDout (minimill | bridgeporttaskintf.cc) +
which sends EMCMOT_SET_DOUT

Parameter, Type: [index, unsigned char] [start, double] [end, double]

=== EMC_MOTION_STAT_TYPE

Description, NML Type: status for motion, not sent as a message but used as is, 399

Written From: none

Read To: none

++++
Parameter, Type: [heartbeat, unsigned long int] [traj, EMC_TRAJ_STAT]
[axis[EMC_AXIS_MAX], EMC_AXIS_STAT]
++++

== EMC TASK

=== EMC_TASK_INIT_TYPE

Description, NML Type: calls the Task init(), 501

Obs: not used, emcTaskInit called directly from emctask_startup()

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) calls emcTaskInit()

Parameter, Type:

=== EMC_TASK_HALT_TYPE

Description, NML Type: -, 502

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_ABORT_TYPE

Description, NML Type: aborts task, cleans up, 503

Obs: used on shutdown

Written From: sendAbort (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) aborts all

Parameter, Type:

=== EMC_TASK_SET_MODE_TYPE

Description, NML Type: sets current TASK mode, MANUAL, MDI, AUTO, 504

Obs: used for switching the current mode

Written From: sendManual sendMdi sendAuto (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcTaskSetMode (emcTask.cc)

Parameter, Type: [mode, enum EMC_TASK_MODE_ENUM]

=== EMC_TASK_SET_STATE_TYPE

Description, NML Type: , 505

Written From: none

Read To: none

Parameter, Type: [state, enum EMC_TASK_STATE_ENUM]

=== EMC_TASK_PLAN_OPEN_TYPE

Description, NML Type: , 506

Written From: none

Read To: none

Parameter, Type: [file, char[LINELEN]]

=== EMC_TASK_PLAN_RUN_TYPE

Description, NML Type: , 507

Written From: none

Read To: none

Parameter, Type: [line, int]

=== EMC_TASK_PLAN_READ_TYPE

Description, NML Type: , 508

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_EXECUTE_TYPE

Description, NML Type: , 509

Written From: none

Read To: none

Parameter, Type: [command, char[LINELEN]]

=== EMC_TASK_PLAN_PAUSE_TYPE

Description, NML Type: , 510

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_STEP_TYPE

Description, NML Type: , 511

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_RESUME_TYPE

Description, NML Type: , 512

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_END_TYPE

Description, NML Type: , 513

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_CLOSE_TYPE

Description, NML Type: , 514

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_INIT_TYPE

Description, NML Type: , 515

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_PLAN_SYNCH_TYPE

Description, NML Type: , 516

Written From: none

Read To: none

Parameter, Type:

=== EMC_TASK_STAT_TYPE

Description, NML Type: , 599

Written From: none

Read To: none

Parameter, Type: [heartbeat, unsigned long int] [a HUGE load of params]

== EMC TOOL

=== EMC_TOOL_INIT_TYPE

Description, NML Type: starts TOOL init, 1101

Obs: used for initializing the IO stuff, should load the tool table too

Written From: emcIoInit (iotaskintf.cc)

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type:

=== EMC_TOOL_HALT_TYPE

Description, NML Type: stops TOOL, 1102

Obs: used for stopping IO, doesn't actually do anything so far, in
EMC1 it was send to subordinates too (spindle, aux, coolant, lube)

Written From: emcIoHalt (iotaskintf.cc)

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type:

=== EMC_TOOL_ABORT_TYPE

Description, NML Type: aborts TOOL, 1103

Obs: used for aborting IO, doesn't actually do anything so far, in
EMC1 it was send to subordinates too (spindle, aux, coolant, lube)

Written From: emcIoAbort (iotaskintf.cc)

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type:

=== EMC_TOOL_PREPARE_TYPE

Description, NML Type: prepares a tool for tool changing, 1104

Obs: loads the prep tool in emcioStatus.tool.toolPrepped, should go to
PLC and make it move the desired tool in the toolchanging position

Written From: SELECT_TOOL (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcToolPrepare (iotaskintf.cc) +
which sends it to the IO controller

Parameter, Type: [tool, int]

=== EMC_TOOL_LOAD_TYPE

Description, NML Type: changes the current tool with the prepared
tool, 1105

Obs: loads the actual tool, makes toolprepped=0

Written From: CHANGE_TOOL (emccanon.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcToolLoad (iotaskintf.cc) +
which sends it to the IO controller, +
main (simIoControl.cc ioControl.cc)

Parameter, Type:

=== EMC_TOOL_UNLOAD_TYPE

Description, NML Type: unloads the current tool from the spindle, 1106

Obs: unloads the current tool, not written in EMC2 only read

Written From: none

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcToolUnLoad (iotaskintf.cc) +
which sends it to the IO controller, +
main (simIoControl.cc ioControl.cc)

Parameter, Type:

=== EMC_TOOL_LOAD_TOOL_TABLE_TYPE

Description, NML Type: loads the tool table, without this tool comp. can't be made, 1107

Written From: sendLoadToolTable (emcsh.cc)

Read To: none

Parameter, Type: [file, char[LINELEN]]

=== EMC_TOOL_SET_OFFSET_TYPE

Description, NML Type: , 1108

Written From: none

Read To: none

Parameter, Type: [tool, int] [length, double] [diameter, double]

=== EMC_TOOL_STAT_TYPE

Description, NML Type: , 1199

Written From: none

Read To: none

Parameter, Type:

== EMC AUX

=== EMC_AUX_INIT_TYPE

Description, NML Type: , 1201

Written From: none

Read To: none

Parameter, Type:

=== EMC_AUX_HALT_TYPE

Description, NML Type: , 1202

Written From: none

Read To: none

Parameter, Type:

=== EMC_AUX_ABORT_TYPE

Description, NML Type: , 1203

Written From: none

Read To: none

Parameter, Type:

=== EMC_AUX_DIO_WRITE_TYPE

Description, NML Type: , 1204

Written From: none

Read To: none

Parameter, Type: [index, int] [value, int]

=== EMC_AUX_AIO_WRITE_TYPE

Description, NML Type: , 1205

Written From: none

Read To: none

Parameter, Type: [index, int] [value, double]

=== EMC_AUX_ESTOP_ON_TYPE

Description, NML Type: , 1206

Written From: none

Read To: none

Parameter, Type:

=== EMC_AUX_ESTOP_OFF_TYPE

Description, NML Type: , 1207

Written From: none

Read To: none

Parameter, Type:

=== EMC_AUX_STAT_TYPE

Description, NML Type: , 1299

Written From: none

Read To: none

++++
Parameter, Type: [estop, int]
[estopIn, int]
[dout, unsigned char[EMC_AUX_MAX_DOUT]]
[din, unsigned char[EMC_AUX_MAX_DIN]]
[aout, double[EMC_AUX_MAX_AOUT]]
[ain, double[EMC_AUX_MAX_AIN]]
++++

== EMC SPINDLE

=== EMC_SPINDLE_INIT_TYPE

Description, NML Type: , 1301

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_HALT_TYPE

Description, NML Type: , 1302

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_ABORT_TYPE

Description, NML Type: , 1303

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_ON_TYPE

Description, NML Type: , 1304

Written From: none

Read To: none

Parameter, Type: [speed, double]

=== EMC_SPINDLE_OFF_TYPE

Description, NML Type: , 1305

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_FORWARD_TYPE

Description, NML Type: , 1306

Written From: none

Read To: none

Parameter, Type: [speed, double]

=== EMC_SPINDLE_REVERSE_TYPE

Description, NML Type: , 1307

Written From: none

Read To: none

Parameter, Type: [speed, double]

=== EMC_SPINDLE_STOP_TYPE

Description, NML Type: , 1308

Written From: none

Read To: none

Parameter, Type: [speed, double]

=== EMC_SPINDLE_INCREASE_TYPE

Description, NML Type: , 1309

Written From: none

Read To: none

Parameter, Type: [speed, double]

=== EMC_SPINDLE_DECREASE_TYPE

Description, NML Type: , 1310

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_CONSTANT_TYPE

Description, NML Type: , 1311

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_BRAKE_RELEASE_TYPE

Description, NML Type: , 1312

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_BRAKE_ENGAGE_TYPE

Description, NML Type: , 1313

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_ENABLE_TYPE

Description, NML Type: , 1314

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_DISABLE_TYPE

Description, NML Type: , 1315

Written From: none

Read To: none

Parameter, Type:

=== EMC_SPINDLE_STAT_TYPE

Description, NML Type: , 1399

Written From: none

Read To: none

++++
Parameter, Type: [speed, double]
[direction, int]
[brake, int]
[increasing, int]
[enabled, int]
++++

== EMC COOLANT

=== EMC_COOLANT_INIT_TYPE

Description, NML Type: initializes the COOLANT controller (currently
part of the IO controller), 1401

Obs: not written in EMC2, only read, in EMC1 it was sent when
TOOL_INIT was sent

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_COOLANT_HALT_TYPE

Description, NML Type: stops the COOLANT, 1402

Obs: not written in EMC2, only read, in EMC1 it was sent when TOOL_HALT was sent

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_COOLANT_ABORT_TYPE

Description, NML Type: aborts the COOLANT, 1403

Obs: not written in EMC2, only read, in EMC1 it was sent when TOOL_ABORT was sent

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_COOLANT_MIST_ON_TYPE

Description, NML Type: starts MIST coolant, 1404

Obs: used, written by emccanon.cc

Written From: MIST_ON (emccanon.cc) sendMistOn (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcCoolantMistOn (iotaskintf.cc) +
which sends it to the IO controller, +
main (simIoControl.cc ioControl.cc) iosh.cc

Parameter, Type: none

=== EMC_COOLANT_MIST_OFF_TYPE

Description, NML Type: stops MIST coolant, 1405

Obs: used, written by emccanon.cc

Written From: MIST_OFF (emccanon.cc) sendMistOff (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcCoolantMistOff (iotaskintf.cc) +
which sends it to the IO controller, +
main (simIoControl.cc ioControl.cc) iosh.cc

Parameter, Type: none

=== EMC_COOLANT_FLOOD_ON_TYPE

Description, NML Type: starts FLOOD coolant, 1406

Obs: used, written by emccanon.cc

Written From: FLOOD_ON (emccanon.cc) sendFloodOn (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcCoolantFloodOn (iotaskintf.cc) +
which sends it to the IO controller, +
main (simIoControl.cc ioControl.cc) iosh.cc

Parameter, Type: none

=== EMC_COOLANT_FLOOD_OFF_TYPE

Description, NML Type: stops FLOOD coolant, 1407

Obs: used, written by emccanon.cc

Written From: FLOOD_OFF (emccanon.cc) sendFloodOff (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcCoolantFloodOff (iotaskintf.cc) +
which sends it to the IO controller, +
main (simIoControl.cc ioControl.cc) iosh.cc

Parameter, Type: none

=== EMC_COOLANT_STAT_TYPE

Description, NML Type: status for coolant, not sent as a message but used as is, 1499

Written From: none

Read To: none

Parameter, Type: [mist, int] [flood, int]

== EMC LUBE

=== EMC_LUBE_INIT_TYPE

Description, NML Type: initializes the LUBE controller (currently part of the IO controller), 1501

Obs: not written in EMC2, only read, in EMC1 it was sent when TOOL_INIT was sent

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_LUBE_HALT_TYPE

Description, NML Type: stops the LUBE, 1502

Obs: not written in EMC2, only read, in EMC1 it was sent when TOOL_HALT was sent

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_LUBE_ABORT_TYPE

Description, NML Type: aborts the LUBE, 1503

Obs: not written in EMC2, only read, in EMC1 it was sent when TOOL_ABORT was sent

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_LUBE_ON_TYPE

Description, NML Type: starts LUBE, 1504

Obs: written only by the GUIs (emcsh.cc)

Written From: sendLubeOn (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcLubeOn (iotaskintf.cc) +
which sends it to the IO controller, +
main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_LUBE_OFF_TYPE

Description, NML Type: stops LUBE, 1505

Obs: written only by the GUIs (emcsh.cc)

Written 

From: sendLubeOff (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcLubeOff (iotaskintf.cc) +
which sends it to the IO controller, +
main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type: none

=== EMC_LUBE_STAT_TYPE

Description, NML Type: status for LUBE, not sent as a message but used as is, 1599

Written From: none

Read To: none

Parameter, Type: [on, int] [level, int]

== EMC SET

=== EMC_SET_DIO_INDEX_TYPE

Description, NML Type: , 5001

Obs: not used

Written From: none

Read To: none

Parameter, Type: [value, int] [index, int]

=== EMC_SET_AIO_INDEX_TYPE

Description, NML Type: , 5002

Obs: not used

Written From: none

Read To: none

Parameter, Type: [value, int] [index, int]

=== EMC_SET_POLARITY_TYPE

Description, NML Type: , 5003

Obs: not used

Written From: none

Read To: none

Parameter, Type: [value, int] [polarity, int]

== EMC IO

=== EMC_IO_INIT_TYPE

Description, NML Type: , 1601

Obs: not written in EMC2, only read

Written From: none

Read To: main (ioControl.cc simIoControl.cc) +
emc_io_get_command (iosh.cc)

Parameter, Type:

=== EMC_IO_HALT_TYPE

Description, NML Type: , 1602

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_IO_ABORT_TYPE

Description, NML Type: , 1603

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_IO_SET_CYCLE_TIME_TYPE

Description, NML Type: , 1604

Obs: not used

Written From: none

Read To: none

Parameter, Type: [cycleTime, double]

=== EMC_IO_STAT_TYPE

Description, NML Type: status for IO, not sent as a message but used as is, 1699

Written From: none

Read To: none

++++
Parameter, Type: [heartbeat, unsigned long int]
[tool, EMC_TOOL_STAT]
[spindle, EMC_SPINDLE_STAT]
[coolant, EMC_COOLANT_STAT]
[aux, EMC_AUX_STAT]
[lube, EMC_LUBE_STAT]
++++

== EMC INIT, HALT, & ABORT

=== EMC_INIT_TYPE

Description, NML Type: , 1901

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_HALT_TYPE

Description, NML Type: , 1902

Obs: not used

Written From: none

Read To: none

Parameter, Type:

=== EMC_ABORT_TYPE

Description, NML Type: , 1903

Obs: not used

Written From: none

Read To: none

Parameter, Type:

== EMC LOG

=== EMC_LOG_OPEN_TYPE

Description, NML Type: opens the log file, 1904

Obs: not used in EMC2, it was used in EMC[1] from emclog.tcl

Written From: sendLogOpen (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcLogOpen (taskintf.cc) +
which sends EMCMOT_OPEN_LOG

++++
Parameter, Type: [file, char[LINELEN]]
[type, int]
[size, int]
[skip, int]
[which, int]
[triggerType, int]
[triggerVar, int]
[triggerThreshold, double]
++++

=== EMC_LOG_START_TYPE

Description, NML Type: starts logging, 1905

Obs: not used in EMC2, it was used in EMC[1] from emclog.tcl

Written From: sendLogStart (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) calls +
emcLogStart (taskintf.cc) +
which sends EMCMOT_START_LOG

Parameter, Type: none

=== EMC_LOG_STOP_TYPE

Description, NML Type: stops logging, 1906

Obs: not used in EMC2, it was used in EMC[1] from emclog.tcl

Written From: sendLogStop (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) calls +
emcLogStop (taskintf.cc) +
which sends EMCMOT_STOP_LOG

Parameter, Type: none

=== EMC_LOG_CLOSE_TYPE

Description, NML Type: closes the log file, 1907

Obs: not used in EMC2, it was used in EMC[1] from emclog.tcl

Written From: sendLogClose (emcsh.cc)

Read To: emcTaskIssueCommand (emctaskmain.cc) +
calls emcLogClose (taskintf.cc) +
which sends EMCMOT_CLOSE_LOG

Parameter, Type: none

== EMC STA	T

=== EMC_STAT_TYPE

Description, NML Type: aggregation of all the status messages, +
        not sent as a message but used as is all over the place, 1999

Written From: none

Read To: none

Parameter, Type: [task, EMC_TASK_STAT] +
[motion, EMC_MOTION_STAT] +
[io, EMC_IO_STAT] +
[logFile, char[LINELEN]] +
[logType, int] +
[logSize, int] +
+++[+++logSkip, int] +
logOpen, int] [logStarted, int] [logPoints, int]